Searched refs:wndclass (Results 1 – 2 of 2) sorted by relevance
367 WNDCLASS wndclass; in win32_window_create() local369 memset(&wndclass, 0, sizeof(wndclass)); in win32_window_create()371 wndclass.style = CS_HREDRAW | CS_VREDRAW; in win32_window_create()372 wndclass.lpfnWndProc = WndProc; in win32_window_create()373 wndclass.cbClsExtra = 0; in win32_window_create()374 wndclass.cbWndExtra = 0; in win32_window_create()375 wndclass.hInstance = Instance; in win32_window_create()377 wndclass.hCursor = NULL; in win32_window_create()378 wndclass.hbrBackground = (HBRUSH)(GetStockObject(WHITE_BRUSH)); in win32_window_create()379 wndclass.lpszMenuName = NULL; in win32_window_create()[all …]
1402 WNDCLASS wndclass; in gx_win32_window_create() local1404 wndclass.style = CS_HREDRAW | CS_VREDRAW; in gx_win32_window_create()1405 wndclass.lpfnWndProc = event_process; in gx_win32_window_create()1406 wndclass.cbClsExtra = 0; in gx_win32_window_create()1407 wndclass.cbWndExtra = 0; in gx_win32_window_create()1408 wndclass.hInstance = Instance; in gx_win32_window_create()1411 wndclass.hIcon = (HICON)LoadImage(NULL, icon_path, IMAGE_ICON, 0, 0, LR_LOADFROMFILE); in gx_win32_window_create()1413 wndclass.hCursor = NULL; in gx_win32_window_create()1414 wndclass.hbrBackground = (HBRUSH)(GetStockObject(WHITE_BRUSH)); in gx_win32_window_create()1415 wndclass.lpszMenuName = NULL; in gx_win32_window_create()[all …]