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
5f09c96f
Commit
5f09c96f
authored
Jun 25, 2002
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed endianness #ifdefs (spotted by Jason Edmeades).
parent
64284a87
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
11 deletions
+11
-11
mapidefs.h
include/mapidefs.h
+5
-5
wtypes.h
include/wtypes.h
+6
-6
No files found.
include/mapidefs.h
View file @
5f09c96f
...
...
@@ -41,12 +41,12 @@ typedef unsigned long LHANDLE, *LPLHANDLE;
typedef
union
tagCY
{
struct
{
#ifdef
BIG_
ENDIAN
long
Hi
;
long
Lo
;
#ifdef
WORDS_BIG
ENDIAN
LONG
Hi
;
ULONG
Lo
;
#else
unsigned
long
Lo
;
long
Hi
;
ULONG
Lo
;
LONG
Hi
;
#endif
}
u
;
LONGLONG
int64
;
...
...
include/wtypes.h
View file @
5f09c96f
...
...
@@ -166,13 +166,13 @@ typedef struct tagBLOB
typedef
union
tagCY
{
struct
{
#ifdef
BIG_
ENDIAN
#ifdef
WORDS_BIG
ENDIAN
LONG
Hi
;
ULONG
Lo
;
#else
/* defined(BIG_ENDIAN) */
#else
ULONG
Lo
;
LONG
Hi
;
#endif
/* defined(BIG_ENDIAN) */
#endif
}
DUMMYSTRUCTNAME
;
LONGLONG
int64
;
}
CY
;
...
...
@@ -191,13 +191,13 @@ typedef struct tagDEC {
ULONG
Hi32
;
union
{
struct
{
#ifdef
BIG_
ENDIAN
#ifdef
WORDS_BIG
ENDIAN
ULONG
Mid32
;
ULONG
Lo32
;
#else
/* defined(BIG_ENDIAN) */
#else
ULONG
Lo32
;
ULONG
Mid32
;
#endif
/* defined(BIG_ENDIAN) */
#endif
}
DUMMYSTRUCTNAME2
;
ULONGLONG
Lo64
;
}
DUMMYUNIONNAME2
;
...
...
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