Changeset 3698 in vbox for trunk/src/VBox/HostServices/SharedOpenGL/glwindrv.cpp
- Timestamp:
- Jul 18, 2007 5:15:05 PM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 22989
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/SharedOpenGL/glwindrv.cpp
r3479 r3698 1 1 /** @file 2 *3 2 * VBox OpenGL 4 3 */ … … 36 35 { 37 36 switch (message) 38 { 37 { 39 38 case WM_CREATE: 40 39 return 0; … … 48 47 49 48 default: 50 return DefWindowProc( hWnd, message, wParam, lParam ); 49 return DefWindowProc( hWnd, message, wParam, lParam ); 51 50 } 52 51 } … … 57 56 HWND hwnd; 58 57 59 hwnd = pClient->hwnd= CreateWindow("VBoxOGL", "VirtualBox OpenGL", 58 hwnd = pClient->hwnd= CreateWindow("VBoxOGL", "VirtualBox OpenGL", 60 59 WS_CAPTION | WS_POPUPWINDOW | WS_VISIBLE, 61 60 0, 0, 0, 0, 62 NULL, NULL, 0, NULL); 61 NULL, NULL, 0, NULL); 63 62 Assert(hwnd); 64 63 while(true) … … 68 67 if (PeekMessage(&msg, NULL, 0, 0, PM_REMOVE)) 69 68 { 70 if (msg.message == WM_QUIT) 69 if (msg.message == WM_QUIT) 71 70 break; 72 71
Note:
See TracChangeset
for help on using the changeset viewer.