Module: wine Branch: master Commit: 61db3be294dd65341dfdfcdc6ab21dce4402aebd URL: http://source.winehq.org/git/wine.git/?a=commit;h=61db3be294dd65341dfdfcdc6a...
Author: Francois Gouget fgouget@free.fr Date: Wed Mar 28 09:59:43 2007 +0200
setupapi: Fix InstallCatalog()'s calling convention.
---
dlls/setupapi/misc.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/setupapi/misc.c b/dlls/setupapi/misc.c index 677a0ea..f00cd2d 100644 --- a/dlls/setupapi/misc.c +++ b/dlls/setupapi/misc.c @@ -978,7 +978,7 @@ BOOL WINAPI SetupCopyOEMInfW( PCWSTR source, PCWSTR location, /*********************************************************************** * InstallCatalog (SETUPAPI.@) */ -DWORD InstallCatalog( LPCSTR catalog, LPCSTR basename, LPSTR fullname ) +DWORD WINAPI InstallCatalog( LPCSTR catalog, LPCSTR basename, LPSTR fullname ) { FIXME("%s, %s, %p\n", debugstr_a(catalog), debugstr_a(basename), fullname); return 0;