Changeset 2524 for trunk/include
- Timestamp:
- Jan 27, 2000, 12:17:52 AM (26 years ago)
- Location:
- trunk/include
- Files:
-
- 1 deleted
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/pefile.h
r1007 r2524 1 /* $Id: pefile.h,v 1. 3 1999-09-22 09:46:18sandervl Exp $ */1 /* $Id: pefile.h,v 1.4 2000-01-26 23:17:47 sandervl Exp $ */ 2 2 3 3 /* … … 14 14 #include <peexe.h> 15 15 #include <stdlib.h> //min & max 16 17 #define LOWORD(a) (a & 0xFFFF)18 16 19 17 #define IDS_ERRBADFILENAME 1000 -
trunk/include/win/authors.h
r2498 r2524 1 /* $Id: authors.h,v 1. 7 2000-01-22 10:30:30sandervl Exp $ */1 /* $Id: authors.h,v 1.8 2000-01-26 23:17:48 sandervl Exp $ */ 2 2 #ifndef __WINE_AUTHORS_H 3 3 #define __WINE_AUTHORS_H … … 12 12 "Peter Fitzsimmons", 13 13 "Adrian Gschwend", 14 "Jeroen van den Horn", 14 15 "Patrick Haller", 15 16 "Achim Hasenmueller", -
trunk/include/win/mmsystem.h
r2453 r2524 1 /* $Id: mmsystem.h,v 1. 4 2000-01-15 22:01:09sandervl Exp $ */1 /* $Id: mmsystem.h,v 1.5 2000-01-26 23:17:48 sandervl Exp $ */ 2 2 /* 3 3 * MMSYSTEM - Multimedia Wine Extension ... :-) … … 1781 1781 #define MCIERR_FILE_WRITE (MCIERR_BASE + 93) 1782 1782 1783 #define MCIERR_NO_IDENTITY (MCIERR_BASE + 94) 1784 1783 1785 #define MCIERR_CUSTOM_DRIVER_BASE (MCIERR_BASE + 256) 1784 1786 -
trunk/include/win/shellapi.h
r1546 r2524 1 /* $Id: shellapi.h,v 1. 7 1999-11-02 19:06:42sandervl Exp $ */1 /* $Id: shellapi.h,v 1.8 2000-01-26 23:17:49 sandervl Exp $ */ 2 2 3 3 #ifndef _WINE_SHELLAPI_H … … 129 129 } SHFILEINFOW; 130 130 131 DECL_WINELIB_TYPE_AW(SHFILEINFO) 132 131 133 DWORD WINAPI SHGetFileInfoA(LPCSTR,DWORD,SHFILEINFOA*,UINT,UINT); 132 134 DWORD WINAPI SHGetFileInfoW(LPCWSTR,DWORD,SHFILEINFOW*,UINT,UINT); 133 135 #define SHGetFileInfo WINELIB_NAME_AW(SHGetFileInfo) 134 136 135 137 /****************************************** -
trunk/include/win/winbase.h
r2170 r2524 1 /* $Id: winbase.h,v 1. 9 1999-12-21 00:29:30sandervl Exp $ */1 /* $Id: winbase.h,v 1.10 2000-01-26 23:17:49 sandervl Exp $ */ 2 2 3 3 #ifndef __WINE_WINBASE_H … … 160 160 #define TF_FORCEDRIVE 0x80 161 161 162 163 #define DRIVE_UNKNOWN 0 164 #define DRIVE_NO_ROOT_DIR 1 162 165 #define DRIVE_CANNOTDETERMINE 0 163 166 #define DRIVE_DOESNOTEXIST 1 -
trunk/include/win/windef.h
r1923 r2524 1 /* $Id: windef.h,v 1.1 8 1999-12-01 18:36:47sandervl Exp $ */1 /* $Id: windef.h,v 1.19 2000-01-26 23:17:49 sandervl Exp $ */ 2 2 3 3 /* … … 141 141 #endif 142 142 143 #if (__IBMC__ < 400) && (__IBMCPP__ < 360) 143 144 #ifndef __declspec 144 145 #define __declspec(x) … … 152 153 #define dllexport 153 154 #endif 155 #endif // (__IBMC__ < 400) && (__IBMCPP__ < 360) 154 156 155 157 #ifndef CONST -
trunk/include/win/windowsx.h
r1118 r2524 1 /* $Id: windowsx.h,v 1. 6 1999-10-04 09:55:51sandervl Exp $ */1 /* $Id: windowsx.h,v 1.7 2000-01-26 23:17:50 sandervl Exp $ */ 2 2 3 3 /* Copyright (C) 1999 Corel Corporation (Paul Quinn) */ … … 934 934 (void)(fn)((hwnd), WM_COMMNOTIFY, (WPARAM)(cid), MAKELPARAM((flags), 0)) 935 935 #endif 936 937 /* void Cls_OnContextMenu(HWND hwnd, HWND hwndContext, UINT xPos, UINT yPos) */ 938 #define HANDLE_WM_CONTEXTMENU(hwnd, wParam, lParam, fn) \ 939 ((fn)((hwnd), (HWND)(wParam), (UINT)LOWORD(lParam), (UINT)HIWORD(lParam)), 0L) 940 #define FORWARD_WM_CONTEXTMENU(hwnd, hwndContext, xPos, yPos, fn) \ 941 (void)(fn)((hwnd), WM_CONTEXTMENU, (WPARAM)(HWND)(hwndContext), MAKELPARAM((UINT)(xPos), (UINT)(yPos))) 936 942 937 943 /****** COMBOBOX control message APIs *****************************************/ -
trunk/include/win/wingdi.h
r1702 r2524 1 /* $Id: wingdi.h,v 1. 8 1999-11-11 13:15:21 sandervl Exp $ */1 /* $Id: wingdi.h,v 1.9 2000-01-26 23:17:51 sandervl Exp $ */ 2 2 3 3 #ifndef __WINE_WINGDI_H … … 1301 1301 #define NUMRESERVED 106 1302 1302 #define COLORRES 108 1303 1304 #define PHYSICALWIDTH 110 1305 #define PHYSICALHEIGHT 111 1306 #define PHYSICALOFFSETX 112 1307 #define PHYSICALOFFSETY 113 1308 #define SCALINGFACTORX 114 1309 #define SCALINGFACTORY 115 1303 1310 1304 1311 /* TECHNOLOGY */ -
trunk/include/win/winsock.h
r1316 r2524 1 /* $Id: winsock.h,v 1. 2 1999-10-16 11:03:19sandervl Exp $ */1 /* $Id: winsock.h,v 1.3 2000-01-26 23:17:52 sandervl Exp $ */ 2 2 3 3 /* WINSOCK.H--definitions to be used with the WINSOCK.DLL … … 550 550 unsigned flags; 551 551 ws_select_op* psop; 552 } ws_socket;552 } _ws_socket; 553 553 554 554 #define WS_MAX_SOCKETS_PER_PROCESS 16 -
trunk/include/win/winuser.h
r2443 r2524 1 /* $Id: winuser.h,v 1. 29 2000-01-15 14:16:32 cbratschiExp $ */1 /* $Id: winuser.h,v 1.30 2000-01-26 23:17:52 sandervl Exp $ */ 2 2 3 3 #ifndef __INCLUDE_WINUSER_H … … 1105 1105 #define MSGF_NEXTWINDOW 6 1106 1106 #define MSGF_MAINLOOP 8 1107 #define MSGF_MAX 8 1107 1108 #define MSGF_USER 4096 1108 1109 … … 3694 3695 INT WINAPIV wsnprintfW(LPWSTR,UINT,LPCWSTR,...); 3695 3696 #define wsnprintf WINELIB_NAME_AW(wsnprintf) 3696 INT WINAPIV wsprintfA(LPSTR,LPCSTR, va_list);3697 INT WINAPIV wsprintfW(LPWSTR,LPCWSTR, va_list);3697 INT WINAPIV wsprintfA(LPSTR,LPCSTR,...); 3698 INT WINAPIV wsprintfW(LPWSTR,LPCWSTR,...); 3698 3699 #define wsprintf WINELIB_NAME_AW(wsprintf) 3699 INT WINAPI wvsnprintfA(LPSTR,UINT,LPCSTR, va_list);3700 INT WINAPI wvsnprintfW(LPWSTR,UINT,LPCWSTR, va_list);3700 INT WINAPI wvsnprintfA(LPSTR,UINT,LPCSTR,...); 3701 INT WINAPI wvsnprintfW(LPWSTR,UINT,LPCWSTR,...); 3701 3702 #define wvsnprintf WINELIB_NAME_AW(wvsnprintf) 3702 INT WINAPI wvsprintfA(LPSTR,LPCSTR, va_list);3703 INT WINAPI wvsprintfW(LPWSTR,LPCWSTR, va_list);3703 INT WINAPI wvsprintfA(LPSTR,LPCSTR,...); 3704 INT WINAPI wvsprintfW(LPWSTR,LPCWSTR,...); 3704 3705 #define wvsprintf WINELIB_NAME_AW(wvsprintf) 3705 3706 -
trunk/include/winimagepeldr.h
r2219 r2524 1 /* $Id: winimagepeldr.h,v 1.1 0 1999-12-27 21:21:33sandervl Exp $ */1 /* $Id: winimagepeldr.h,v 1.11 2000-01-26 23:17:47 sandervl Exp $ */ 2 2 3 3 /* … … 27 27 //SvL: Amount of memory the peldr dll reserves for win32 exes without fixups 28 28 //(most of them need to be loaded at 4 MB; except MS Office apps of course) 29 #define PELDR_RESERVEDMEMSIZE 16*1024*102429 #define PELDR_RESERVEDMEMSIZE 32*1024*1024 30 30 31 31 #define ERROR_INTERNAL 1
Note:
See TracChangeset
for help on using the changeset viewer.