summaryrefslogtreecommitdiffstats
path: root/include/libmsi.h
diff options
context:
space:
mode:
authorPaolo Bonzini <pbonzini@redhat.com>2012-10-23 11:26:15 +0200
committerPaolo Bonzini <pbonzini@redhat.com>2012-12-06 20:29:12 +0100
commit99336e77ba153c8cf1175951ff2239d6ce422c91 (patch)
tree13fae16f0a5401b1e6a164b3f9c9310a3d167801 /include/libmsi.h
parent30557984c4dac095c98ba7ba25afa6948d6f9934 (diff)
downloadmsitools-99336e77ba153c8cf1175951ff2239d6ce422c91.tar.gz
msitools-99336e77ba153c8cf1175951ff2239d6ce422c91.tar.xz
msitools-99336e77ba153c8cf1175951ff2239d6ce422c91.zip
get rid of the useless Win32 BOOL type
Diffstat (limited to 'include/libmsi.h')
-rw-r--r--include/libmsi.h3
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)