add capclock to the build system

svn path=/trunk/; revision=6125
This commit is contained in:
Thomas Bluemel
2003-09-24 20:05:29 +00:00
parent 63ebbd13c0
commit 4b416189e9
2 changed files with 9 additions and 9 deletions
+7 -7
View File
@@ -8,13 +8,13 @@ include $(PATH_TO_TOP)/rules.mak
# test_old tests
TEST_APPS = SampleWindow alive apc args atomtest bench bitblt \
button button2 combo consume copymove count dibtest dump_shared_data \
edit enumwnd event file gditest hello hivetest icontest isotest \
lineclip linetest lock lpc messagebox mktime mstest multiwin \
mutex nptest patblt pipe primitives pteb regtest sectest sertest \
shaptest shm statst statst2 stretchblt suspend tcpsvr terminate \
txtscale thread thread_msg tokentest vmtest winhello winhello2 \
wm_erasebkgnd wm_paint eventpair threadwait
button button2 capclock combo consume copymove count dibtest \
dump_shared_data edit enumwnd event file gditest hello hivetest \
icontest isotest lineclip linetest lock lpc messagebox mktime \
mstest multiwin mutex nptest patblt pipe primitives pteb regtest \
sectest sertest shaptest shm statst statst2 stretchblt suspend \
tcpsvr terminate txtscale thread thread_msg tokentest vmtest \
winhello winhello2 wm_erasebkgnd wm_paint eventpair threadwait
TEST_MISC =
+2 -2
View File
@@ -1,4 +1,4 @@
/* $Id: capclock.c,v 1.1 2003/09/04 21:33:11 ea Exp $
/* $Id: capclock.c,v 1.2 2003/09/24 20:05:29 weiden Exp $
*
* DESCRIPTION: Simple Win32 Caption Clock
* PROJECT : ReactOS (test applications)
@@ -22,7 +22,7 @@ INT STDCALL WinMain (HINSTANCE hinst, HINSTANCE hinstPrev, LPSTR lpCmdLine, INT
wc.lpfnWndProc = DefDlgProc;
wc.cbWndExtra = DLGWINDOWEXTRA;
wc.hInstance = hinst;
wc.hCursor = LoadCursor(NULL, IDC_ARROW);
wc.hCursor = LoadCursor(NULL, (LPCTSTR)IDC_ARROW);
wc.hbrBackground = (HBRUSH) (COLOR_WINDOW + 1);
wc.lpszClassName = "CapClock";
RegisterClass (& wc);