Home
last modified time | relevance | path

Searched refs:wclass (Results 1 – 9 of 9) sorted by relevance

/reactos/modules/rostests/apitests/user32/
H A DGetKeyState.c69 WNDCLASSA wclass; in CreateTestWindow() local
73 wclass.lpszClassName = "InputSysKeyTestClass"; in CreateTestWindow()
74 wclass.style = CS_HREDRAW | CS_VREDRAW; in CreateTestWindow()
75 wclass.lpfnWndProc = WndProc; in CreateTestWindow()
76 wclass.hInstance = hInstance; in CreateTestWindow()
78 wclass.hCursor = LoadCursorA( NULL, IDC_ARROW ); in CreateTestWindow()
79 wclass.hbrBackground = (HBRUSH)( COLOR_WINDOW + 1 ); in CreateTestWindow()
80 wclass.lpszMenuName = 0; in CreateTestWindow()
81 wclass.cbClsExtra = 0; in CreateTestWindow()
82 wclass.cbWndExtra = 0; in CreateTestWindow()
[all …]
H A DSetCursorPos.c58 WNDCLASSA wclass; in CreateTestWindow() local
62 wclass.lpszClassName = "MouseInputTestClass"; in CreateTestWindow()
63 wclass.style = CS_HREDRAW | CS_VREDRAW; in CreateTestWindow()
64 wclass.lpfnWndProc = WndProc; in CreateTestWindow()
65 wclass.hInstance = hInstance; in CreateTestWindow()
67 wclass.hCursor = LoadCursorA( NULL, IDC_ARROW ); in CreateTestWindow()
68 wclass.hbrBackground = (HBRUSH)( COLOR_WINDOW + 1 ); in CreateTestWindow()
69 wclass.lpszMenuName = 0; in CreateTestWindow()
70 wclass.cbClsExtra = 0; in CreateTestWindow()
71 wclass.cbWndExtra = 0; in CreateTestWindow()
[all …]
/reactos/modules/rostests/winetests/user32/
H A Dinput.c351 WNDCLASSA wclass; in test_Input_whitebox() local
361 wclass.lpszMenuName = 0; in test_Input_whitebox()
362 wclass.cbClsExtra = 0; in test_Input_whitebox()
363 wclass.cbWndExtra = 0; in test_Input_whitebox()
364 RegisterClassA( &wclass ); in test_Input_whitebox()
1186 WNDCLASSW wclass; in test_Input_unicode() local
1199 wclass.lpszMenuName = 0; in test_Input_unicode()
1200 wclass.cbClsExtra = 0; in test_Input_unicode()
1201 wclass.cbWndExtra = 0; in test_Input_unicode()
2112 WNDCLASSA wclass; in test_Input_mouse() local
[all …]
H A Dmenu.c2431 WNDCLASSA wclass; in test_menu_input() local
2440 wclass.lpfnWndProc = WndProc; in test_menu_input()
2441 wclass.hInstance = hInstance; in test_menu_input()
2445 wclass.lpszMenuName = 0; in test_menu_input()
2446 wclass.cbClsExtra = 0; in test_menu_input()
2447 wclass.cbWndExtra = 0; in test_menu_input()
2522 WNDCLASSA wclass; in test_menu_hilitemenuitem() local
2528 wclass.lpfnWndProc = WndProc; in test_menu_hilitemenuitem()
2533 wclass.lpszMenuName = 0; in test_menu_hilitemenuitem()
2534 wclass.cbClsExtra = 0; in test_menu_hilitemenuitem()
[all …]
H A Dwinstation.c867 WNDCLASSA wclass; in test_foregroundwindow() local
874 memset( &wclass, 0, sizeof(wclass) ); in test_foregroundwindow()
875 wclass.lpszClassName = "test_class"; in test_foregroundwindow()
876 wclass.lpfnWndProc = WndProc; in test_foregroundwindow()
877 RegisterClassA(&wclass); in test_foregroundwindow()
H A Dwin.c3527 WNDCLASSA wclass; in test_capture_4() local
3536 wclass.lpszClassName = "TestCapture4Class"; in test_capture_4()
3537 wclass.style = CS_HREDRAW | CS_VREDRAW; in test_capture_4()
3538 wclass.lpfnWndProc = test_capture_4_proc; in test_capture_4()
3539 wclass.hInstance = hInstance; in test_capture_4()
3542 wclass.hbrBackground = (HBRUSH)( COLOR_WINDOW + 1 ); in test_capture_4()
3543 wclass.lpszMenuName = 0; in test_capture_4()
3544 wclass.cbClsExtra = 0; in test_capture_4()
3545 wclass.cbWndExtra = 0; in test_capture_4()
3546 aclass = RegisterClassA( &wclass ); in test_capture_4()
[all …]
/reactos/modules/rostests/winetests/imm32/
H A Dimm32.c1591 WNDCLASSW wclass; in test_ime_processkey() local
1598 wclass.lpszClassName = classNameW; in test_ime_processkey()
1599 wclass.style = CS_HREDRAW | CS_VREDRAW; in test_ime_processkey()
1600 wclass.lpfnWndProc = processkey_wnd_proc; in test_ime_processkey()
1601 wclass.hInstance = hInstance; in test_ime_processkey()
1604 wclass.hbrBackground = (HBRUSH)(COLOR_WINDOW + 1); in test_ime_processkey()
1605 wclass.lpszMenuName = 0; in test_ime_processkey()
1606 wclass.cbClsExtra = 0; in test_ime_processkey()
1607 wclass.cbWndExtra = 0; in test_ime_processkey()
1608 if(!RegisterClassW(&wclass)){ in test_ime_processkey()
[all …]
/reactos/modules/rostests/winetests/comctl32/
H A Dstatus.c554 WNDCLASSA wclass = {0}; in test_notify() local
555 wclass.lpszClassName = "TestNotifyParentClass"; in test_notify()
556 wclass.lpfnWndProc = test_notify_parent_proc; in test_notify()
557 atom = RegisterClassA(&wclass); in test_notify()
561 hwndParent = CreateWindowA(wclass.lpszClassName, "parent", WS_OVERLAPPEDWINDOW, in test_notify()
/reactos/dll/win32/ole32/
H A Dcompobj.c1683 WNDCLASSW wclass; in register_class() local
1694 memset(&wclass, 0, sizeof(wclass)); in register_class()
1695 wclass.lpfnWndProc = apartment_wndproc; in register_class()
1696 wclass.hInstance = hProxyDll; in register_class()
1697 wclass.lpszClassName = wszAptWinClass; in register_class()
1698 apt_win_class = RegisterClassW(&wclass); in register_class()