Searched defs:wcex (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/windows/native/sun/awt/splashscreen/
H A Dsplashscreen_sys.c390 WNDCLASSEX wcex; local
395 ZeroMemory(&wcex, sizeof(WNDCLASSEX));
397 wcex.cbSize = sizeof(WNDCLASSEX);
398 wcex.style = CS_HREDRAW | CS_VREDRAW;
399 wcex.lpfnWndProc = (WNDPROC) SplashWndProc;
400 wcex.hInstance = GetModuleHandle(NULL);
401 wcex.lpszClassName = "JavaSplash";
402 wcex.hCursor = LoadCursor(NULL, IDC_WAIT);
404 wndClass = RegisterClassEx(&wcex);
416 wcex
[all...]

Completed in 31 milliseconds