Changeset 2093 for trunk/src/user32/win32wdesktop.cpp
- Timestamp:
- Dec 16, 1999, 5:53:59 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/win32wdesktop.cpp
r1837 r2093 1 /* $Id: win32wdesktop.cpp,v 1. 7 1999-11-24 20:28:21 sandervlExp $ */1 /* $Id: win32wdesktop.cpp,v 1.8 1999-12-16 16:53:59 cbratschi Exp $ */ 2 2 /* 3 3 * Win32 Desktop Window for OS/2 … … 25 25 windowDesktop = new Win32Desktop(); 26 26 if(windowDesktop == NULL) { 27 28 27 dprintf(("Unable to create desktop window!!!")); 28 return FALSE; 29 29 } 30 30 return TRUE; … … 35 35 { 36 36 if(windowDesktop) { 37 38 37 delete windowDesktop; 38 windowDesktop = 0; 39 39 } 40 40 } … … 77 77 LRESULT WIN32API DesktopWndProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam ) 78 78 { 79 return 0; 79 switch (message) 80 { 81 case WM_GETTEXT: 82 if (!lParam || !wParam) return 0; 83 ((LPSTR)lParam)[0] = 0; 84 return 0; 85 } 86 87 return 0; 80 88 } 81 89 //******************************************************************************
Note:
See TracChangeset
for help on using the changeset viewer.