Changeset 3354 for trunk/include/win/commctrl.h
- Timestamp:
- Apr 9, 2000, 1:09:12 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/win/commctrl.h
r3350 r3354 1 /* $Id: commctrl.h,v 1.2 7 2000-04-08 18:30:10 cbratschiExp $ */1 /* $Id: commctrl.h,v 1.28 2000-04-09 11:09:08 sandervl Exp $ */ 2 2 /* 3 3 * Common controls definitions … … 2818 2818 (BOOL)SendMessageA((hwnd), LVM_GETITEMW, 0, (LPARAM)(LVITEMW*)(pitem)) 2819 2819 2820 #define ListView_GetItem WINELIB_NAME_AW(ListView_GetItem) 2821 2820 2822 #define ListView_SetItemA(hwnd, pitem) \ 2821 2823 (BOOL)SendMessageA((hwnd), LVM_SETITEMA, 0, (LPARAM)(const LVITEMA*)(pitem)) … … 2824 2826 (BOOL)SendMessageA((hwnd), LVM_SETITEMW, 0, (LPARAM)(const LVITEMW*)(pitem)) 2825 2827 2828 #define ListView_SetItem WINELIB_NAME_AW(ListView_SetItem) 2829 2826 2830 #define ListView_InsertItemA(hwnd, pitem) \ 2827 2831 (int)SendMessageA((hwnd), LVM_INSERTITEMA, 0, (LPARAM)(const LVITEMA*)(pitem)) … … 2829 2833 #define ListView_InsertItemW(hwnd, pitem) \ 2830 2834 (int)SendMessageA((hwnd), LVM_INSERTITEMW, 0, (LPARAM)(const LVITEMW*)(pitem)) 2835 2836 #define ListView_InsertItem WINELIB_NAME_AW(ListView_InsertItem) 2831 2837 2832 2838 #define ListView_DeleteItem(hwnd, i) \ … … 2908 2914 #define ListView_InsertColumnW(hwnd, iCol, pcol) \ 2909 2915 (int)SendMessageA((hwnd), LVM_INSERTCOLUMNW, (WPARAM)(int)(iCol), (LPARAM)(const LVCOLUMNW*)(pcol)) 2916 2917 #define ListView_InsertColumn WINELIB_NAME_AW(ListView_InsertColumn) 2910 2918 2911 2919 #define ListView_DeleteColumn(hwnd, iCol) \
Note:
See TracChangeset
for help on using the changeset viewer.