HomeSort by relevance Sort by last modified time
    Searched refs:wndClass (Results 1 - 2 of 2) sorted by null

  /external/webkit/WebKitTools/WebKitAPITest/
HostWindow.cpp 67 WNDCLASSEXW wndClass = {0};
68 wndClass.cbSize = sizeof(wndClass);
69 wndClass.style = CS_HREDRAW | CS_VREDRAW;
70 wndClass.lpfnWndProc = wndProc;
71 wndClass.hCursor = LoadCursor(0, IDC_ARROW);
72 wndClass.hInstance = GetModuleHandle(0);
73 wndClass.lpszClassName = hostWindowClassName;
75 RegisterClassExW(&wndClass);
TestsController.cpp 126 WNDCLASSEXW wndClass = {0};
127 wndClass.cbSize = sizeof(wndClass);
128 wndClass.lpfnWndProc = wndProc;
129 wndClass.hCursor = LoadCursor(0, IDC_ARROW);
130 wndClass.hInstance = GetModuleHandle(0);
131 wndClass.lpszClassName = testsControllerWindowClassName;
133 RegisterClassExW(&wndClass);

Completed in 624 milliseconds