Home
last modified time | relevance | path

Searched refs:wndclass (Results 1 – 2 of 2) sorted by relevance

/GUIX-v6.2.1/test/guix_test/regression_test/utility/
Dgx_show_canvas.c367 WNDCLASS wndclass; in win32_window_create() local
369 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 …]
/GUIX-v6.2.1/ports/win32/src/
Dgx_win32_display_driver.c1402 WNDCLASS wndclass; in gx_win32_window_create() local
1404 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 …]