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
8f43b54a
Commit
8f43b54a
authored
Oct 08, 2009
by
Francois Gouget
Committed by
Alexandre Julliard
Oct 08, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rpcrt4: A signed 1-bit bitfield doesn't make much sense; use unsigned.
parent
4f8b800f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
13 deletions
+13
-13
rpcndr.h
include/rpcndr.h
+13
-13
No files found.
include/rpcndr.h
View file @
8f43b54a
...
@@ -204,19 +204,19 @@ typedef struct _MIDL_STUB_MESSAGE
...
@@ -204,19 +204,19 @@ typedef struct _MIDL_STUB_MESSAGE
struct
_FULL_PTR_XLAT_TABLES
*
FullPtrXlatTables
;
struct
_FULL_PTR_XLAT_TABLES
*
FullPtrXlatTables
;
ULONG
FullPtrRefId
;
ULONG
FullPtrRefId
;
ULONG
PointerLength
;
ULONG
PointerLength
;
int
fInDontFree
:
1
;
unsigned
int
fInDontFree
:
1
;
int
fDontCallFreeInst
:
1
;
unsigned
int
fDontCallFreeInst
:
1
;
int
fInOnlyParam
:
1
;
unsigned
int
fInOnlyParam
:
1
;
int
fHasReturn
:
1
;
unsigned
int
fHasReturn
:
1
;
int
fHasExtensions
:
1
;
unsigned
int
fHasExtensions
:
1
;
int
fHasNewCorrDesc
:
1
;
unsigned
int
fHasNewCorrDesc
:
1
;
int
fIsIn
:
1
;
unsigned
int
fIsIn
:
1
;
int
fIsOut
:
1
;
unsigned
int
fIsOut
:
1
;
int
fIsOicf
:
1
;
unsigned
int
fIsOicf
:
1
;
int
fBufferValid
:
1
;
unsigned
int
fBufferValid
:
1
;
int
fHasMemoryValidateCallback
:
1
;
unsigned
int
fHasMemoryValidateCallback
:
1
;
int
fInFree
:
1
;
unsigned
int
fInFree
:
1
;
int
fNeedMCCP
:
1
;
unsigned
int
fNeedMCCP
:
1
;
int
fUnused
:
3
;
int
fUnused
:
3
;
int
fUnused2
:
16
;
int
fUnused2
:
16
;
DWORD
dwDestContext
;
DWORD
dwDestContext
;
...
...
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