VirtualBox

Ignore:
Timestamp:
May 14, 2009 8:31:54 AM (16 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
47280
Message:

opengl: update wine to 1.1.21, add d3d9.dll to build list

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  
    66 * This file is in the public domain.
    77 */
     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
    818#ifndef __WINE_SYS_STAT_H
    919#define __WINE_SYS_STAT_H
    10 #ifndef __WINE_USE_MSVCRT
    11 #define __WINE_USE_MSVCRT
    12 #endif
     20
     21#include <crtdefs.h>
     22#include <sys/types.h>
    1323
    1424#include <pshpack8.h>
    15 
    16 #include <sys/types.h>
    17 
    18 #ifndef _WCHAR_T_DEFINED
    19 #define _WCHAR_T_DEFINED
    20 #ifndef __cplusplus
    21 typedef unsigned short wchar_t;
    22 #endif
    23 #endif
    2425
    2526#ifndef _DEV_T_DEFINED
     
    3132typedef unsigned short _ino_t;
    3233#define _INO_T_DEFINED
    33 #endif
    34 
    35 #ifndef _TIME_T_DEFINED
    36 typedef long time_t;
    37 #define _TIME_T_DEFINED
    3834#endif
    3935
     
    131127#endif
    132128
    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);
     129int __cdecl _fstat(int,struct _stat*);
     130int __cdecl _stat(const char*,struct _stat*);
     131int __cdecl _fstati64(int,struct _stati64*);
     132int __cdecl _stati64(const char*,struct _stati64*);
     133int __cdecl _fstat64(int,struct _stat64*);
     134int __cdecl _stat64(const char*,struct _stat64*);
     135int __cdecl _umask(int);
    140136
    141137#ifndef _WSTAT_DEFINED
    142138#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*);
     139int __cdecl _wstat(const wchar_t*,struct _stat*);
     140int __cdecl _wstati64(const wchar_t*,struct _stati64*);
     141int __cdecl _wstat64(const wchar_t*,struct _stat64*);
    146142#endif /* _WSTAT_DEFINED */
    147143
  • trunk/src/VBox/Additions/WINNT/Graphics/Wine/include/msvcrt/sys/timeb.h

    r16477 r19678  
    2727 * of the LGPL is applied is otherwise unspecified.
    2828 */
     29
    2930#ifndef __WINE_SYS_TIMEB_H
    3031#define __WINE_SYS_TIMEB_H
    31 #ifndef __WINE_USE_MSVCRT
    32 #define __WINE_USE_MSVCRT
    33 #endif
     32
     33#include <crtdefs.h>
    3434
    3535#include <pshpack8.h>
    36 
    37 #ifndef _TIME_T_DEFINED
    38 typedef long time_t;
    39 #define _TIME_T_DEFINED
    40 #endif
    4136
    4237#ifndef _TIMEB_DEFINED
     
    5651#endif
    5752
    58 void       _ftime(struct _timeb*);
     53void __cdecl _ftime(struct _timeb*);
    5954
    6055#ifdef __cplusplus
  • trunk/src/VBox/Additions/WINNT/Graphics/Wine/include/msvcrt/sys/types.h

    r16477 r19678  
    2727 * of the LGPL is applied is otherwise unspecified.
    2828 */
     29
    2930#ifndef __WINE_SYS_TYPES_H
    3031#define __WINE_SYS_TYPES_H
    31 #ifndef __WINE_USE_MSVCRT
    32 #define __WINE_USE_MSVCRT
    33 #endif
    3432
    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>
    4634
    4735#ifndef _DEV_T_DEFINED
     
    6351typedef int _off_t;
    6452#define _OFF_T_DEFINED
    65 #endif
    66 
    67 #ifndef _TIME_T_DEFINED
    68 typedef long time_t;
    69 #define _TIME_T_DEFINED
    70 #endif
    71 
    72 #ifndef _TIME64_T_DEFINED
    73 #define _TIME64_T_DEFINED
    74 typedef __int64 __time64_t;
    7553#endif
    7654
  • trunk/src/VBox/Additions/WINNT/Graphics/Wine/include/msvcrt/sys/utime.h

    r16477 r19678  
    2727 * of the LGPL is applied is otherwise unspecified.
    2828 */
     29
    2930#ifndef __WINE_SYS_UTIME_H
    3031#define __WINE_SYS_UTIME_H
    31 #ifndef __WINE_USE_MSVCRT
    32 #define __WINE_USE_MSVCRT
    33 #endif
     32
     33#include <crtdefs.h>
    3434
    3535#include <pshpack8.h>
    36 
    37 #ifndef _WCHAR_T_DEFINED
    38 #define _WCHAR_T_DEFINED
    39 #ifndef __cplusplus
    40 typedef unsigned short wchar_t;
    41 #endif
    42 #endif
    43 
    44 #ifndef _TIME_T_DEFINED
    45 typedef long time_t;
    46 #define _TIME_T_DEFINED
    47 #endif
    4836
    4937#ifndef _UTIMBUF_DEFINED
     
    6048#endif
    6149
    62 int         _futime(int,struct _utimbuf*);
    63 int         _utime(const char*,struct _utimbuf*);
    64 
    65 int         _wutime(const wchar_t*,struct _utimbuf*);
     50int __cdecl _futime(int,struct _utimbuf*);
     51int __cdecl _utime(const char*,struct _utimbuf*);
     52int __cdecl _wutime(const wchar_t*,struct _utimbuf*);
    6653
    6754#ifdef __cplusplus
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette