Sync to Wine-20050830:
Alexandre Julliard <julliard@winehq.org>
- Removed a useless header file.
Deleted: trunk/reactos/subsys/system/msiexec/Makefile.in
Modified: trunk/reactos/subsys/system/msiexec/msiexec.c

Deleted: trunk/reactos/subsys/system/msiexec/Makefile.in
--- trunk/reactos/subsys/system/msiexec/Makefile.in	2005-09-07 16:23:24 UTC (rev 17720)
+++ trunk/reactos/subsys/system/msiexec/Makefile.in	2005-09-07 16:28:09 UTC (rev 17721)
@@ -1,16 +0,0 @@
-TOPSRCDIR = @top_srcdir@
-TOPOBJDIR = ../..
-SRCDIR    = @srcdir@
-VPATH     = @srcdir@
-MODULE    = msiexec.exe
-APPMODE   = -mconsole
-IMPORTS   = msi ole32 advapi32 user32 kernel32
-
-C_SRCS = \
-	msiexec.c
-
-RC_SRCS = version.rc
-
-@MAKE_PROG_RULES@
-
-### Dependencies:

Modified: trunk/reactos/subsys/system/msiexec/msiexec.c
--- trunk/reactos/subsys/system/msiexec/msiexec.c	2005-09-07 16:23:24 UTC (rev 17720)
+++ trunk/reactos/subsys/system/msiexec/msiexec.c	2005-09-07 16:28:09 UTC (rev 17721)
@@ -24,13 +24,14 @@
 #include <objbase.h>
 #include <stdio.h>
 
-#include "msiexec.h"
-
 #include "wine/debug.h"
 #include "wine/unicode.h"
 
 WINE_DEFAULT_DEBUG_CHANNEL(msiexec);
 
+typedef HRESULT (WINAPI *DLLREGISTERSERVER)(void);
+typedef HRESULT (WINAPI *DLLUNREGISTERSERVER)(void);
+
 struct string_list
 {
 	struct string_list *next;