Changeset 3384 for trunk/include/win/commctrl.h
- Timestamp:
- Apr 15, 2000, 4:20:15 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/win/commctrl.h
r3354 r3384 1 /* $Id: commctrl.h,v 1.2 8 2000-04-09 11:09:08 sandervlExp $ */1 /* $Id: commctrl.h,v 1.29 2000-04-15 14:20:15 cbratschi Exp $ */ 2 2 /* 3 3 * Common controls definitions … … 2791 2791 #define NM_CACHEHINT NMLVCACHEHINT 2792 2792 2793 typedef struct tagLVBKIMAGEA 2794 { 2795 ULONG ulFlags; // LVBKIF_* 2796 HBITMAP hbm; 2797 LPSTR pszImage; 2798 UINT cchImageMax; 2799 int xOffsetPercent; 2800 int yOffsetPercent; 2801 } LVBKIMAGEA, *LPLVBKIMAGEA; 2802 2803 typedef struct tagLVBKIMAGEW 2804 { 2805 ULONG ulFlags; // LVBKIF_* 2806 HBITMAP hbm; 2807 LPWSTR pszImage; 2808 UINT cchImageMax; 2809 int xOffsetPercent; 2810 int yOffsetPercent; 2811 } LVBKIMAGEW, *LPLVBKIMAGEW; 2812 2813 #define LVBKIMAGE WINELIB_NAME_AW(LVBKIMAGE) 2814 #define LPLVBKIMAGE WINELIB_NAME_AW(LPLVBKIMAGE) 2815 2816 2817 #define LVBKIF_SOURCE_NONE 0x00000000 2818 #define LVBKIF_SOURCE_HBITMAP 0x00000001 2819 #define LVBKIF_SOURCE_URL 0x00000002 2820 #define LVBKIF_SOURCE_MASK 0x00000003 2821 #define LVBKIF_STYLE_NORMAL 0x00000000 2822 #define LVBKIF_STYLE_TILE 0x00000010 2823 #define LVBKIF_STYLE_MASK 0x00000010 2824 2793 2825 #define ListView_SetUnicodeFormat(hwnd, fUnicode) \ 2794 2826 (BOOL)SendMessageA((hwnd), LVM_SETUNICODEFORMAT, (WPARAM)(fUnicode), 0) … … 3857 3889 HDPA WINAPI DPA_Create (INT); 3858 3890 HDPA WINAPI DPA_CreateEx (INT, HANDLE); 3859 BOOL WINAPI DPA_Destroy (const HDPA);3891 BOOL WINAPI DPA_Destroy (const HDPA); 3860 3892 HDPA WINAPI DPA_Clone (const HDPA, const HDPA); 3861 3893 LPVOID WINAPI DPA_GetPtr (const HDPA, INT); 3862 INT WINAPI DPA_GetPtrIndex (const HDPA, LPVOID);3863 BOOL WINAPI DPA_Grow (const HDPA, INT);3864 BOOL WINAPI DPA_SetPtr (const HDPA, INT, LPVOID);3865 INT WINAPI DPA_InsertPtr (const HDPA, INT, LPVOID);3894 INT WINAPI DPA_GetPtrIndex (const HDPA, LPVOID); 3895 BOOL WINAPI DPA_Grow (const HDPA, INT); 3896 BOOL WINAPI DPA_SetPtr (const HDPA, INT, LPVOID); 3897 INT WINAPI DPA_InsertPtr (const HDPA, INT, LPVOID); 3866 3898 LPVOID WINAPI DPA_DeletePtr (const HDPA, INT); 3867 BOOL WINAPI DPA_DeleteAllPtrs (const HDPA);3899 BOOL WINAPI DPA_DeleteAllPtrs (const HDPA); 3868 3900 3869 3901 typedef INT (* CALLBACK PFNDPACOMPARE)(LPVOID, LPVOID, LPARAM); 3902 INT DPA_InsertPtrSorted(const HDPA,LPVOID,PFNDPACOMPARE,LPARAM); 3870 3903 BOOL WINAPI DPA_Sort (const HDPA, PFNDPACOMPARE, LPARAM); 3871 3904
Note:
See TracChangeset
for help on using the changeset viewer.