Changeset 4627 for trunk/src/comctl32/CCBase.h
- Timestamp:
- Nov 19, 2000, 12:51:48 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/comctl32/CCBase.h
r3410 r4627 1 /* $Id: CCBase.h,v 1.1 0 2000-04-16 18:52:38 cbratschiExp $ */1 /* $Id: CCBase.h,v 1.11 2000-11-19 11:51:47 sandervl Exp $ */ 2 2 /* 3 3 * COMCTL32 Base Functions and Macros for all Controls … … 23 23 VOID doneControl(HWND hwnd); 24 24 25 26 #ifdef __cplusplus 27 extern "C" { 28 #endif 29 25 30 LRESULT defComCtl32ProcA(HWND hwnd,UINT Msg,WPARAM wParam,LPARAM lParam); 26 31 LRESULT defComCtl32ProcW(HWND hwnd,UINT Msg,WPARAM wParam,LPARAM lParam); 27 32 33 #ifdef __cplusplus 34 } 35 #endif 36 28 37 BOOL isUnicodeNotify(COMCTL32_HEADER *infoPtr); 38 #ifdef __cplusplus 29 39 BOOL isUnicodeNotify(HWND hwnd); 40 #endif 30 41 31 HWND getNotifyWindow(COMCTL32_HEADER *infoPtr);32 42 HWND getNotifyWindow(COMCTL32_HEADER *infoPtr); 33 43 34 44 LRESULT sendNotify(HWND hwnd,UINT code); 45 #ifdef __cplusplus 35 46 LRESULT sendNotify(HWND hwndFrom,HWND hwndTo,UINT code); 36 47 LRESULT sendNotify(HWND hwnd,UINT code,LPNMHDR nmhdr); 37 48 LRESULT sendNotify(HWND hwndFrom,HWND hwndTo,UINT code,LPNMHDR nmhdr); 49 #endif 38 50 LRESULT sendNotifyFormat(HWND hwnd,HWND hwndFrom,LPARAM command); 39 51 LRESULT sendCommand(HWND hwnd,UINT wNotifyCode); … … 67 79 #define TICKDIFF(start,end) ((end > start) ? (end-start):(0xFFFFFFFF-start+end)) 68 80 81 69 82 #endif
Note:
See TracChangeset
for help on using the changeset viewer.