mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-03 04:13:31 +00:00
add capclock to the build system
svn path=/trunk/; revision=6125
This commit is contained in:
@@ -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 =
|
||||
|
||||
|
||||
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user