Commit 3f01461d authored by Hugh McMaster's avatar Hugh McMaster Committed by Alexandre Julliard

regsvr32: Make Dll* exports WINAPI.

parent 485b8dfc
......@@ -59,9 +59,9 @@
WINE_DEFAULT_DEBUG_CHANNEL(regsvr32);
typedef HRESULT (*DLLREGISTER) (void);
typedef HRESULT (*DLLUNREGISTER) (void);
typedef HRESULT (*DLLINSTALL) (BOOL,LPCWSTR);
typedef HRESULT (WINAPI *DLLREGISTER) (void);
typedef HRESULT (WINAPI *DLLUNREGISTER) (void);
typedef HRESULT (WINAPI *DLLINSTALL) (BOOL,LPCWSTR);
static BOOL Silent = FALSE;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment