Changeset 19678 in vbox for trunk/src/VBox/Additions/WINNT/Graphics/Wine/include/msvcrt/sys
- Timestamp:
- May 14, 2009 8:31:54 AM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 47280
- Location:
- trunk/src/VBox/Additions/WINNT/Graphics/Wine/include/msvcrt/sys
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/Graphics/Wine/include/msvcrt/sys/stat.h
r16410 r19678 6 6 * This file is in the public domain. 7 7 */ 8 9 /* 10 * Sun LGPL Disclaimer: For the avoidance of doubt, except that if any license choice 11 * other than GPL or LGPL is available it will apply instead, Sun elects to use only 12 * the Lesser General Public License version 2.1 (LGPLv2) at this time for any software where 13 * a choice of LGPL license versions is made available with the language indicating 14 * that LGPLv2 or any later version may be used, or where a choice of which version 15 * of the LGPL is applied is otherwise unspecified. 16 */ 17 8 18 #ifndef __WINE_SYS_STAT_H 9 19 #define __WINE_SYS_STAT_H 10 #ifndef __WINE_USE_MSVCRT 11 # define __WINE_USE_MSVCRT12 # endif20 21 #include <crtdefs.h> 22 #include <sys/types.h> 13 23 14 24 #include <pshpack8.h> 15 16 #include <sys/types.h>17 18 #ifndef _WCHAR_T_DEFINED19 #define _WCHAR_T_DEFINED20 #ifndef __cplusplus21 typedef unsigned short wchar_t;22 #endif23 #endif24 25 25 26 #ifndef _DEV_T_DEFINED … … 31 32 typedef unsigned short _ino_t; 32 33 #define _INO_T_DEFINED 33 #endif34 35 #ifndef _TIME_T_DEFINED36 typedef long time_t;37 #define _TIME_T_DEFINED38 34 #endif 39 35 … … 131 127 #endif 132 128 133 int _ fstat(int,struct _stat*);134 int _ stat(const char*,struct _stat*);135 int _ fstati64(int,struct _stati64*);136 int _ stati64(const char*,struct _stati64*);137 int _ fstat64(int,struct _stat64*);138 int _ stat64(const char*,struct _stat64*);139 int _ umask(int);129 int __cdecl _fstat(int,struct _stat*); 130 int __cdecl _stat(const char*,struct _stat*); 131 int __cdecl _fstati64(int,struct _stati64*); 132 int __cdecl _stati64(const char*,struct _stati64*); 133 int __cdecl _fstat64(int,struct _stat64*); 134 int __cdecl _stat64(const char*,struct _stat64*); 135 int __cdecl _umask(int); 140 136 141 137 #ifndef _WSTAT_DEFINED 142 138 #define _WSTAT_DEFINED 143 int _ wstat(const wchar_t*,struct _stat*);144 int _ wstati64(const wchar_t*,struct _stati64*);145 int _ wstat64(const wchar_t*,struct _stat64*);139 int __cdecl _wstat(const wchar_t*,struct _stat*); 140 int __cdecl _wstati64(const wchar_t*,struct _stati64*); 141 int __cdecl _wstat64(const wchar_t*,struct _stat64*); 146 142 #endif /* _WSTAT_DEFINED */ 147 143 -
trunk/src/VBox/Additions/WINNT/Graphics/Wine/include/msvcrt/sys/timeb.h
r16477 r19678 27 27 * of the LGPL is applied is otherwise unspecified. 28 28 */ 29 29 30 #ifndef __WINE_SYS_TIMEB_H 30 31 #define __WINE_SYS_TIMEB_H 31 #ifndef __WINE_USE_MSVCRT 32 #define __WINE_USE_MSVCRT 33 #endif 32 33 #include <crtdefs.h> 34 34 35 35 #include <pshpack8.h> 36 37 #ifndef _TIME_T_DEFINED38 typedef long time_t;39 #define _TIME_T_DEFINED40 #endif41 36 42 37 #ifndef _TIMEB_DEFINED … … 56 51 #endif 57 52 58 void 53 void __cdecl _ftime(struct _timeb*); 59 54 60 55 #ifdef __cplusplus -
trunk/src/VBox/Additions/WINNT/Graphics/Wine/include/msvcrt/sys/types.h
r16477 r19678 27 27 * of the LGPL is applied is otherwise unspecified. 28 28 */ 29 29 30 #ifndef __WINE_SYS_TYPES_H 30 31 #define __WINE_SYS_TYPES_H 31 #ifndef __WINE_USE_MSVCRT32 #define __WINE_USE_MSVCRT33 #endif34 32 35 #if defined(__x86_64__) && !defined(_WIN64) 36 #define _WIN64 37 #endif 38 39 #if !defined(_MSC_VER) && !defined(__int64) 40 # ifdef _WIN64 41 # define __int64 long 42 # else 43 # define __int64 long long 44 # endif 45 #endif 33 #include <crtdefs.h> 46 34 47 35 #ifndef _DEV_T_DEFINED … … 63 51 typedef int _off_t; 64 52 #define _OFF_T_DEFINED 65 #endif66 67 #ifndef _TIME_T_DEFINED68 typedef long time_t;69 #define _TIME_T_DEFINED70 #endif71 72 #ifndef _TIME64_T_DEFINED73 #define _TIME64_T_DEFINED74 typedef __int64 __time64_t;75 53 #endif 76 54 -
trunk/src/VBox/Additions/WINNT/Graphics/Wine/include/msvcrt/sys/utime.h
r16477 r19678 27 27 * of the LGPL is applied is otherwise unspecified. 28 28 */ 29 29 30 #ifndef __WINE_SYS_UTIME_H 30 31 #define __WINE_SYS_UTIME_H 31 #ifndef __WINE_USE_MSVCRT 32 #define __WINE_USE_MSVCRT 33 #endif 32 33 #include <crtdefs.h> 34 34 35 35 #include <pshpack8.h> 36 37 #ifndef _WCHAR_T_DEFINED38 #define _WCHAR_T_DEFINED39 #ifndef __cplusplus40 typedef unsigned short wchar_t;41 #endif42 #endif43 44 #ifndef _TIME_T_DEFINED45 typedef long time_t;46 #define _TIME_T_DEFINED47 #endif48 36 49 37 #ifndef _UTIMBUF_DEFINED … … 60 48 #endif 61 49 62 int _futime(int,struct _utimbuf*); 63 int _utime(const char*,struct _utimbuf*); 64 65 int _wutime(const wchar_t*,struct _utimbuf*); 50 int __cdecl _futime(int,struct _utimbuf*); 51 int __cdecl _utime(const char*,struct _utimbuf*); 52 int __cdecl _wutime(const wchar_t*,struct _utimbuf*); 66 53 67 54 #ifdef __cplusplus
Note:
See TracChangeset
for help on using the changeset viewer.