Changeset 5148 for trunk/include
- Timestamp:
- Feb 17, 2001, 4:38:17 PM (25 years ago)
- Location:
- trunk/include
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/odin.h
r4959 r5148 52 52 #define WINAPI __stdcall 53 53 #define SYSTEM __stdcall 54 #define PASCAL _ Pascal54 #define PASCAL __stdcall 55 55 #define UNALIGNED 56 56 #else … … 63 63 #define WINAPI __stdcall 64 64 #define SYSTEM __stdcall 65 #define PASCAL _ Pascal65 #define PASCAL __stdcall 66 66 #define UNALIGNED 67 67 #else … … 74 74 #define WINAPI __stdcall 75 75 #define SYSTEM _System 76 #define PASCAL _ Pascal76 #define PASCAL __stdcall 77 77 #define UNALIGNED 78 78 #define __inline__ inline -
trunk/include/win/richedit.h
r3510 r5148 1 /* $Id: richedit.h,v 1.1 2000-05-10 13:11:50 sandervl Exp $ */2 1 #ifndef __WINE_RICHEDIT_H 3 2 #define __WINE_RICHEDIT_H … … 59 58 #define EM_SETWORDBREAKPROCEX (WM_USER + 81) 60 59 60 // new edit styles 61 #define ES_SAVESEL 0x00008000 62 #define ES_SUNKEN 0x00004000 63 #define ES_DISABLENOSCROLL 0x00002000 64 #define ES_SELECTIONBAR 0x01000000 65 #define ES_NOOLEDRAGDROP 0x00000008 66 67 61 68 typedef DWORD (* CALLBACK EDITSTREAMCALLBACK)( DWORD, LPBYTE, LONG, LONG ); 62 69 -
trunk/include/win/shellapi.h
r4688 r5148 1 /* $Id: shellapi.h,v 1.10 2000-11-24 13:15:55 sandervl Exp $ */2 3 1 #ifndef _WINE_SHELLAPI_H 4 2 #define _WINE_SHELLAPI_H … … 286 284 } NOTIFYICONDATAW, *PNOTIFYICONDATAW; 287 285 286 BOOL WINAPI Shell_NotifyIconA(DWORD dwMessage, PNOTIFYICONDATAA lpData); 287 BOOL WINAPI Shell_NotifyIconW(DWORD dwMessage, PNOTIFYICONDATAW lpData); 288 #define Shell_NotifyIcon WINELIB_NAME_AW(Shell_NotifyIcon) 288 289 289 290 #define SEE_MASK_CLASSNAME 0x00000001 -
trunk/include/win/tchar.h
r3850 r5148 1 /* $Id: tchar.h,v 1.4 2000-07-18 18:30:37 sandervl Exp $ */2 3 1 #ifndef __WINE_TCHAR_H 4 2 #define __WINE_TCHAR_H … … 13 11 #define _chdir chdir 14 12 #define _rmdir rmdir 13 14 #ifndef __WIN32OS2__ 15 15 16 16 /* FIXME: this should be in io.h but I believe it's a standard include on some systems... */ … … 39 39 /* FIXME: _searchenv is not implemented */ 40 40 /* FIXME: _splitpath is not implemented */ 41 42 #ifndef __WIN32OS2__43 41 44 42 /* FIXME: this should be in string.h but since it's a standard C library include... */ -
trunk/include/win/winbase.h
r4670 r5148 1 /* $Id: winbase.h,v 1.25 2000-11-22 00:37:28 phaller Exp $ */2 3 1 #ifndef __WINE_WINBASE_H 4 2 #define __WINE_WINBASE_H … … 1488 1486 HANDLE WINAPI GetCurrentThread(void); 1489 1487 DWORD WINAPI GetCurrentThreadId(void); 1490 INT WINAPI GetDateFormatA(LCID,DWORD, LPSYSTEMTIME,LPCSTR,LPSTR,INT);1491 INT WINAPI GetDateFormatW(LCID,DWORD, LPSYSTEMTIME,LPCWSTR,LPWSTR,INT);1488 INT WINAPI GetDateFormatA(LCID,DWORD,CONST SYSTEMTIME *,LPCSTR,LPSTR,INT); 1489 INT WINAPI GetDateFormatW(LCID,DWORD,CONST SYSTEMTIME *,LPCWSTR,LPWSTR,INT); 1492 1490 #define GetDateFormat WINELIB_NAME_AW(GetDateFormat) 1493 1491 LPSTR WINAPI GetEnvironmentStringsA(void); … … 1546 1544 BOOL WINAPI GetSystemPowerStatus(LPSYSTEM_POWER_STATUS); 1547 1545 VOID WINAPI GetSystemTime(LPSYSTEMTIME); 1548 INT WINAPI GetTimeFormatA(LCID,DWORD, LPSYSTEMTIME,LPCSTR,LPSTR,INT);1549 INT WINAPI GetTimeFormatW(LCID,DWORD, LPSYSTEMTIME,LPCWSTR,LPWSTR,INT);1546 INT WINAPI GetTimeFormatA(LCID,DWORD,CONST SYSTEMTIME *,LPCSTR,LPSTR,INT); 1547 INT WINAPI GetTimeFormatW(LCID,DWORD,CONST SYSTEMTIME *,LPCWSTR,LPWSTR,INT); 1550 1548 #define GetTimeFormat WINELIB_NAME_AW(GetTimeFormat) 1551 1549 BOOL WINAPI GetThreadContext(HANDLE,CONTEXT *); -
trunk/include/win/windowsx.h
r3850 r5148 1 /* $Id: windowsx.h,v 1.10 2000-07-18 18:30:42 sandervl Exp $ */2 3 1 /* Copyright (C) 1999 Corel Corporation (Paul Quinn) */ 4 2 … … 942 940 943 941 /****** COMBOBOX control message APIs *****************************************/ 942 943 #define ComboBox_Enable(hwndCtl, fEnable) EnableWindow((hwndCtl), (fEnable)) 944 #define ComboBox_GetText(hwndCtl, lpch, cchMax) GetWindowText((hwndCtl), (lpch), (cchMax)) 945 #define ComboBox_GetTextLength(hwndCtl) GetWindowTextLength(hwndCtl) 946 #define ComboBox_SetText(hwndCtl, lpsz) SetWindowText((hwndCtl), (lpsz)) 947 944 948 #define ComboBox_GetCount(hwndCtl) \ 945 949 ((int)(DWORD)SendMessage((hwndCtl), CB_GETCOUNT, 0L, 0L)) … … 1130 1134 #define FORWARD_WM_DRAWITEM(hwnd, lpDrawItem, fn) \ 1131 1135 (void)(fn)((hwnd), WM_DRAWITEM, (WPARAM)(((const DRAWITEMSTRUCT *)lpDrawItem)->CtlID), (LPARAM)(const DRAWITEMSTRUCT *)(lpDrawItem)) 1136 1137 1138 #define GET_WPARAM(wp, lp) (wp) 1139 #define GET_LPARAM(wp, lp) (lp) 1140 1141 #define GET_X_LPARAM(lp) ((int)(short)LOWORD(lp)) 1142 #define GET_Y_LPARAM(lp) ((int)(short)HIWORD(lp)) 1132 1143 1133 1144 /****** C runtime porting macros ****************************************/ -
trunk/include/win/wine/obj_shelllink.h
r4033 r5148 1 /* $Id: obj_shelllink.h,v 1.6 2000-08-18 02:04:23 phaller Exp $ */2 1 /* 3 2 * Defines the COM interfaces and APIs related to IShellLink. … … 22 21 typedef struct IShellLinkA IShellLinkA,*LPSHELLLINK; 23 22 typedef struct IShellLinkW IShellLinkW,*LPSHELLLINKW; 23 #define IShellLink WINELIB_NAME_AW(IShellLink) 24 24 25 25 /***************************************************************************** -
trunk/include/win/winreg.h
r3427 r5148 1 /* $Id: winreg.h,v 1.5 2000-04-19 14:46:37 sandervl Exp $ */2 3 1 /* 4 2 * Shell Library definitions … … 203 201 LONG WINAPI RegSetValueW(HKEY,LPCWSTR,DWORD,LPCWSTR,DWORD); 204 202 #define RegSetValue WINELIB_NAME_AW(RegSetValue) 205 LONG WINAPI RegSetValueExA(HKEY,LP STR,DWORD,DWORD,LPBYTE,DWORD);206 LONG WINAPI RegSetValueExW(HKEY,LP WSTR,DWORD,DWORD,LPBYTE,DWORD);203 LONG WINAPI RegSetValueExA(HKEY,LPCSTR,DWORD,DWORD,LPBYTE,DWORD); 204 LONG WINAPI RegSetValueExW(HKEY,LPCWSTR,DWORD,DWORD,LPBYTE,DWORD); 207 205 #define RegSetValueEx WINELIB_NAME_AW(RegSetValueEx) 208 206
Note:
See TracChangeset
for help on using the changeset viewer.