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

  /sdk/emulator/opengl/host/libs/Translator/EGL/
EglWindowsApi.cpp 182 WNDCLASSEX wcx; local
183 wcx.cbSize = sizeof(wcx); // size of structure
184 wcx.style = CS_OWNDC |CS_HREDRAW |CS_VREDRAW; // redraw if size changes
185 wcx.lpfnWndProc = dummyWndProc; // points to window procedure
186 wcx.cbClsExtra = 0; // no extra class memory
187 wcx.cbWndExtra = sizeof(void*); // save extra window memory, to store VasWindow instance
188 wcx.hInstance = NULL; // handle to instance
189 wcx.hIcon = NULL; // predefined app. icon
190 wcx.hCursor = NULL
    [all...]
  /external/chromium_org/components/breakpad/tools/
crash_service.cc 89 WNDCLASSEXW wcx = {0}; local
90 wcx.cbSize = sizeof(wcx);
91 wcx.style = CS_HREDRAW | CS_VREDRAW;
92 wcx.lpfnWndProc = CrashSvcWndProc;
93 wcx.hInstance = instance;
94 wcx.lpszClassName = L"crash_svc_class";
95 ATOM atom = ::RegisterClassExW(&wcx);
100 HWND window = CreateWindowExW(0, wcx.lpszClassName, L"crash service", style,

Completed in 175 milliseconds