Changeset 2246 for trunk/src/user32/win32wbase.cpp
- Timestamp:
- Dec 29, 1999, 1:39:45 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/win32wbase.cpp
r2221 r2246 1 /* $Id: win32wbase.cpp,v 1.12 2 1999-12-27 22:53:53 cbratschiExp $ */1 /* $Id: win32wbase.cpp,v 1.123 1999-12-29 12:39:45 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Window Base Class for OS/2 … … 28 28 #include "wndmsg.h" 29 29 #include "oslibwin.h" 30 #include "oslibmsg.h" 30 31 #include "oslibutil.h" 31 32 #include "oslibgdi.h" … … 657 658 else 658 659 if (windowClass->getStyle() & CS_PARENTDC) { 659 dprintf((" ERROR: Class with CS_PARENTDC style -> NOT IMPLEMENTED!"));660 dprintf(("WARNING: Class with CS_PARENTDC style!")); 660 661 fParentDC = TRUE; 661 662 ownDC = 0; … … 663 664 else 664 665 if (windowClass->getStyle() & CS_CLASSDC) { 665 dprintf((" ERROR: Class with CS_CLASSDC style -> NOT IMPLEMENTED!"));666 dprintf(("WARNING: Class with CS_CLASSDC style!")); 666 667 ownDC = 0; 667 668 } … … 2154 2155 POSTMSG_PACKET *packet = (POSTMSG_PACKET *)_smalloc(sizeof(POSTMSG_PACKET)); 2155 2156 2157 dprintf(("PostThreadMessageA %x %x %x %x", threadid, msg, wParam, lParam)); 2156 2158 packet->Msg = msg; 2157 2159 packet->wParam = wParam; 2158 2160 packet->lParam = lParam; 2159 2161 packet->fUnicode = FALSE; 2160 return O 32_PostThreadMessage(threadid, WIN32APP_POSTMSG, WIN32PM_MAGIC, (DWORD)packet);2162 return OSLibPostThreadMessage(threadid, WIN32APP_POSTMSG, WIN32PM_MAGIC, (LPARAM)packet); 2161 2163 } 2162 2164 //****************************************************************************** … … 2166 2168 POSTMSG_PACKET *packet = (POSTMSG_PACKET *)_smalloc(sizeof(POSTMSG_PACKET)); 2167 2169 2170 dprintf(("PostThreadMessageW %x %x %x %x", threadid, msg, wParam, lParam)); 2168 2171 packet->Msg = msg; 2169 2172 packet->wParam = wParam; 2170 2173 packet->lParam = lParam; 2171 2174 packet->fUnicode = TRUE; 2172 return O 32_PostThreadMessage(threadid, WIN32APP_POSTMSG, WIN32PM_MAGIC, (DWORD)packet);2175 return OSLibPostThreadMessage(threadid, WIN32APP_POSTMSG, WIN32PM_MAGIC, (LPARAM)packet); 2173 2176 } 2174 2177 //******************************************************************************
Note:
See TracChangeset
for help on using the changeset viewer.