Home | History | Annotate | Download | only in libOpenglRender

Lines Matching defs:wc

27     WNDCLASS wc;
28 wc.style = CS_OWNDC |CS_HREDRAW |CS_VREDRAW; // redraw if size changes
29 wc.lpfnWndProc = myWndProc; // points to window procedure
30 wc.cbClsExtra = 0; // no extra class memory
31 wc.cbWndExtra = sizeof(void*); // save extra window memory, to store VasWindow instance
32 wc.hInstance = NULL; // handle to instance
33 wc.hIcon = NULL; // predefined app. icon
34 wc.hCursor = NULL;
35 wc.hbrBackground = NULL; // no background brush
36 wc.lpszMenuName = NULL; // name of menu resource
37 wc.lpszClassName = "subWin"; // name of window class
39 RegisterClass(&wc);