Changeset 3354 for trunk/include/win
- Timestamp:
- Apr 9, 2000, 1:09:12 PM (26 years ago)
- Location:
- trunk/include/win
- Files:
-
- 8 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) \ -
trunk/include/win/mmsystem.h
r3318 r3354 1 /* $Id: mmsystem.h,v 1. 7 2000-04-05 14:17:00sandervl Exp $ */1 /* $Id: mmsystem.h,v 1.8 2000-04-09 11:09:09 sandervl Exp $ */ 2 2 /* 3 3 * MMSYSTEM - Multimedia Wine Extension ... :-) … … 17 17 #include "pshpack1.h" 18 18 19 //#ifndef NONAMELESSSTRUCT 20 //#define DUMMYSTRUCTNAME 21 //#define DUMMYSTRUCTNAME1 22 //#define DUMMYSTRUCTNAME2 23 //#define DUMMYSTRUCTNAME3 24 //#define DUMMYSTRUCTNAME4 25 //#define DUMMYSTRUCTNAME5 26 //#else /* !defined(NONAMELESSSTRUCT) */ 27 #define DUMMYSTRUCTNAME s 28 #define DUMMYSTRUCTNAME1 s1 29 #define DUMMYSTRUCTNAME2 s2 30 #define DUMMYSTRUCTNAME3 s3 31 #define DUMMYSTRUCTNAME4 s4 32 #define DUMMYSTRUCTNAME5 s5 33 #undef DUMMYUNIONNAME 34 #undef DUMMYUNIONNAME1 35 #undef DUMMYUNIONNAME2 36 #undef DUMMYUNIONNAME3 37 #undef DUMMYUNIONNAME4 38 #undef DUMMYUNIONNAME5 19 #if defined(__cplusplus) && !defined(NONAMELESSUNION) 20 #define DUMMYUNIONNAME 21 #define DUMMYUNIONNAME1 22 #define DUMMYUNIONNAME2 23 #define DUMMYUNIONNAME3 24 #define DUMMYUNIONNAME4 25 #define DUMMYUNIONNAME5 26 #else 39 27 #define DUMMYUNIONNAME u 40 28 #define DUMMYUNIONNAME1 u1 … … 43 31 #define DUMMYUNIONNAME4 u4 44 32 #define DUMMYUNIONNAME5 u5 33 #endif 34 35 #define DUMMYSTRUCTNAME s 36 #define DUMMYSTRUCTNAME1 s1 45 37 46 38 //#endif /* !defined(NONAMELESSSTRUCT) */ … … 147 139 148 140 #define MM_MIM_MOREDATA 0x3CC 141 142 #define MM_MIXM_LINE_CHANGE 0x3D0 143 #define MM_MIXM_CONTROL_CHANGE 0x3D1 149 144 150 145 #define MMSYSERR_BASE 0 -
trunk/include/win/shlguid.h
r3242 r3354 1 /* $Id: shlguid.h,v 1. 4 2000-03-26 16:29:41 cbratschiExp $ */1 /* $Id: shlguid.h,v 1.5 2000-04-09 11:09:10 sandervl Exp $ */ 2 2 3 3 #ifndef __WINE_SHLGUID_H … … 20 20 DEFINE_SHLGUID(IID_IShellIcon, 0x000214E5L, 0, 0); 21 21 DEFINE_SHLGUID(IID_IShellPropSheetExt, 0x000214E9L, 0, 0); 22 DEFINE_SHLGUID(IID_IShellLinkA, 0x000214EEL, 0, 0); 22 23 DEFINE_SHLGUID(IID_IShellCopyHook, 0x000214EFL, 0, 0); 23 24 DEFINE_SHLGUID(IID_IFileViewer, 0x000214F0L, 0, 0); -
trunk/include/win/shlobj.h
r2606 r3354 1 /* $Id: shlobj.h,v 1. 5 2000-02-03 13:26:23sandervl Exp $ */1 /* $Id: shlobj.h,v 1.6 2000-04-09 11:09:11 sandervl Exp $ */ 2 2 #ifndef __WINE_SHLOBJ_H 3 3 #define __WINE_SHLOBJ_H … … 23 23 #include "commctrl.h" 24 24 #include "prsht.h" 25 #include "shlguid.h" 25 26 26 27 #ifdef __cplusplus -
trunk/include/win/windows.h
r2651 r3354 1 /* $Id: windows.h,v 1. 5 2000-02-05 02:42:19sandervl Exp $ */1 /* $Id: windows.h,v 1.6 2000-04-09 11:09:11 sandervl Exp $ */ 2 2 3 3 #ifndef __WINE_WINDOWS_H … … 10 10 #ifdef __WIN32OS2__ 11 11 #include <odin.h> 12 #if defined (__IBMC__) || (__IBMCPP__ < 400) 12 13 #define CINTERFACE 1 14 #endif 13 15 #endif 14 16 -
trunk/include/win/windowsx.h
r2694 r3354 1 /* $Id: windowsx.h,v 1. 8 2000-02-09 13:40:23sandervl Exp $ */1 /* $Id: windowsx.h,v 1.9 2000-04-09 11:09:11 sandervl Exp $ */ 2 2 3 3 /* Copyright (C) 1999 Corel Corporation (Paul Quinn) */ … … 951 951 ((int)(DWORD)SendMessage((hwndCtl), CB_SETCURSEL, (WPARAM)(int)(index), 0L)) 952 952 953 #define ComboBox_SelectString(hwndCtl, indexStart, lpszSelect) ((int)(DWORD)SendMessage((hwndCtl), CB_SELECTSTRING, (WPARAM)(int)(indexStart), (LPARAM)(LPCTSTR)(lpszSelect))) 954 953 955 #define ComboBox_GetLBTextLen(hwndCtl, index) \ 954 956 ((int)(DWORD)SendMessage((hwndCtl), CB_GETLBTEXTLEN, (WPARAM)(int)(index), 0L)) … … 994 996 ((LRESULT)(DWORD)SendMessage((hwndCtl), LB_GETITEMDATA, (WPARAM)(int)(index), 0L)) 995 997 998 #define ListBox_SetItemData(hwndCtl, index, data) ((int)(DWORD)SendMessage((hwndCtl), LB_SETITEMDATA, (WPARAM)(int)(index), (LPARAM)(data))) 999 996 1000 #define ListBox_GetCurSel(hwndCtl) \ 997 1001 ((int)(DWORD)SendMessage((hwndCtl), LB_GETCURSEL, 0L, 0L)) … … 1059 1063 #define Edit_GetTextLength(hwndCtl) GetWindowTextLength(hwndCtl) 1060 1064 #define Edit_SetText(hwndCtl, lpsz) SetWindowText((hwndCtl), (lpsz)) 1065 #define Edit_LimitText(hwndCtl, cchMax) ((void)SendMessage((hwndCtl), EM_LIMITTEXT, (WPARAM)(cchMax), 0L)) 1061 1066 1062 1067 #define Edit_Enable(hwndCtl, fEnable) EnableWindow((hwndCtl), (fEnable)) -
trunk/include/win/wingdi.h
r2940 r3354 1 /* $Id: wingdi.h,v 1.1 2 2000-02-29 00:55:09sandervl Exp $ */1 /* $Id: wingdi.h,v 1.13 2000-04-09 11:09:11 sandervl Exp $ */ 2 2 3 3 #ifndef __WINE_WINGDI_H … … 530 530 531 531 DECL_WINELIB_TYPE_AW(ENUMLOGFONT) 532 DECL_WINELIB_TYPE_AW(ENUMLOGFONTEX) 532 533 DECL_WINELIB_TYPE_AW(LPENUMLOGFONT) 533 534 DECL_WINELIB_TYPE_AW(LPENUMLOGFONTEX) … … 2827 2828 INT WINAPI AddFontResourceA(LPCSTR); 2828 2829 INT WINAPI AddFontResourceW(LPCWSTR); 2830 #define AddFontResource WINELIB_NAME_AW(AddFontResource) 2829 2831 BOOL WINAPI AnimatePalette(HPALETTE,UINT,UINT,const PALETTEENTRY*); 2830 2832 BOOL WINAPI Arc(HDC,INT,INT,INT,INT,INT,INT,INT,INT); … … 3041 3043 BOOL WINAPI RemoveFontResourceA(LPCSTR); 3042 3044 BOOL WINAPI RemoveFontResourceW(LPCWSTR); 3045 #define RemoveFontResource WINELIB_NAME_AW(RemoveFontResource) 3043 3046 HDC WINAPI ResetDCA(HDC,const DEVMODEA *); 3044 3047 HDC WINAPI ResetDCW(HDC,const DEVMODEW *); 3048 #define ResetDC WINELIB_NAME_AW(ResetDC) 3045 3049 BOOL WINAPI ResizePalette(HPALETTE,UINT); 3046 3050 BOOL WINAPI RestoreDC(HDC,INT); -
trunk/include/win/winuser.h
r3085 r3354 1 /* $Id: winuser.h,v 1. 39 2000-03-11 15:09:33sandervl Exp $ */1 /* $Id: winuser.h,v 1.40 2000-04-09 11:09:12 sandervl Exp $ */ 2 2 3 3 #ifndef __INCLUDE_WINUSER_H … … 2038 2038 #define IDI_WINLOGOW MAKEINTRESOURCEW(32517) 2039 2039 #define IDI_WINLOGO WINELIB_NAME_AW(IDI_WINLOGO) 2040 #define IDI_WARNING IDI_EXCLAMATION 2041 #define IDI_ERROR IDI_HAND 2042 #define IDI_INFORMATION IDI_ASTERISK 2040 2043 2041 2044 #define IDC_BUMMERA MAKEINTRESOURCEA(100)
Note:
See TracChangeset
for help on using the changeset viewer.