Searched refs:wcex (Results 1 – 7 of 7) sorted by relevance
68 static WNDCLASSEX wcex; in init() local71 wcex.cbSize = sizeof(WNDCLASSEX); in init()73 wcex.style = CS_HREDRAW | CS_VREDRAW | CS_OWNDC; in init()74 wcex.lpfnWndProc = WndProc; in init()75 wcex.cbClsExtra = 0; in init()76 wcex.cbWndExtra = 0; in init()77 wcex.hInstance = fHInstance; in init()78 wcex.hIcon = LoadIcon(fHInstance, (LPCTSTR)IDI_WINLOGO); in init()79 wcex.hCursor = LoadCursor(nullptr, IDC_ARROW); in init()80 wcex.hbrBackground = (HBRUSH)(COLOR_WINDOW + 1); in init()[all …]
58 WNDCLASSEX wcex = {}; in MainMessageLoopExternalPumpWin() local59 wcex.cbSize = sizeof(WNDCLASSEX); in MainMessageLoopExternalPumpWin()60 wcex.lpfnWndProc = WndProc; in MainMessageLoopExternalPumpWin()61 wcex.hInstance = hInstance; in MainMessageLoopExternalPumpWin()62 wcex.lpszClassName = kClassName; in MainMessageLoopExternalPumpWin()63 RegisterClassEx(&wcex); in MainMessageLoopExternalPumpWin()
1048 WNDCLASSEX wcex; in SDL_RegisterApp() local1071 wcex.cbSize = sizeof(WNDCLASSEX); in SDL_RegisterApp()1072 wcex.hCursor = NULL; in SDL_RegisterApp()1073 wcex.hIcon = NULL; in SDL_RegisterApp()1074 wcex.hIconSm = NULL; in SDL_RegisterApp()1075 wcex.lpszMenuName = NULL; in SDL_RegisterApp()1076 wcex.lpszClassName = SDL_Appname; in SDL_RegisterApp()1077 wcex.style = SDL_Appstyle; in SDL_RegisterApp()1078 wcex.hbrBackground = NULL; in SDL_RegisterApp()1079 wcex.lpfnWndProc = WIN_WindowProc; in SDL_RegisterApp()[all …]
366 WNDCLASSEX wcex; in RegisterOsrClass() local368 wcex.cbSize = sizeof(WNDCLASSEX); in RegisterOsrClass()369 wcex.style = CS_OWNDC; in RegisterOsrClass()370 wcex.lpfnWndProc = OsrWndProc; in RegisterOsrClass()371 wcex.cbClsExtra = 0; in RegisterOsrClass()372 wcex.cbWndExtra = 0; in RegisterOsrClass()373 wcex.hInstance = hInstance; in RegisterOsrClass()374 wcex.hIcon = nullptr; in RegisterOsrClass()375 wcex.hCursor = LoadCursor(nullptr, IDC_ARROW); in RegisterOsrClass()376 wcex.hbrBackground = background_brush; in RegisterOsrClass()[all …]
401 WNDCLASSEX wcex; in RegisterRootClass() local403 wcex.cbSize = sizeof(WNDCLASSEX); in RegisterRootClass()405 wcex.style = CS_HREDRAW | CS_VREDRAW; in RegisterRootClass()406 wcex.lpfnWndProc = RootWndProc; in RegisterRootClass()407 wcex.cbClsExtra = 0; in RegisterRootClass()408 wcex.cbWndExtra = 0; in RegisterRootClass()409 wcex.hInstance = hInstance; in RegisterRootClass()410 wcex.hIcon = LoadIcon(hInstance, MAKEINTRESOURCE(IDI_CEFCLIENT)); in RegisterRootClass()411 wcex.hCursor = LoadCursor(nullptr, IDC_ARROW); in RegisterRootClass()412 wcex.hbrBackground = background_brush; in RegisterRootClass()[all …]
524 WNDCLASSEX wcex = { in RegisterWindowClass() local538 RegisterClassEx(&wcex); in RegisterWindowClass()