Searched refs:wclass (Results 1 – 9 of 9) sorted by relevance
69 WNDCLASSA wclass; in CreateTestWindow() local73 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 …]
58 WNDCLASSA wclass; in CreateTestWindow() local62 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 …]
351 WNDCLASSA wclass; in test_Input_whitebox() local361 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() local1199 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 …]
2431 WNDCLASSA wclass; in test_menu_input() local2440 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() local2528 wclass.lpfnWndProc = WndProc; in test_menu_hilitemenuitem()2533 wclass.lpszMenuName = 0; in test_menu_hilitemenuitem()2534 wclass.cbClsExtra = 0; in test_menu_hilitemenuitem()[all …]
867 WNDCLASSA wclass; in test_foregroundwindow() local874 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()
3527 WNDCLASSA wclass; in test_capture_4() local3536 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 …]
1591 WNDCLASSW wclass; in test_ime_processkey() local1598 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 …]
554 WNDCLASSA wclass = {0}; in test_notify() local555 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()
1683 WNDCLASSW wclass; in register_class() local1694 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()