Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 52 of file display.c.
Referenced by WinMain().
{ WNDCLASSEXW wincl; /* Set the fontdisplay window class structure */ wincl.cbSize = sizeof(WNDCLASSEX); wincl.style = CS_DBLCLKS; wincl.lpfnWndProc = DisplayProc; wincl.cbClsExtra = 0; wincl.cbWndExtra = 0; wincl.hInstance = hInstance; wincl.hIcon = NULL; wincl.hCursor = LoadCursor (NULL, IDC_ARROW); wincl.hbrBackground = GetStockObject(WHITE_BRUSH); wincl.lpszMenuName = NULL; wincl.lpszClassName = g_szFontDisplayClassName; wincl.hIconSm = NULL; /* Register the window class, and if it fails return FALSE */ if (!RegisterClassExW (&wincl)) { return FALSE; } return TRUE; }