Changeset 21824 for branches/gcc-kmk/src/user32
- Timestamp:
- Nov 25, 2011, 10:19:52 PM (14 years ago)
- Location:
- branches/gcc-kmk/src/user32
- Files:
-
- 8 edited
-
dbglocal.cpp (modified) (1 diff)
-
dbgwrap.cpp (modified) (1 diff)
-
initterm.cpp (modified) (1 diff)
-
win32wbase.cpp (modified) (2 diffs)
-
win32wbase.h (modified) (1 diff)
-
win32wbaseprop.cpp (modified) (4 diffs)
-
wndmsg.cpp (modified) (2 diffs)
-
wndmsg.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/gcc-kmk/src/user32/dbglocal.cpp
r9930 r21824 20 20 USHORT DbgEnabledLvl2USER32[DBG_MAXFILES] = {0}; 21 21 22 static c har*DbgFileNames[DBG_MAXFILES] =22 static const char *DbgFileNames[DBG_MAXFILES] = 23 23 { 24 24 "user32", -
branches/gcc-kmk/src/user32/dbgwrap.cpp
r21553 r21824 16 16 17 17 #define DBG_LOCALLOG DBG_trace 18 #include <dbglocal.h>18 #include "dbglocal.h" 19 19 20 20 #define DBGWRAP_MODULE "USER32" -
branches/gcc-kmk/src/user32/initterm.cpp
r21811 r21824 152 152 return 0UL; 153 153 154 dprintf(("user32 init %s %s (%x)", __DATE__, __TIME__, inittermUser32));154 dprintf(("user32 init %s %s (%x)", __DATE__, __TIME__, DLL_InitUser32)); 155 155 156 156 //SvL: Try to start communication with our message spy queue server -
branches/gcc-kmk/src/user32/win32wbase.cpp
r21808 r21824 307 307 BOOL Win32BaseWindow::IsWindowUnicode() 308 308 { 309 dprintf2(("IsWindowUnicode %x %d", getWindowHandle(), WINPROC_GetProcType(getWindowProc()) == WIN_PROC_32W)); 309 dprintf2(("IsWindowUnicode %x %d", getWindowHandle(), 310 WINPROC_GetProcType((HWINDOWPROC)getWindowProc()) == WIN_PROC_32W)); 310 311 return (WINPROC_GetProcType((HWINDOWPROC)getWindowProc()) == WIN_PROC_32W); 311 312 } … … 4299 4300 //****************************************************************************** 4300 4301 //****************************************************************************** 4301 LONG Win32BaseWindow::release(c har *function, int line)4302 LONG Win32BaseWindow::release(const char *function, int line) 4302 4303 { 4303 4304 // dprintf2(("release %s %d %x %d", function, line, getWindowHandle(), getRefCount()-1)); -
branches/gcc-kmk/src/user32/win32wbase.h
r21802 r21824 353 353 #ifdef DEBUG 354 354 LONG addRef(); 355 LONG release(c har *function = __FUNCTION__, int line = __LINE__ );355 LONG release(const char *function = __FUNCTION__, int line = __LINE__ ); 356 356 #endif 357 357 -
branches/gcc-kmk/src/user32/win32wbaseprop.cpp
r21808 r21824 70 70 71 71 if(HIWORD(str)) { 72 dprintf2(("GetProp %x %s %x", getWindowHandle , str, prop ? prop->handle : 0));73 } 74 else dprintf2(("GetProp %x %x %x", getWindowHandle , str, prop ? prop->handle : 0));72 dprintf2(("GetProp %x %s %x", getWindowHandle(), str, prop ? prop->handle : 0)); 73 } 74 else dprintf2(("GetProp %x %x %x", getWindowHandle(), str, prop ? prop->handle : 0)); 75 75 76 76 return prop ? prop->handle : 0; … … 85 85 86 86 if (HIWORD(str)) { 87 dprintf2(("SetProp %x %s %x", getWindowHandle , str, handle));88 } 89 else dprintf2(("SetProp %x %x %x", getWindowHandle , str, handle));87 dprintf2(("SetProp %x %s %x", getWindowHandle(), str, handle)); 88 } 89 else dprintf2(("SetProp %x %x %x", getWindowHandle(), str, handle)); 90 90 91 91 if (!(prop = findWindowProperty(str))) … … 192 192 INT ret = -1; 193 193 194 dprintf(("EnumPropsExA %x %x %x", getWindowHandle , func, lParam));194 dprintf(("EnumPropsExA %x %x %x", getWindowHandle(), func, lParam)); 195 195 196 196 for (prop = propertyList; (prop); prop = next) … … 220 220 INT ret = -1; 221 221 222 dprintf(("EnumPropsExW %x %x %x", getWindowHandle , func, lParam));222 dprintf(("EnumPropsExW %x %x %x", getWindowHandle(), func, lParam)); 223 223 224 224 for (prop = propertyList; (prop); prop = next) -
branches/gcc-kmk/src/user32/wndmsg.cpp
r21720 r21824 23 23 typedef struct 24 24 { 25 LP STR pszMsg;25 LPCSTR pszMsg; 26 26 UINT msg; 27 27 UINT Flags; … … 750 750 751 751 752 c har *GetMsgText(int Msg)752 const char *GetMsgText(int Msg) 753 753 { 754 754 static char msgtxt[64]; -
branches/gcc-kmk/src/user32/wndmsg.h
r21356 r21824 17 17 18 18 #ifdef DEBUG_LOGGING 19 c har *GetMsgText(int Msg);19 const char *GetMsgText(int Msg); 20 20 21 21 void DebugPrintMessage(HWND hwnd, UINT Msg, WPARAM wParam, LPARAM lParam, BOOL fUnicode, BOOL fInternalMsg);
Note:
See TracChangeset
for help on using the changeset viewer.
