Ignore:
Timestamp:
Jun 23, 2001, 11:12:49 AM (24 years ago)
Author:
umoeller
Message:

Tons of changes from the last weeks.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/helpers/winh.h

    r76 r81  
    8383    #ifdef WINH_STANDARDWRAPPERS
    8484
    85         MRESULT _Optlink winhSendMsg(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2);
     85        MRESULT XWPENTRY winhSendMsg(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2);
    8686        #define WinSendMsg(a,b,c,d) winhSendMsg((a),(b),(c),(d))
    8787
    88         BOOL _Optlink winhPostMsg(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2);
     88        BOOL XWPENTRY winhPostMsg(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2);
    8989        #define WinPostMsg(a,b,c,d) winhPostMsg((a),(b),(c),(d))
    9090
    91         HWND _Optlink winhWindowFromID(HWND hwnd, ULONG id);
     91        HWND XWPENTRY winhWindowFromID(HWND hwnd, ULONG id);
    9292        #define WinWindowFromID(a,b) winhWindowFromID((a),(b))
    9393
    94         HWND _Optlink winhQueryWindow(HWND hwnd, LONG lCode);
     94        HWND XWPENTRY winhQueryWindow(HWND hwnd, LONG lCode);
    9595        #define WinQueryWindow(a,b) winhQueryWindow((a),(b))
    9696
     97        PVOID XWPENTRY winhQueryWindowPtr(HWND hwnd, LONG index);
     98        #define WinQueryWindowPtr(a,b) winhQueryWindowPtr((a),(b))
     99
     100        BOOL XWPENTRY winhSetWindowText(HWND hwnd, const char *pcsz);
     101        #define WinSetWindowText(a,b) winhSetWindowText((a),(b))
     102
     103        BOOL XWPENTRY winhSetDlgItemText(HWND hwnd, ULONG id, const char *pcsz);
     104        #define WinSetDlgItemText(a,b,c) winhSetDlgItemText((a),(b),(c))
    97105    #endif
    98106
Note: See TracChangeset for help on using the changeset viewer.