Changeset 3209 for trunk/src/user32/winprop.cpp
- Timestamp:
- Mar 24, 2000, 12:06:54 AM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/winprop.cpp
r2803 r3209 1 /* $Id: winprop.cpp,v 1. 7 2000-02-16 14:28:28sandervl Exp $ */1 /* $Id: winprop.cpp,v 1.8 2000-03-23 23:06:54 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Property apis for OS/2 … … 17 17 #include "dbglocal.h" 18 18 19 #undef DEBUG20 21 19 //****************************************************************************** 22 20 //****************************************************************************** 23 21 int WIN32API EnumPropsA(HWND hwnd, PROPENUMPROCA arg2) 24 22 { 25 #ifdef DEBUG 26 WriteLog("USER32: EnumPropsA DOES NOT WORK\n"); 27 #endif 23 dprintf(("USER32: EnumPropsA DOES NOT WORK\n")); 28 24 //calling convention problems 29 25 return 0; … … 34 30 int WIN32API EnumPropsExA( HWND hwnd, PROPENUMPROCEXA arg2, LPARAM arg3) 35 31 { 36 #ifdef DEBUG 37 WriteLog("USER32: EnumPropsExA DOES NOT WORK\n"); 38 #endif 32 dprintf(("USER32: EnumPropsExA DOES NOT WORK\n")); 39 33 //calling convention problems 40 34 return 0; … … 45 39 int WIN32API EnumPropsExW( HWND hwnd, PROPENUMPROCEXW arg2, LPARAM arg3) 46 40 { 47 #ifdef DEBUG 48 WriteLog("USER32: EnumPropsExW DOES NOT WORK\n"); 49 #endif 41 dprintf(("USER32: EnumPropsExW DOES NOT WORK\n")); 50 42 // NOTE: This will not work as is (needs UNICODE support) 51 43 //calling convention problems … … 57 49 int WIN32API EnumPropsW( HWND hwnd, PROPENUMPROCW arg2) 58 50 { 59 #ifdef DEBUG 60 WriteLog("USER32: EnumPropsW DOES NOT WORK\n"); 61 #endif 51 dprintf(("USER32: EnumPropsW DOES NOT WORK\n")); 62 52 // NOTE: This will not work as is (needs UNICODE support) 63 53 //calling convention problems … … 79 69 } 80 70 rc = O32_GetProp(window->getOS2WindowHandle(), arg2); 81 #ifdef DEBUG82 71 if(HIWORD(arg2) != 0) 83 dprintf(("USER32: GetPropA %s returned %x\n", arg2, rc)); 84 else dprintf(("USER32: GetPropA %X returned %x\n", arg2, rc)); 85 #endif 72 dprintf2(("USER32: GetPropA %s returned %x\n", arg2, rc)); 73 else dprintf2(("USER32: GetPropA %X returned %x\n", arg2, rc)); 86 74 return rc; 87 75 } … … 115 103 return 0; 116 104 } 117 #ifdef DEBUG118 105 if(HIWORD(arg2) != 0) 119 dprintf(("USER32: RemovePropA %s\n", arg2)); 120 else dprintf(("USER32: RemovePropA %X\n", arg2)); 121 #endif 106 dprintf2(("USER32: RemovePropA %s\n", arg2)); 107 else dprintf2(("USER32: RemovePropA %X\n", arg2)); 122 108 return O32_RemoveProp(window->getOS2WindowHandle(), arg2); 123 109 } … … 151 137 return 0; 152 138 } 153 #ifdef DEBUG154 139 if(HIWORD(arg2) != 0) 155 dprintf(("USER32: SetPropA %s to %x\n", arg2, arg3)); 156 else dprintf(("USER32: SetPropA %X to %x\n", arg2, arg3)); 157 #endif 140 dprintf2(("USER32: SetPropA %s to %x\n", arg2, arg3)); 141 else dprintf2(("USER32: SetPropA %X to %x\n", arg2, arg3)); 158 142 return O32_SetProp(window->getOS2WindowHandle(), arg2, arg3); 159 143 }
Note:
See TracChangeset
for help on using the changeset viewer.