mirror of
https://github.com/reactos/wine.git
synced 2024-11-29 14:40:56 +00:00
setupapi: Add stubs for pSetupInstallCatalog and pSetupVerifyCatalogFile.
This commit is contained in:
parent
c5fa3ec216
commit
b511365423
@ -1122,6 +1122,15 @@ DWORD WINAPI InstallCatalog( LPCSTR catalog, LPCSTR basename, LPSTR fullname )
|
||||
return 0;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* pSetupInstallCatalog (SETUPAPI.@)
|
||||
*/
|
||||
DWORD WINAPI pSetupInstallCatalog( LPCWSTR catalog, LPCWSTR basename, LPWSTR fullname )
|
||||
{
|
||||
FIXME("%s, %s, %p\n", debugstr_w(catalog), debugstr_w(basename), fullname);
|
||||
return 0;
|
||||
}
|
||||
|
||||
static UINT detect_compression_type( LPCWSTR file )
|
||||
{
|
||||
DWORD size;
|
||||
|
@ -554,6 +554,7 @@
|
||||
@ stub pSetupGetVersionDatum
|
||||
@ stub pSetupGuidFromString
|
||||
@ stub pSetupIsGuidNull
|
||||
@ stdcall pSetupInstallCatalog(wstr wstr ptr)
|
||||
@ stdcall pSetupIsUserAdmin() IsUserAdmin
|
||||
@ stub pSetupMakeSurePathExists
|
||||
@ stdcall pSetupSetGlobalFlags(long)
|
||||
@ -571,4 +572,5 @@
|
||||
@ stdcall pSetupStringTableLookUpString(ptr wstr long) StringTableLookUpString
|
||||
@ stdcall pSetupStringTableLookUpStringEx(ptr wstr long ptr ptr) StringTableLookUpStringEx
|
||||
@ stdcall pSetupStringTableSetExtraData(ptr long ptr long) StringTableSetExtraData
|
||||
@ stub pSetupVerifyCatalogFile
|
||||
@ stub pSetupVerifyQueuedCatalogs
|
||||
|
Loading…
Reference in New Issue
Block a user