From 99336e77ba153c8cf1175951ff2239d6ce422c91 Mon Sep 17 00:00:00 2001 From: Paolo Bonzini Date: Tue, 23 Oct 2012 11:26:15 +0200 Subject: get rid of the useless Win32 BOOL type --- libmsi/query.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libmsi/query.h') diff --git a/libmsi/query.h b/libmsi/query.h index 0df6c41..8a58a8a 100644 --- a/libmsi/query.h +++ b/libmsi/query.h @@ -114,10 +114,10 @@ unsigned WHERE_CreateView( MSIDATABASE *db, MSIVIEW **view, WCHAR *tables, struct expr *cond ); unsigned CREATE_CreateView( MSIDATABASE *db, MSIVIEW **view, const WCHAR *table, - column_info *col_info, BOOL hold ); + column_info *col_info, bool hold ); unsigned INSERT_CreateView( MSIDATABASE *db, MSIVIEW **view, const WCHAR *table, - column_info *columns, column_info *values, BOOL temp ); + column_info *columns, column_info *values, bool temp ); unsigned UPDATE_CreateView( MSIDATABASE *db, MSIVIEW **view, WCHAR *table, column_info *list, struct expr *expr ); -- cgit