Changeset 3850 for trunk/include
- Timestamp:
- Jul 18, 2000, 8:30:47 PM (25 years ago)
- Location:
- trunk/include/win
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/win/commctrl.h
r3769 r3850 1 /* $Id: commctrl.h,v 1.3 2 2000-06-29 11:10:54sandervl Exp $ */1 /* $Id: commctrl.h,v 1.33 2000-07-18 18:30:29 sandervl Exp $ */ 2 2 /* 3 3 * Common controls definitions … … 2077 2077 #define TV_INSERTSTRUCT WINELIB_NAME_AW(TVINSERTSTRUCT) 2078 2078 #define LPTV_INSERTSTRUCT WINELIB_NAME_AW(LPTVINSERTSTRUCT) 2079 #define TVINSERTSTRUCT WINELIB_NAME_AW(TVINSERTSTRUCT) 2080 #define LPTVINSERTSTRUCT WINELIB_NAME_AW(LPTVINSERTSTRUCT) 2079 2081 2080 2082 #define TVINSERTSTRUCT_V1_SIZEA CCSIZEOF_STRUCT(TVINSERTSTRUCTA, item) … … 2182 2184 2183 2185 2186 #define TreeView_InsertItem WINELIB_NAME_AW(TreeView_InsertItem) 2184 2187 #define TreeView_InsertItemA(hwnd, phdi) \ 2185 2188 (INT)SendMessageA((hwnd), TVM_INSERTITEMA, 0, \ -
trunk/include/win/commdlg.h
r2694 r3850 1 /* $Id: commdlg.h,v 1. 5 2000-02-09 13:40:23 sandervl Exp $ */1 /* $Id: commdlg.h,v 1.6 2000-07-18 18:30:33 sandervl Exp $ */ 2 2 /* 3 3 * COMMDLG - Common Wine Dialog ... :-) … … 597 597 (int)SNDMSG(_hdlg, CDM_GETSPEC, (WPARAM)_cbmax, (LPARAM)(LPWSTR)_psz) 598 598 #define CommDlg_OpenSave_GetSpec WINELIB_NAME_AW(CommDlg_OpenSave_GetSpec) 599 600 // lParam = pointer to a string 601 // wParam = ID of control to change 602 // return = not used 603 #define CDM_SETCONTROLTEXT (CDM_FIRST + 0x0004) 604 #define CommDlg_OpenSave_SetControlText(_hdlg, _id, _text) \ 605 (void)SNDMSG(_hdlg, CDM_SETCONTROLTEXT, (WPARAM)_id, (LPARAM)(LPSTR)_text) 599 606 600 607 BOOL16 WINAPI ChooseColor16(LPCHOOSECOLOR16 lpChCol); -
trunk/include/win/oleauto.h
r636 r3850 1 /* $Id: oleauto.h,v 1. 2 1999-08-22 22:15:15 sandervl Exp $ */1 /* $Id: oleauto.h,v 1.3 2000-07-18 18:30:35 sandervl Exp $ */ 2 2 3 3 #ifndef __WINE_OLEAUTO_H … … 25 25 int WINAPI SysStringLen16(BSTR16); 26 26 int WINAPI SysStringLen(BSTR); 27 28 /***************************************************************** 29 * Time API 30 */ 31 32 INT WINAPI DosDateTimeToVariantTime(USHORT wDosDate, USHORT wDosTime, DOUBLE * pvtime); 33 34 INT WINAPI VariantTimeToDosDateTime(DOUBLE vtime, USHORT * pwDosDate, USHORT * pwDosTime); 35 36 #ifdef _WIN32 37 INT WINAPI SystemTimeToVariantTime(LPSYSTEMTIME lpSystemTime, DOUBLE *pvtime); 38 INT WINAPI VariantTimeToSystemTime(DOUBLE vtime, LPSYSTEMTIME lpSystemTime); 39 #endif 40 27 41 28 42 /***************************************************************** -
trunk/include/win/tchar.h
r1546 r3850 1 /* $Id: tchar.h,v 1. 3 1999-11-02 19:06:43sandervl Exp $ */1 /* $Id: tchar.h,v 1.4 2000-07-18 18:30:37 sandervl Exp $ */ 2 2 3 3 #ifndef __WINE_TCHAR_H … … 5 5 6 6 #include "windef.h" 7 8 #ifndef __WIN32OS2__9 7 10 8 #ifdef __cplusplus … … 41 39 /* FIXME: _searchenv is not implemented */ 42 40 /* FIXME: _splitpath is not implemented */ 41 42 #ifndef __WIN32OS2__ 43 43 44 44 /* FIXME: this should be in string.h but since it's a standard C library include... */ … … 75 75 #define _utime utime 76 76 77 #endif //__WIN32OS2__ 77 78 78 79 /***************************************************************************** … … 156 157 #define _tcsdup WINE_tchar_routine(_strdup, _mbsdup, _wcsdup) 157 158 #define _tcsftime WINE_tchar_routine(strftime, strftime, wcsftime) 158 #define _tcsicmp WINE_tchar_routine( _stricmp,_mbsicmp, _wcsicmp)159 #define _tcsicmp WINE_tchar_routine(stricmp, _mbsicmp, _wcsicmp) 159 160 #define _tcsicoll WINE_tchar_routine(_stricoll, _stricoll, _wcsicoll) 160 161 #define _tcsinc WINE_tchar_routine(_strinc, _mbsinc, _wcsinc) … … 273 274 } /* extern "C" */ 274 275 #endif 275 276 #endif //__WIN32OS2__ 277 276 278 277 #endif /* __WINE_TCHAR_H */ -
trunk/include/win/winbase.h
r3643 r3850 1 /* $Id: winbase.h,v 1.1 3 2000-06-01 11:56:35sandervl Exp $ */1 /* $Id: winbase.h,v 1.14 2000-07-18 18:30:38 sandervl Exp $ */ 2 2 3 3 #ifndef __WINE_WINBASE_H … … 1607 1607 BOOL WINAPI UnlockFile(HFILE,DWORD,DWORD,DWORD,DWORD); 1608 1608 BOOL WINAPI UnmapViewOfFile(LPVOID); 1609 BOOL WINAPI FlushInstructionCache(HANDLE,LPCVOID,DWORD); 1609 1610 LPVOID WINAPI VirtualAlloc(LPVOID,DWORD,DWORD,DWORD); 1610 1611 BOOL WINAPI VirtualFree(LPVOID,DWORD,DWORD); -
trunk/include/win/windows.h
r3354 r3850 1 /* $Id: windows.h,v 1. 6 2000-04-09 11:09:11sandervl Exp $ */1 /* $Id: windows.h,v 1.7 2000-07-18 18:30:40 sandervl Exp $ */ 2 2 3 3 #ifndef __WINE_WINDOWS_H … … 22 22 #include "winreg.h" 23 23 #include "ddeml.h" 24 #include "dlgs.h" 24 25 #include "winnetwk.h" 25 26 #include "winver.h" … … 33 34 #include "winver.h" 34 35 36 #include <commdlg.h> 37 #include <winspool.h> 35 38 36 39 #ifdef __cplusplus -
trunk/include/win/windowsx.h
r3354 r3850 1 /* $Id: windowsx.h,v 1. 9 2000-04-09 11:09:11sandervl Exp $ */1 /* $Id: windowsx.h,v 1.10 2000-07-18 18:30:42 sandervl Exp $ */ 2 2 3 3 /* Copyright (C) 1999 Corel Corporation (Paul Quinn) */ … … 998 998 #define ListBox_SetItemData(hwndCtl, index, data) ((int)(DWORD)SendMessage((hwndCtl), LB_SETITEMDATA, (WPARAM)(int)(index), (LPARAM)(data))) 999 999 1000 #define ListBox_SetSel(hwndCtl, fSelect, index) ((int)(DWORD)SendMessage((hwndCtl), LB_SETSEL, (WPARAM)(BOOL)(fSelect), (LPARAM)(index))) 1001 #define ListBox_SelItemRange(hwndCtl, fSelect, first, last) ((int)(DWORD)SendMessage((hwndCtl), LB_SELITEMRANGE, (WPARAM)(BOOL)(fSelect), MAKELPARAM((first), (last)))) 1002 1000 1003 #define ListBox_GetCurSel(hwndCtl) \ 1001 1004 ((int)(DWORD)SendMessage((hwndCtl), LB_GETCURSEL, 0L, 0L)) … … 1017 1020 #define ListBox_FindStringExact(hwndCtl, indexStart, lpszFind) \ 1018 1021 ((int)(DWORD)SendMessage((hwndCtl), LB_FINDSTRINGEXACT, (WPARAM)(int)(indexStart), (LPARAM)(LPCTSTR)(lpszFind))) 1022 1023 #define ListBox_GetSel(hwndCtl, index) ((int)(DWORD)SendMessage((hwndCtl), LB_GETSEL, (WPARAM)(int)(index), 0L)) 1024 #define ListBox_GetSelCount(hwndCtl) ((int)(DWORD)SendMessage((hwndCtl), LB_GETSELCOUNT, 0L, 0L)) 1019 1025 1020 1026 #define Edit_LineFromChar(hwndCtl, ich) \ -
trunk/include/win/wingdi.h
r3354 r3850 1 /* $Id: wingdi.h,v 1.1 3 2000-04-09 11:09:11sandervl Exp $ */1 /* $Id: wingdi.h,v 1.14 2000-07-18 18:30:45 sandervl Exp $ */ 2 2 3 3 #ifndef __WINE_WINGDI_H … … 2770 2770 HDC WINAPI CreateEnhMetaFileA(HDC,LPCSTR,const RECT*,LPCSTR); 2771 2771 HDC WINAPI CreateEnhMetaFileW(HDC,LPCWSTR,const RECT*,LPCWSTR); 2772 #define CreateEnhMetaFile WINELIB_NAME_AW(CreateEnhMetaFile) 2772 2773 INT WINAPI DrawEscape(HDC,INT,INT,LPCSTR); 2773 2774 BOOL WINAPI GdiComment(HDC,UINT,const BYTE *); 2774 2775 BOOL WINAPI GetCharABCWidthsFloatA(HDC,UINT,UINT,LPABCFLOAT); 2775 2776 BOOL WINAPI GetCharABCWidthsFloatW(HDC,UINT,UINT,LPABCFLOAT); 2777 #define GetCharABCWidthsFloat WINELIB_NAME_AW(GetCharABCWidthsFloat) 2776 2778 BOOL WINAPI GetCharWidthFloatA(HDC,UINT,UINT,PFLOAT); 2777 2779 BOOL WINAPI GetCharWidthFloatW(HDC,UINT,UINT,PFLOAT); 2780 #define GetCharWidthFloat WINELIB_NAME_AW(GetCharWidthFloat) 2778 2781 BOOL WINAPI GetColorAdjustment(HDC, LPCOLORADJUSTMENT); 2779 2782 DWORD WINAPI GetDCHook(HDC16,FARPROC16*); … … 2931 2934 BOOL WINAPI GetCharABCWidthsA(HDC,UINT,UINT,LPABC); 2932 2935 BOOL WINAPI GetCharABCWidthsW(HDC,UINT,UINT,LPABC); 2933 #define GetChar Width WINELIB_NAME_AW(GetCharWidth)2936 #define GetCharABCWidths WINELIB_NAME_AW(GetCharABCWidths) 2934 2937 #define GetCharWidthA GetCharWidth32A 2935 2938 #define GetCharWidthW GetCharWidth32W -
trunk/include/win/wtypes.h
r1890 r3850 200 200 #define _SECURITY_DEFINED 201 201 202 typedef DWORD ACCESS_MASK, *PACCESS_MASK; 203 204 typedef struct _GENERIC_MAPPING { 205 ACCESS_MASK GenericRead; 206 ACCESS_MASK GenericWrite; 207 ACCESS_MASK GenericExecute; 208 ACCESS_MASK GenericAll; 209 } GENERIC_MAPPING, *PGENERIC_MAPPING; 210 202 211 typedef struct { 203 212 BYTE Value[6];
Note:
See TracChangeset
for help on using the changeset viewer.