From: Gé van Geldorp Date: Wed, 7 Sep 2005 16:28:09 +0000 (+0000) Subject: Sync to Wine-20050830: X-Git-Tag: ReactOS-0.2.8~693 X-Git-Url: https://git.reactos.org/?p=reactos.git;a=commitdiff_plain;h=c9a9b98de0ed88f667b4012abee5ff20de588672;hp=3ab848b8e2e7606dd6205dc6dc21b2b919ff5cf6 Sync to Wine-20050830: Alexandre Julliard - Removed a useless header file. svn path=/trunk/; revision=17721 --- diff --git a/reactos/subsys/system/msiexec/Makefile.in b/reactos/subsys/system/msiexec/Makefile.in deleted file mode 100644 index 8b7cf50f491..00000000000 --- a/reactos/subsys/system/msiexec/Makefile.in +++ /dev/null @@ -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: diff --git a/reactos/subsys/system/msiexec/msiexec.c b/reactos/subsys/system/msiexec/msiexec.c index 05c29be549c..661b0f9e51f 100644 --- a/reactos/subsys/system/msiexec/msiexec.c +++ b/reactos/subsys/system/msiexec/msiexec.c @@ -24,13 +24,14 @@ #include #include -#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;