Home | History | Annotate | Download | only in src

Lines Matching refs:wc

394     WNDCLASS wc;
395 if (!GetClassInfo(GetModuleHandle(0), L"CANVASGL", &wc)) {
396 ZeroMemory(&wc, sizeof(WNDCLASS));
397 wc.style = CS_OWNDC;
398 wc.hInstance = GetModuleHandle(0);
399 wc.lpfnWndProc = DefWindowProc;
400 wc.lpszClassName = L"CANVASGL";
402 if (!RegisterClass(&wc)) {