Module: wine Branch: master Commit: 3f01461ddc2743ee931bfa683bcef88974ab6462 URL: http://source.winehq.org/git/wine.git/?a=commit;h=3f01461ddc2743ee931bfa683b... Author: Hugh McMaster <hugh.mcmaster(a)outlook.com> Date: Thu May 28 20:00:57 2015 +1000 regsvr32: Make Dll* exports WINAPI. --- programs/regsvr32/regsvr32.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/programs/regsvr32/regsvr32.c b/programs/regsvr32/regsvr32.c index 2e7af5b..c539095 100644 --- a/programs/regsvr32/regsvr32.c +++ b/programs/regsvr32/regsvr32.c @@ -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;