Changeset 16987
- Timestamp:
- Jul 31, 2001, 9:56:48 AM (24 years ago)
- Location:
- tags/trunk/src/user32
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified tags/trunk/src/user32/Makefile ¶
r16976 r16987 1 # $Id: Makefile,v 1.9 0 2001-07-30 18:09:29sandervl Exp $1 # $Id: Makefile,v 1.91 2001-07-31 07:56:48 sandervl Exp $ 2 2 3 3 # … … 111 111 $(ODIN32_LIB)/libuls.lib \ 112 112 $(ODIN32_LIB)/$(ODINCRT).lib \ 113 $(ODIN32_LIB)/pmwinx.lib \114 113 OS2386.LIB \ 115 114 $(RTLLIB_O) -
TabularUnified tags/trunk/src/user32/dde.cpp ¶
r16033 r16987 1 /* $Id: dde.cpp,v 1.1 2 2001-04-04 09:01:24sandervl Exp $ */1 /* $Id: dde.cpp,v 1.13 2001-07-31 07:56:48 sandervl Exp $ */ 2 2 3 3 /* … … 21 21 BOOL WIN32API DdeAbandonTransaction( DWORD arg1, HCONV arg2, DWORD arg3) 22 22 { 23 dprintf(("USER32: DdeAbandonTransaction\n"));23 dprintf(("USER32: DdeAbandonTransaction %x %x %x", arg1, arg2, arg3)); 24 24 return O32_DdeAbandonTransaction(arg1, arg2, arg3); 25 25 } … … 28 28 PBYTE WIN32API DdeAccessData(HDDEDATA arg1, PDWORD arg2) 29 29 { 30 dprintf(("USER32: DdeAccessData\n"));30 dprintf(("USER32: DdeAccessData %x %x", arg1, arg2)); 31 31 return O32_DdeAccessData(arg1, arg2); 32 32 } … … 35 35 HDDEDATA WIN32API DdeAddData( HDDEDATA arg1, PVOID arg2, DWORD arg3, DWORD arg4) 36 36 { 37 dprintf(("USER32: DdeAddData"));37 dprintf(("USER32: DdeAddData %x %x %x %x", arg1, arg2, arg3, arg4)); 38 38 return O32_DdeAddData(arg1, arg2, arg3, arg4); 39 39 } … … 44 44 PDWORD arg8) 45 45 { 46 dprintf(("USER32: DdeClientTransaction\n"));46 dprintf(("USER32: DdeClientTransaction %x %x %x %x %x %x %x %x", arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8)); 47 47 48 48 return O32_DdeClientTransaction(arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8); … … 52 52 int WIN32API DdeCmpStringHandles( HSZ arg1, HSZ arg2) 53 53 { 54 55 dprintf(("USER32: DdeCmpStringHandles\n")); 54 dprintf(("USER32: DdeCmpStringHandles %x %x", arg1, arg2)); 56 55 57 56 return O32_DdeCmpStringHandles(arg1, arg2); … … 73 72 { 74 73 75 dprintf(("USER32: DdeConnectList\n"));74 dprintf(("USER32: DdeConnectList %x %x %x %x %x", arg1, arg2, arg3, arg4, arg5)); 76 75 77 76 return O32_DdeConnectList(arg1, arg2, arg3, arg4, arg5); … … 82 81 HSZ arg5, UINT arg6, UINT arg7) 83 82 { 84 dprintf(("USER32: DdeCreateDataHandle\n"));83 dprintf(("USER32: DdeCreateDataHandle %x %x %x %x %x %x %x", arg1, arg2, arg3, arg4, arg5, arg6, arg7)); 85 84 return O32_DdeCreateDataHandle(arg1, arg2, arg3, arg4, arg5, arg6, arg7); 86 85 } … … 111 110 BOOL WIN32API DdeDisconnect(HCONV arg1) 112 111 { 113 114 dprintf(("USER32: DdeDisconnect\n")); 112 dprintf(("USER32: DdeDisconnect %x", arg1)); 115 113 116 114 return O32_DdeDisconnect(arg1); … … 120 118 BOOL WIN32API DdeDisconnectList( HCONVLIST arg1) 121 119 { 122 123 dprintf(("USER32: DdeDisconnectList\n")); 120 dprintf(("USER32: DdeDisconnectList %x", arg1)); 124 121 125 122 return O32_DdeDisconnectList(arg1); … … 129 126 BOOL WIN32API DdeEnableCallback(DWORD arg1, HCONV arg2, UINT arg3) 130 127 { 131 132 dprintf(("USER32: DdeEnableCallback\n")); 128 dprintf(("USER32: DdeEnableCallback %x %x %x", arg1, arg2, arg3)); 133 129 134 130 return O32_DdeEnableCallback(arg1, arg2, arg3); … … 138 134 BOOL WIN32API DdeFreeDataHandle( HDDEDATA arg1) 139 135 { 140 141 dprintf(("USER32: DdeFreeDataHandle\n")); 136 dprintf(("USER32: DdeFreeDataHandle %x", arg1)); 142 137 143 138 return O32_DdeFreeDataHandle(arg1); … … 147 142 BOOL WIN32API DdeFreeStringHandle(DWORD arg1, HSZ arg2) 148 143 { 149 150 dprintf(("USER32: DdeFreeStringHandle\n")); 144 dprintf(("USER32: DdeFreeStringHandle %x %x", arg1, arg2)); 151 145 152 146 return O32_DdeFreeStringHandle(arg1, arg2); … … 156 150 DWORD WIN32API DdeGetData( HDDEDATA arg1, PVOID arg2, DWORD arg3, DWORD arg4) 157 151 { 158 159 dprintf(("USER32: DdeGetData\n")); 152 dprintf(("USER32: DdeGetData %x %x %x %x", arg1, arg2, arg3, arg4)); 160 153 161 154 return O32_DdeGetData(arg1, arg2, arg3, arg4); … … 165 158 UINT WIN32API DdeGetLastError(DWORD arg1) 166 159 { 167 168 dprintf(("USER32: DdeGetLastError\n")); 160 dprintf(("USER32: DdeGetLastError %x", arg1)); 169 161 170 162 return O32_DdeGetLastError(arg1); 171 163 } 164 #ifdef USING_OPEN32 172 165 //****************************************************************************** 173 166 //****************************************************************************** … … 180 173 return 0; 181 174 } 175 #endif 182 176 //****************************************************************************** 183 177 //****************************************************************************** … … 187 181 UINT ret; 188 182 189 // ret = O32_DdeInitialize(lpidInst, pfnCallback, afCmd, ulRes); 183 #ifdef USING_OPEN32 190 184 ret = O32_DdeInitialize(lpidInst, (PFNCALLBACK_O32)DdeCallback, afCmd, ulRes); 185 #else 186 ret = O32_DdeInitialize(lpidInst, (PFNCALLBACK_O32)pfnCallback, afCmd, ulRes); 187 #endif 191 188 dprintf(("USER32: DdeInitialize %x %x %x %x returned %x", lpidInst, pfnCallback, afCmd, ulRes, ret)); 192 189 return ret; … … 200 197 201 198 // NOTE: This will not work as is (needs UNICODE support) 199 #ifdef USING_OPEN32 202 200 ret = O32_DdeInitialize(lpidInst, (PFNCALLBACK_O32)DdeCallback, afCmd, ulRes); 201 #else 202 ret = O32_DdeInitialize(lpidInst, (PFNCALLBACK_O32)pfnCallback, afCmd, ulRes); 203 #endif 203 204 dprintf(("USER32: DdeInitializeW %x %x %x %x returned %x", lpidInst, pfnCallback, afCmd, ulRes, ret)); 204 205 return ret; … … 209 210 BOOL WIN32API DdeKeepStringHandle(DWORD arg1, HSZ arg2) 210 211 { 211 212 212 dprintf(("USER32: DdeKeepStringHandle\n")); 213 213 … … 218 218 HDDEDATA WIN32API DdeNameService( DWORD arg1, HSZ arg2, HSZ arg3, UINT arg4) 219 219 { 220 221 220 dprintf(("USER32: DdeNameService\n")); 222 221 … … 311 310 BOOL WIN32API FreeDDElParam( UINT arg1, LONG arg2) 312 311 { 313 314 312 dprintf(("USER32: FreeDDElParam\n")); 315 313 … … 320 318 LONG WIN32API PackDDElParam(UINT arg1, UINT arg2, UINT arg3) 321 319 { 322 323 320 dprintf(("USER32: PackDDElParam\n")); 324 321 … … 329 326 UINT WIN32API ReuseDDElParam( UINT arg1, UINT arg2, UINT arg3, UINT arg4, UINT arg5) 330 327 { 331 332 328 dprintf(("USER32: ReuseDDElParam\n")); 333 329 … … 338 334 BOOL WIN32API UnpackDDElParam(UINT arg1, UINT arg2, LPUINT arg3, LPUINT arg4) 339 335 { 340 341 336 dprintf(("USER32: UnpackDDElParam\n")); 342 337
Note:
See TracChangeset
for help on using the changeset viewer.