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

This commit is contained in:
Michael Stefaniuc 2007-05-24 01:32:18 +02:00 committed by Alexandre Julliard
parent 192c46155e
commit 7043b7baa4

View file

@ -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