Changeset 25949 in vbox for trunk/src/VBox/Additions/WINNT/Graphics/Wine/include/msvcrt
- Timestamp:
- Jan 21, 2010 9:26:23 AM (15 years ago)
- Location:
- trunk/src/VBox/Additions/WINNT/Graphics/Wine/include/msvcrt
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/Graphics/Wine/include/msvcrt/crtdefs.h
r21731 r25949 90 90 #endif 91 91 92 #ifndef DECLSPEC_ALIGN 93 # if defined(_MSC_VER) && (_MSC_VER >= 1300) && !defined(MIDL_PASS) 94 # define DECLSPEC_ALIGN(x) __declspec(align(x)) 95 # elif defined(__GNUC__) 96 # define DECLSPEC_ALIGN(x) __attribute__((aligned(x))) 97 # else 98 # define DECLSPEC_ALIGN(x) 99 # endif 100 #endif 101 92 102 #ifndef _MSVCRT_LONG_DEFINED 93 103 #define _MSVCRT_LONG_DEFINED … … 139 149 140 150 #ifndef _TIME64_T_DEFINED 141 typedef __int64 __time64_t;151 typedef __int64 DECLSPEC_ALIGN(8) __time64_t; 142 152 #define _TIME64_T_DEFINED 143 153 #endif -
trunk/src/VBox/Additions/WINNT/Graphics/Wine/include/msvcrt/io.h
r21731 r25949 54 54 time_t time_access; 55 55 time_t time_write; 56 __int64 56 __int64 DECLSPEC_ALIGN(8) size; 57 57 char name[260]; 58 58 }; … … 75 75 time_t time_access; 76 76 time_t time_write; 77 __int64 77 __int64 DECLSPEC_ALIGN(8) size; 78 78 wchar_t name[260]; 79 79 }; -
trunk/src/VBox/Additions/WINNT/Graphics/Wine/include/msvcrt/stdio.h
r21731 r25949 83 83 84 84 #ifndef _FPOS_T_DEFINED 85 typedef __int64 fpos_t;85 typedef __int64 DECLSPEC_ALIGN(8) fpos_t; 86 86 #define _FPOS_T_DEFINED 87 87 #endif -
trunk/src/VBox/Additions/WINNT/Graphics/Wine/include/msvcrt/wchar.h
r21731 r25949 122 122 time_t time_access; 123 123 time_t time_write; 124 __int64 124 __int64 DECLSPEC_ALIGN(8) size; 125 125 wchar_t name[260]; 126 126 };
Note:
See TracChangeset
for help on using the changeset viewer.