summaryrefslogtreecommitdiffstats
path: root/libmsi/delete.c
diff options
context:
space:
mode:
Diffstat (limited to 'libmsi/delete.c')
-rw-r--r--libmsi/delete.c12
1 files changed, 3 insertions, 9 deletions
diff --git a/libmsi/delete.c b/libmsi/delete.c
index 9a945c4..3a3623c 100644
--- a/libmsi/delete.c
+++ b/libmsi/delete.c
@@ -20,15 +20,9 @@
#include <stdarg.h>
-#include "windef.h"
-#include "winbase.h"
-#include "winerror.h"
#include "debug.h"
#include "libmsi.h"
-#include "objbase.h"
-#include "objidl.h"
#include "msipriv.h"
-#include "winnls.h"
#include "query.h"
@@ -62,7 +56,7 @@ static unsigned delete_view_fetch_int( LibmsiView *view, unsigned row, unsigned
return LIBMSI_RESULT_FUNCTION_FAILED;
}
-static unsigned delete_view_fetch_stream( LibmsiView *view, unsigned row, unsigned col, IStream **stm)
+static unsigned delete_view_fetch_stream( LibmsiView *view, unsigned row, unsigned col, GsfInput **stm)
{
LibmsiDeleteView *dv = (LibmsiDeleteView*)view;
@@ -124,8 +118,8 @@ static unsigned delete_view_get_dimensions( LibmsiView *view, unsigned *rows, un
return dv->table->ops->get_dimensions( dv->table, NULL, cols );
}
-static unsigned delete_view_get_column_info( LibmsiView *view, unsigned n, const WCHAR **name,
- unsigned *type, bool *temporary, const WCHAR **table_name )
+static unsigned delete_view_get_column_info( LibmsiView *view, unsigned n, const char **name,
+ unsigned *type, bool *temporary, const char **table_name )
{
LibmsiDeleteView *dv = (LibmsiDeleteView*)view;