setupapi: Fix InstallCatalog()'s calling convention.

This commit is contained in:
Francois Gouget 2007-03-28 09:59:43 +02:00 committed by Alexandre Julliard
parent 674ce99320
commit 61db3be294
1 changed files with 1 additions and 1 deletions

View File

@ -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;