Changeset 9701 for trunk/src


Ignore:
Timestamp:
Jan 21, 2003, 12:47:46 PM (23 years ago)
Author:
sandervl
Message:

Moved debug wrapper for DDE to dde.cpp

Location:
trunk/src/user32
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/user32/dbgwrap.cpp

    r9523 r9701  
    355355DEBUGWRAP8(SetClipboardData)
    356356DEBUGWRAP4(SetClipboardViewer)
    357 
    358 
    359 #undef DBG_LOCALLOG
    360 #define DBG_LOCALLOG    DBG_dde
    361 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)
    398357
    399358
  • trunk/src/user32/dde.cpp

    r7866 r9701  
    1 /* $Id: dde.cpp,v 1.15 2002-02-11 13:48:40 sandervl Exp $ */
     1/* $Id: dde.cpp,v 1.16 2003-01-21 11:47:46 sandervl Exp $ */
    22
    33/*
     
    1111 */
    1212#include <os2win.h>
    13 #include <misc.h>
    1413#include <unicode.h>
     14#include <ddeml.h>
     15#include <dde.h>
     16#include <odinwrap.h>
     17#include <dbgwrap.h>
    1518
    1619#define DBG_LOCALLOG    DBG_dde
    1720#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
     28DEBUGWRAP12(DdeAbandonTransaction)
     29DEBUGWRAP8(DdeAccessData)
     30DEBUGWRAP16(DdeAddData)
     31DEBUGWRAP32(DdeClientTransaction)
     32DEBUGWRAP8(DdeCmpStringHandles)
     33DEBUGWRAP16(DdeConnect)
     34DEBUGWRAP20(DdeConnectList)
     35DEBUGWRAP28(DdeCreateDataHandle)
     36DEBUGWRAP12(DdeCreateStringHandleA)
     37DEBUGWRAP12(DdeCreateStringHandleW)
     38DEBUGWRAP4(DdeDisconnect)
     39DEBUGWRAP4(DdeDisconnectList)
     40DEBUGWRAP12(DdeEnableCallback)
     41DEBUGWRAP4(DdeFreeDataHandle)
     42DEBUGWRAP8(DdeFreeStringHandle)
     43DEBUGWRAP16(DdeGetData)
     44DEBUGWRAP4(DdeGetLastError)
     45DEBUGWRAP4(DdeImpersonateClient)
     46DEBUGWRAP16(DdeInitializeA)
     47DEBUGWRAP16(DdeInitializeW)
     48DEBUGWRAP8(DdeKeepStringHandle)
     49DEBUGWRAP16(DdeNameService)
     50DEBUGWRAP12(DdePostAdvise)
     51DEBUGWRAP12(DdeQueryConvInfo)
     52DEBUGWRAP8(DdeQueryNextServer)
     53DEBUGWRAP20(DdeQueryStringA)
     54DEBUGWRAP20(DdeQueryStringW)
     55DEBUGWRAP4(DdeReconnect)
     56DEBUGWRAP12(DdeSetQualityOfService)
     57DEBUGWRAP12(DdeSetUserHandle)
     58DEBUGWRAP4(DdeUnaccessData)
     59DEBUGWRAP4(DdeUninitialize)
     60DEBUGWRAP8(FreeDDElParam)
     61DEBUGWRAP8(ImpersonateDdeClientWindow)
     62DEBUGWRAP12(PackDDElParam)
     63DEBUGWRAP20(ReuseDDElParam)
     64DEBUGWRAP16(UnpackDDElParam)
     65#endif
    1866
    1967//******************************************************************************
     
    324372//******************************************************************************
    325373//******************************************************************************
    326 UINT WIN32API ReuseDDElParam(LPARAM arg1, UINT arg2, UINT arg3, UINT arg4, UINT arg5)
     374LPARAM WIN32API ReuseDDElParam(LPARAM arg1, UINT arg2, UINT arg3, UINT arg4, UINT arg5)
    327375{
    328376    dprintf(("USER32:  ReuseDDElParam\n"));
Note: See TracChangeset for help on using the changeset viewer.