Ignore:
Timestamp:
Feb 11, 2002, 2:48:43 PM (24 years ago)
Author:
sandervl
Message:

logging changes, window title fix (codepage), keyboard fixes

File:
1 edited

Legend:

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

    r6517 r7866  
    1 /* $Id: dde.cpp,v 1.14 2001-08-11 12:03:35 sandervl Exp $ */
     1/* $Id: dde.cpp,v 1.15 2002-02-11 13:48:40 sandervl Exp $ */
    22
    33/*
     
    3333//******************************************************************************
    3434//******************************************************************************
    35 HDDEDATA WIN32API DdeAddData( HDDEDATA arg1, PVOID arg2, DWORD arg3, DWORD  arg4)
     35HDDEDATA WIN32API DdeAddData( HDDEDATA arg1, LPBYTE arg2, DWORD arg3, DWORD  arg4)
    3636{
    3737    dprintf(("USER32: DdeAddData %x %x %x %x", arg1, arg2, arg3, arg4));
    38     return O32_DdeAddData(arg1, arg2, arg3, arg4);
    39 }
    40 //******************************************************************************
    41 //******************************************************************************
    42 HDDEDATA WIN32API DdeClientTransaction(PVOID arg1, DWORD arg2, HCONV arg3,
     38    return O32_DdeAddData(arg1, (PVOID)arg2, arg3, arg4);
     39}
     40//******************************************************************************
     41//******************************************************************************
     42HDDEDATA WIN32API DdeClientTransaction(LPBYTE arg1, DWORD arg2, HCONV arg3,
    4343                                       HSZ arg4, UINT arg5, UINT arg6, DWORD arg7,
    44                                        PDWORD arg8)
     44                                       LPDWORD arg8)
    4545{
    4646    dprintf(("USER32: DdeClientTransaction %x %x %x %x %x %x %x %x", arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8));
    4747
    48     return O32_DdeClientTransaction(arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8);
     48    return O32_DdeClientTransaction((PVOID)arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8);
    4949}
    5050//******************************************************************************
     
    7878//******************************************************************************
    7979//******************************************************************************
    80 HDDEDATA WIN32API DdeCreateDataHandle(DWORD arg1, PVOID arg2, DWORD arg3, DWORD arg4,
     80HDDEDATA WIN32API DdeCreateDataHandle(DWORD arg1, LPBYTE arg2, DWORD arg3, DWORD arg4,
    8181                                      HSZ arg5, UINT arg6, UINT  arg7)
    8282{
    8383    dprintf(("USER32: DdeCreateDataHandle %x %x %x %x %x %x %x", arg1, arg2, arg3, arg4, arg5, arg6, arg7));
    84     return O32_DdeCreateDataHandle(arg1, arg2, arg3, arg4, arg5, arg6, arg7);
     84    return O32_DdeCreateDataHandle(arg1, (PVOID)arg2, arg3, arg4, arg5, arg6, arg7);
    8585}
    8686//******************************************************************************
     
    148148//******************************************************************************
    149149//******************************************************************************
    150 DWORD WIN32API DdeGetData( HDDEDATA arg1, PVOID arg2, DWORD arg3, DWORD  arg4)
     150DWORD WIN32API DdeGetData( HDDEDATA arg1, LPBYTE arg2, DWORD arg3, DWORD  arg4)
    151151{
    152152    dprintf(("USER32: DdeGetData %x %x %x %x", arg1, arg2, arg3, arg4));
    153153
    154     return O32_DdeGetData(arg1, arg2, arg3, arg4);
     154    return O32_DdeGetData(arg1, (PVOID)arg2, arg3, arg4);
    155155}
    156156//******************************************************************************
     
    324324//******************************************************************************
    325325//******************************************************************************
    326 UINT WIN32API ReuseDDElParam( UINT arg1, UINT arg2, UINT arg3, UINT arg4, UINT arg5)
     326UINT WIN32API ReuseDDElParam(LPARAM arg1, UINT arg2, UINT arg3, UINT arg4, UINT arg5)
    327327{
    328328    dprintf(("USER32:  ReuseDDElParam\n"));
     
    332332//******************************************************************************
    333333//******************************************************************************
    334 BOOL WIN32API UnpackDDElParam(UINT arg1, UINT arg2, LPUINT arg3, LPUINT arg4)
     334BOOL WIN32API UnpackDDElParam(UINT arg1, LPARAM arg2, PUINT arg3, PUINT arg4)
    335335{
    336336    dprintf(("USER32:  UnpackDDElParam\n"));
Note: See TracChangeset for help on using the changeset viewer.