Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 271 of file clock.c.
Referenced by Applet().
{ WNDCLASSEXW wc = {0}; wc.cbSize = sizeof(WNDCLASSEXW); wc.lpfnWndProc = ClockWndProc; wc.hInstance = hApplet; wc.hCursor = LoadCursorW(NULL, IDC_ARROW); wc.hbrBackground = (HBRUSH)(COLOR_BTNFACE + 1); wc.lpszClassName = szClockWndClass; return RegisterClassExW(&wc) != (ATOM)0; }