Changeset 21546 for trunk/testapp/gui/input
- Timestamp:
- Jan 7, 2011, 1:37:30 PM (15 years ago)
- Location:
- trunk/testapp/gui/input
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/testapp/gui/input/Makefile
r21530 r21546 3 3 include $(ODIN)/testapp/common.mak 4 4 5 CFLAGS += - DUNICODE -lcomctl32.lib -luser32.lib5 CFLAGS += -lcomctl32.lib -luser32.lib 6 6 7 all: input.exe 7 input_a.exe: input.c 8 8 9 run: run-input.exe 9 input_w.exe: input.c 10 CFLAGS.input_w.exe = -DUNICODE 11 12 all: input_a.exe input_w.exe 13 14 run: 15 @echo Use run_a or run_w! 16 17 run_a: run-input_a.exe 18 run_w: run-input_w.exe -
trunk/testapp/gui/input/input.c
r21530 r21546 151 151 152 152 hWnd = CreateWindowEx(dwExStyle, wcex.lpszClassName, 153 TEXT("Edit Control Test"), 153 #ifdef UNICODE 154 TEXT("Edit Control Test (oe lat: \x00F6) (yo rus: \x0451) [unicode]"), 155 #else 156 TEXT("Edit Control Test (oe lat: \xF6) (yo rus: \xB8) [ascii]"), 157 #endif 154 158 WS_OVERLAPPEDWINDOW | WS_CLIPCHILDREN, 155 159 CW_USEDEFAULT, CW_USEDEFAULT, 450, 330,
Note:
See TracChangeset
for help on using the changeset viewer.