summaryrefslogtreecommitdiffstats
path: root/libmsi/drop.c
diff options
context:
space:
mode:
Diffstat (limited to 'libmsi/drop.c')
-rw-r--r--libmsi/drop.c9
1 files changed, 2 insertions, 7 deletions
diff --git a/libmsi/drop.c b/libmsi/drop.c
index 14078bd..2fd2501 100644
--- a/libmsi/drop.c
+++ b/libmsi/drop.c
@@ -20,13 +20,8 @@
#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 "query.h"
@@ -112,12 +107,12 @@ static const LibmsiViewOps drop_ops =
NULL,
};
-unsigned drop_view_create(LibmsiDatabase *db, LibmsiView **view, const WCHAR *name)
+unsigned drop_view_create(LibmsiDatabase *db, LibmsiView **view, const char *name)
{
LibmsiDropView *dv;
unsigned r;
- TRACE("%p %s\n", view, debugstr_w(name));
+ TRACE("%p %s\n", view, debugstr_a(name));
dv = msi_alloc_zero(sizeof *dv );
if(!dv)