1 /* 2 * ReactOS RosPerf - ReactOS GUI performance test program 3 * 4 * This program is free software; you can redistribute it and/or modify 5 * it under the terms of the GNU General Public License as published by 6 * the Free Software Foundation; either version 2 of the License, or 7 * (at your option) any later version. 8 * 9 * This program is distributed in the hope that it will be useful, 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 * GNU General Public License for more details. 13 * 14 * You should have received a copy of the GNU General Public License 15 * along with this program; if not, write to the Free Software 16 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 17 */ 18 19 #include <windows.h> 20 #include "rosperf.h" 21 22 void 23 TextProc(void *Context, PPERF_INFO PerfInfo, unsigned Reps) 24 { 25 unsigned Rep; 26 int y; 27 HDC Dc = NULL; 28 HFONT hfFont = GetStockObject(DEFAULT_GUI_FONT); 29 30 for (Rep = 0; Rep < Reps; ) 31 { 32 Dc = (Rep & 0x10000) ? PerfInfo->BackgroundDc : PerfInfo->ForegroundDc; 33 SelectObject(Dc, hfFont); 34 35 for (y = 0; y < PerfInfo->WndHeight && Rep < Reps; Rep++, y += 15) 36 { 37 TextOut(Dc, 0, y, L"AaBbCcDdEeFfGgHhIiJjKkLlMmNnOoPpQqRrSsTtUuVvWwXxYyZz:?<>0123456789", 66); 38 } 39 InvalidateRect(PerfInfo->Wnd, NULL, TRUE); 40 UpdateWindow(PerfInfo->Wnd); 41 } 42 } 43 44 /* EOF */ 45