diff options
Diffstat (limited to 'include')
| -rw-r--r-- | include/libmsi.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/libmsi.h b/include/libmsi.h index 16e2488..b6bc739 100644 --- a/include/libmsi.h +++ b/include/libmsi.h @@ -20,6 +20,7 @@ #define _LIBMSI_H #include <stdint.h> +#include <stdbool.h> struct tagMSIOBJECT; typedef struct tagMSIOBJECT MSIOBJECT; @@ -175,7 +176,7 @@ unsigned MsiRecordGetStringW(MSIOBJECT *,unsigned,WCHAR *,unsigned *); unsigned MsiRecordGetFieldCount(MSIOBJECT *); int MsiRecordGetInteger(MSIOBJECT *,unsigned); unsigned MsiRecordDataSize(MSIOBJECT *,unsigned); -BOOL MsiRecordIsNull(MSIOBJECT *,unsigned); +bool MsiRecordIsNull(MSIOBJECT *,unsigned); unsigned MsiFormatRecordA(MSIOBJECT *,MSIOBJECT *,char *,unsigned *); unsigned MsiFormatRecordW(MSIOBJECT *,MSIOBJECT *,WCHAR *,unsigned *); #define MsiFormatRecord WINELIB_NAME_AW(MsiFormatRecord) |
