msi: A signed 1-bit bitfield doesn't make much sense; use unsigned.
This commit is contained in:
parent
192c46155e
commit
7043b7baa4
|
@ -300,9 +300,9 @@ typedef struct tagMSICOMPONENT
|
|||
LPWSTR FullKeypath;
|
||||
LPWSTR AdvertiseString;
|
||||
|
||||
int hasAdvertiseFeature:1;
|
||||
int hasLocalFeature:1;
|
||||
int hasSourceFeature:1;
|
||||
unsigned int hasAdvertiseFeature:1;
|
||||
unsigned int hasLocalFeature:1;
|
||||
unsigned int hasSourceFeature:1;
|
||||
} MSICOMPONENT;
|
||||
|
||||
typedef struct tagComponentList
|
||||
|
|
Loading…
Reference in New Issue