[MSI] Remove obsolete '__ASM_DEFINE_FUNC()'

MSVC build reports:
{{
dll\win32\msi\msvchelper.h(3): warning C4005: '__ASM_DEFINE_FUNC': macro redefinition
sdk\include\reactos\wine/asm.h(60): note: see previous definition of '__ASM_DEFINE_FUNC'
dll\win32\msi\custom.c(547): warning C4003: not enough actual parameters for macro '__ASM_DEFINE_FUNC'
}}

Addendum to 476c99b and 9efafd6.
This commit is contained in:
Serge Gautherie 2020-06-10 10:09:14 +02:00 committed by Thomas Faber
parent 82272f03e3
commit 2dfcb500e2
No known key found for this signature in database
GPG key ID: 076E7C3D44720826
2 changed files with 1 additions and 3 deletions

View file

@ -197,10 +197,9 @@ Index: D:/trunk/dll/win32/msi/msvchelper.h
===================================================================
--- D:/trunk/dll/win32/msi/msvchelper.h (revision 0)
+++ D:/trunk/dll/win32/msi/msvchelper.h (revision 51711)
@@ -0,0 +1,13 @@
@@ -0,0 +1,12 @@
+
+#ifdef __i386__
+#define __ASM_DEFINE_FUNC(name,suffix,code)
+
+typedef unsigned int (__stdcall *__MSVC__MsiCustomActionEntryPoint)(unsigned int);
+

View file

@ -1,6 +1,5 @@
#ifdef __i386__
#define __ASM_DEFINE_FUNC(name,suffix,code)
typedef unsigned int (__stdcall *__MSVC__MsiCustomActionEntryPoint)(unsigned int);