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
f1b363e2
Commit
f1b363e2
authored
Jan 05, 2009
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: Fix the time_t definition for the msvcrt build.
parent
e8ba7337
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletion
+4
-1
msvcrt.h
dlls/msvcrt/msvcrt.h
+3
-1
headers.c
dlls/msvcrt/tests/headers.c
+1
-0
No files found.
dlls/msvcrt/msvcrt.h
View file @
f1b363e2
...
...
@@ -50,15 +50,17 @@ typedef unsigned long MSVCRT__fsize_t;
typedef
unsigned
__int64
MSVCRT_size_t
;
typedef
__int64
MSVCRT_intptr_t
;
typedef
unsigned
__int64
MSVCRT_uintptr_t
;
typedef
__int64
MSVCRT_time_t
;
#else
typedef
unsigned
long
MSVCRT_size_t
;
typedef
long
MSVCRT_intptr_t
;
typedef
unsigned
long
MSVCRT_uintptr_t
;
typedef
long
MSVCRT_time_t
;
#endif
typedef
unsigned
int
MSVCRT__dev_t
;
typedef
int
MSVCRT__off_t
;
typedef
long
MSVCRT_clock_t
;
typedef
long
MSVCRT_
time
_t
;
typedef
long
MSVCRT_
__time32
_t
;
typedef
__int64
MSVCRT___time64_t
;
typedef
__int64
MSVCRT_fpos_t
;
...
...
dlls/msvcrt/tests/headers.c
View file @
f1b363e2
...
...
@@ -88,6 +88,7 @@ static void test_types(void)
CHECK_TYPE
(
_off_t
);
CHECK_TYPE
(
clock_t
);
CHECK_TYPE
(
time_t
);
CHECK_TYPE
(
__time32_t
);
CHECK_TYPE
(
__time64_t
);
CHECK_TYPE
(
fpos_t
);
CHECK_SIZE
(
FILE
);
...
...
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