Changeset 81 for trunk/include/helpers/winh.h
- Timestamp:
- Jun 23, 2001, 11:12:49 AM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/helpers/winh.h
r76 r81 83 83 #ifdef WINH_STANDARDWRAPPERS 84 84 85 MRESULT _OptlinkwinhSendMsg(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2);85 MRESULT XWPENTRY winhSendMsg(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2); 86 86 #define WinSendMsg(a,b,c,d) winhSendMsg((a),(b),(c),(d)) 87 87 88 BOOL _OptlinkwinhPostMsg(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2);88 BOOL XWPENTRY winhPostMsg(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2); 89 89 #define WinPostMsg(a,b,c,d) winhPostMsg((a),(b),(c),(d)) 90 90 91 HWND _OptlinkwinhWindowFromID(HWND hwnd, ULONG id);91 HWND XWPENTRY winhWindowFromID(HWND hwnd, ULONG id); 92 92 #define WinWindowFromID(a,b) winhWindowFromID((a),(b)) 93 93 94 HWND _OptlinkwinhQueryWindow(HWND hwnd, LONG lCode);94 HWND XWPENTRY winhQueryWindow(HWND hwnd, LONG lCode); 95 95 #define WinQueryWindow(a,b) winhQueryWindow((a),(b)) 96 96 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)) 97 105 #endif 98 106
Note:
See TracChangeset
for help on using the changeset viewer.