Commit cc89feb9 authored by Lionel Ulmer's avatar Lionel Ulmer Committed by Alexandre Julliard

fpos_t should be 64 bits (verified with native MSVCRT.DLL)

parent 66725349
......@@ -55,7 +55,7 @@ typedef unsigned int MSVCRT__dev_t;
typedef int MSVCRT__off_t;
typedef long MSVCRT_clock_t;
typedef long MSVCRT_time_t;
typedef long MSVCRT_fpos_t;
typedef __int64 MSVCRT_fpos_t;
typedef void (*MSVCRT_terminate_handler)();
typedef void (*MSVCRT_terminate_function)();
......
......@@ -11,6 +11,11 @@
#define __WINE_USE_MSVCRT
#endif
#if !defined(_MSC_VER) && !defined(__int64)
/* FIXME: not compatible, but needed for __int64 definition */
#include <basetsd.h>
#endif
#ifndef RC_INVOKED
#include <stdarg.h>
#endif
......@@ -71,7 +76,7 @@ typedef struct _iobuf
#endif /* _FILE_DEFINED */
#ifndef _FPOS_T_DEFINED
typedef long fpos_t;
typedef __int64 fpos_t;
#define _FPOS_T_DEFINED
#endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment