- Timestamp:
- Jan 21, 2003, 12:47:46 PM (23 years ago)
- Location:
- trunk/src/user32
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/dbgwrap.cpp
r9523 r9701 355 355 DEBUGWRAP8(SetClipboardData) 356 356 DEBUGWRAP4(SetClipboardViewer) 357 358 359 #undef DBG_LOCALLOG360 #define DBG_LOCALLOG DBG_dde361 DEBUGWRAP12(DdeAbandonTransaction)362 DEBUGWRAP8(DdeAccessData)363 DEBUGWRAP16(DdeAddData)364 DEBUGWRAP32(DdeClientTransaction)365 DEBUGWRAP8(DdeCmpStringHandles)366 DEBUGWRAP16(DdeConnect)367 DEBUGWRAP20(DdeConnectList)368 DEBUGWRAP28(DdeCreateDataHandle)369 DEBUGWRAP12(DdeCreateStringHandleA)370 DEBUGWRAP12(DdeCreateStringHandleW)371 DEBUGWRAP4(DdeDisconnect)372 DEBUGWRAP4(DdeDisconnectList)373 DEBUGWRAP12(DdeEnableCallback)374 DEBUGWRAP4(DdeFreeDataHandle)375 DEBUGWRAP8(DdeFreeStringHandle)376 DEBUGWRAP16(DdeGetData)377 DEBUGWRAP4(DdeGetLastError)378 DEBUGWRAP4(DdeImpersonateClient)379 DEBUGWRAP16(DdeInitializeA)380 DEBUGWRAP16(DdeInitializeW)381 DEBUGWRAP8(DdeKeepStringHandle)382 DEBUGWRAP16(DdeNameService)383 DEBUGWRAP12(DdePostAdvise)384 DEBUGWRAP12(DdeQueryConvInfo)385 DEBUGWRAP8(DdeQueryNextServer)386 DEBUGWRAP20(DdeQueryStringA)387 DEBUGWRAP20(DdeQueryStringW)388 DEBUGWRAP4(DdeReconnect)389 DEBUGWRAP12(DdeSetQualityOfService)390 DEBUGWRAP12(DdeSetUserHandle)391 DEBUGWRAP4(DdeUnaccessData)392 DEBUGWRAP4(DdeUninitialize)393 DEBUGWRAP8(FreeDDElParam)394 DEBUGWRAP8(ImpersonateDdeClientWindow)395 DEBUGWRAP12(PackDDElParam)396 DEBUGWRAP20(ReuseDDElParam)397 DEBUGWRAP16(UnpackDDElParam)398 357 399 358 -
trunk/src/user32/dde.cpp
r7866 r9701 1 /* $Id: dde.cpp,v 1.1 5 2002-02-11 13:48:40sandervl Exp $ */1 /* $Id: dde.cpp,v 1.16 2003-01-21 11:47:46 sandervl Exp $ */ 2 2 3 3 /* … … 11 11 */ 12 12 #include <os2win.h> 13 #include <misc.h>14 13 #include <unicode.h> 14 #include <ddeml.h> 15 #include <dde.h> 16 #include <odinwrap.h> 17 #include <dbgwrap.h> 15 18 16 19 #define DBG_LOCALLOG DBG_dde 17 20 #include "dbglocal.h" 21 22 #define DBGWRAP_MODULE "USER32" 23 #include <dbgwrap.h> 24 25 #ifdef DEBUG 26 #undef DBG_LOCALLOG 27 #define DBG_LOCALLOG DBG_dde 28 DEBUGWRAP12(DdeAbandonTransaction) 29 DEBUGWRAP8(DdeAccessData) 30 DEBUGWRAP16(DdeAddData) 31 DEBUGWRAP32(DdeClientTransaction) 32 DEBUGWRAP8(DdeCmpStringHandles) 33 DEBUGWRAP16(DdeConnect) 34 DEBUGWRAP20(DdeConnectList) 35 DEBUGWRAP28(DdeCreateDataHandle) 36 DEBUGWRAP12(DdeCreateStringHandleA) 37 DEBUGWRAP12(DdeCreateStringHandleW) 38 DEBUGWRAP4(DdeDisconnect) 39 DEBUGWRAP4(DdeDisconnectList) 40 DEBUGWRAP12(DdeEnableCallback) 41 DEBUGWRAP4(DdeFreeDataHandle) 42 DEBUGWRAP8(DdeFreeStringHandle) 43 DEBUGWRAP16(DdeGetData) 44 DEBUGWRAP4(DdeGetLastError) 45 DEBUGWRAP4(DdeImpersonateClient) 46 DEBUGWRAP16(DdeInitializeA) 47 DEBUGWRAP16(DdeInitializeW) 48 DEBUGWRAP8(DdeKeepStringHandle) 49 DEBUGWRAP16(DdeNameService) 50 DEBUGWRAP12(DdePostAdvise) 51 DEBUGWRAP12(DdeQueryConvInfo) 52 DEBUGWRAP8(DdeQueryNextServer) 53 DEBUGWRAP20(DdeQueryStringA) 54 DEBUGWRAP20(DdeQueryStringW) 55 DEBUGWRAP4(DdeReconnect) 56 DEBUGWRAP12(DdeSetQualityOfService) 57 DEBUGWRAP12(DdeSetUserHandle) 58 DEBUGWRAP4(DdeUnaccessData) 59 DEBUGWRAP4(DdeUninitialize) 60 DEBUGWRAP8(FreeDDElParam) 61 DEBUGWRAP8(ImpersonateDdeClientWindow) 62 DEBUGWRAP12(PackDDElParam) 63 DEBUGWRAP20(ReuseDDElParam) 64 DEBUGWRAP16(UnpackDDElParam) 65 #endif 18 66 19 67 //****************************************************************************** … … 324 372 //****************************************************************************** 325 373 //****************************************************************************** 326 UINTWIN32API ReuseDDElParam(LPARAM arg1, UINT arg2, UINT arg3, UINT arg4, UINT arg5)374 LPARAM WIN32API ReuseDDElParam(LPARAM arg1, UINT arg2, UINT arg3, UINT arg4, UINT arg5) 327 375 { 328 376 dprintf(("USER32: ReuseDDElParam\n"));
Note:
See TracChangeset
for help on using the changeset viewer.