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
0a09fdfa
Commit
0a09fdfa
authored
May 04, 2020
by
Jacek Caban
Committed by
Alexandre Julliard
May 04, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Introduce WINE_USE_LONG macro.
Signed-off-by:
Jacek Caban
<
jacek@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
35a7ed0c
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
5 deletions
+5
-5
guiddef.h
include/guiddef.h
+1
-1
ntdef.h
include/ntdef.h
+1
-1
windef.h
include/windef.h
+2
-2
winnt.h
include/winnt.h
+1
-1
No files found.
include/guiddef.h
View file @
0a09fdfa
...
...
@@ -30,7 +30,7 @@ typedef struct
#else
typedef
struct
_GUID
{
#ifdef
_MSC_VER
#ifdef
WINE_USE_LONG
unsigned
long
Data1
;
#else
unsigned
int
Data1
;
...
...
include/ntdef.h
View file @
0a09fdfa
...
...
@@ -53,7 +53,7 @@ typedef enum _WAIT_TYPE {
#define BASETYPES
typedef
unsigned
char
UCHAR
,
*
PUCHAR
;
typedef
unsigned
short
USHORT
,
*
PUSHORT
;
#ifdef
_MSC_VER
#ifdef
WINE_USE_LONG
typedef
unsigned
long
ULONG
,
*
PULONG
;
#else
typedef
unsigned
int
ULONG
,
*
PULONG
;
...
...
include/windef.h
View file @
0a09fdfa
...
...
@@ -241,7 +241,7 @@ extern "C" {
#define BASETYPES
typedef
unsigned
char
UCHAR
,
*
PUCHAR
;
typedef
unsigned
short
USHORT
,
*
PUSHORT
;
#ifdef
_MSC_VER
#ifdef
WINE_USE_LONG
typedef
unsigned
long
ULONG
,
*
PULONG
;
#else
typedef
unsigned
int
ULONG
,
*
PULONG
;
...
...
@@ -257,7 +257,7 @@ typedef int INT, *PINT, *LPINT;
typedef
unsigned
int
UINT
,
*
PUINT
;
typedef
float
FLOAT
,
*
PFLOAT
;
typedef
char
*
PSZ
;
#ifdef
_MSC_VER
#ifdef
WINE_USE_LONG
typedef
long
*
LPLONG
;
typedef
unsigned
long
DWORD
,
*
PDWORD
,
*
LPDWORD
;
#else
...
...
include/winnt.h
View file @
0a09fdfa
...
...
@@ -452,7 +452,7 @@ typedef VOID *PVOID64;
typedef
BYTE
BOOLEAN
,
*
PBOOLEAN
;
typedef
char
CHAR
,
*
PCHAR
;
typedef
short
SHORT
,
*
PSHORT
;
#ifdef
_MSC_VER
#ifdef
WINE_USE_LONG
typedef
long
LONG
,
*
PLONG
;
#else
typedef
int
LONG
,
*
PLONG
;
...
...
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