Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Sam Joan Roque-Worcel
wine
Commits
fcd2ff97
Commit
fcd2ff97
authored
16 years ago
by
Alexandre Julliard
Browse files
Options
Downloads
Patches
Plain Diff
include: Fix the msvcrt time_t definition on 64-bit.
parent
03f95197
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
include/msvcrt/crtdefs.h
+9
-5
9 additions, 5 deletions
include/msvcrt/crtdefs.h
with
9 additions
and
5 deletions
include/msvcrt/crtdefs.h
+
9
−
5
View file @
fcd2ff97
...
...
@@ -104,11 +104,6 @@ typedef unsigned int size_t;
#define _SIZE_T_DEFINED
#endif
#ifndef _TIME_T_DEFINED
typedef
long
time_t
;
#define _TIME_T_DEFINED
#endif
#ifndef _TIME32_T_DEFINED
typedef
long
__time32_t
;
#define _TIME32_T_DEFINED
...
...
@@ -119,6 +114,15 @@ typedef __int64 __time64_t;
#define _TIME64_T_DEFINED
#endif
#ifndef _TIME_T_DEFINED
#ifdef _WIN64
typedef
__time64_t
time_t
;
#else
typedef
__time32_t
time_t
;
#endif
#define _TIME_T_DEFINED
#endif
#ifndef _WCHAR_T_DEFINED
#ifndef __cplusplus
typedef
unsigned
short
wchar_t
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment