Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
cc89feb9
Commit
cc89feb9
authored
Jan 04, 2005
by
Lionel Ulmer
Committed by
Alexandre Julliard
Jan 04, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fpos_t should be 64 bits (verified with native MSVCRT.DLL)
parent
66725349
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
+7
-2
msvcrt.h
dlls/msvcrt/msvcrt.h
+1
-1
stdio.h
include/msvcrt/stdio.h
+6
-1
No files found.
dlls/msvcrt/msvcrt.h
View file @
cc89feb9
...
...
@@ -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
)();
...
...
include/msvcrt/stdio.h
View file @
cc89feb9
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment