Francois Gouget : rpcrt4: A signed 1-bit bitfield doesn't make much sense; use unsigned.

Alexandre Julliard julliard at winehq.org
Thu Oct 8 08:57:14 CDT 2009


Module: wine
Branch: master
Commit: 8f43b54a901ea655e5650bad70eeb8c8a82d4259
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=8f43b54a901ea655e5650bad70eeb8c8a82d4259

Author: Francois Gouget <fgouget at free.fr>
Date:   Thu Oct  8 11:22:01 2009 +0200

rpcrt4: A signed 1-bit bitfield doesn't make much sense; use unsigned.

---

 include/rpcndr.h |   26 +++++++++++++-------------
 1 files changed, 13 insertions(+), 13 deletions(-)

diff --git a/include/rpcndr.h b/include/rpcndr.h
index 8fee143..81baa87 100644
--- a/include/rpcndr.h
+++ b/include/rpcndr.h
@@ -204,19 +204,19 @@ typedef struct _MIDL_STUB_MESSAGE
   struct _FULL_PTR_XLAT_TABLES *FullPtrXlatTables;
   ULONG FullPtrRefId;
   ULONG PointerLength;
-  int fInDontFree:1;
-  int fDontCallFreeInst:1;
-  int fInOnlyParam:1;
-  int fHasReturn:1;
-  int fHasExtensions:1;
-  int fHasNewCorrDesc:1;
-  int fIsIn:1;
-  int fIsOut:1;
-  int fIsOicf:1;
-  int fBufferValid:1;
-  int fHasMemoryValidateCallback:1;
-  int fInFree:1;
-  int fNeedMCCP:1;
+  unsigned int fInDontFree:1;
+  unsigned int fDontCallFreeInst:1;
+  unsigned int fInOnlyParam:1;
+  unsigned int fHasReturn:1;
+  unsigned int fHasExtensions:1;
+  unsigned int fHasNewCorrDesc:1;
+  unsigned int fIsIn:1;
+  unsigned int fIsOut:1;
+  unsigned int fIsOicf:1;
+  unsigned int fBufferValid:1;
+  unsigned int fHasMemoryValidateCallback:1;
+  unsigned int fInFree:1;
+  unsigned int fNeedMCCP:1;
   int fUnused:3;
   int fUnused2:16;
   DWORD dwDestContext;




More information about the wine-cvs mailing list