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
d67275fe
Commit
d67275fe
authored
Nov 07, 2011
by
Austin English
Committed by
Alexandre Julliard
Nov 08, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Define _WIN64 on sparc/powerpc64.
parent
de8e11f5
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
basetsd.h
include/basetsd.h
+1
-1
crtdefs.h
include/msvcrt/crtdefs.h
+1
-1
windef.h
include/windef.h
+1
-1
No files found.
include/basetsd.h
View file @
d67275fe
...
...
@@ -36,7 +36,7 @@ extern "C" {
* 64-bit.
*/
#if
defined(__x86_64__
) && !defined(_WIN64)
#if
(defined(__x86_64__) || defined(__powerpc64__) || defined(__sparc64__)
) && !defined(_WIN64)
#define _WIN64
#endif
...
...
include/msvcrt/crtdefs.h
View file @
d67275fe
...
...
@@ -29,7 +29,7 @@
# error You cannot use both wine/port.h and msvcrt headers
#endif
#if
defined(__x86_64__
) && !defined(_WIN64)
#if
(defined(__x86_64__) || defined(__powerpc64__) || defined(__sparc64__)
) && !defined(_WIN64)
#define _WIN64
#endif
...
...
include/windef.h
View file @
d67275fe
...
...
@@ -37,7 +37,7 @@ extern "C" {
/* Calling conventions definitions */
#if
defined(__x86_64__
) && !defined(_WIN64)
#if
(defined(__x86_64__) || defined(__powerpc64__) || defined(__sparc64__)
) && !defined(_WIN64)
#define _WIN64
#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