Commit 20ea04f9 authored by Steven Edwards's avatar Steven Edwards Committed by Alexandre Julliard

Add a real stub for Advpack.extract.

parent 4e76f91f
......@@ -393,6 +393,21 @@ HRESULT WINAPI ExecuteCab( HWND hwnd, PCABINFO pCab, LPVOID pReserved )
}
/***********************************************************************
* ExtractFiles (ADVPACK.@)
*
* BUGS
* Unimplemented
*/
HRESULT WINAPI ExtractFiles ( LPCSTR CabName, LPCSTR ExpandDir, DWORD Flags,
LPCSTR FileList, LPVOID LReserved, DWORD Reserved)
{
FIXME("(%p %p 0x%08lx %p %p 0x%08lx): stub\n", CabName, ExpandDir, Flags,
FileList, LReserved, Reserved);
return E_FAIL;
}
/***********************************************************************
* TranslateInfString (ADVPACK.@)
*
* BUGS
......
......@@ -6,7 +6,7 @@
@ stdcall -private DllMain(long long ptr)
@ stdcall DoInfInstall(ptr)
@ stdcall ExecuteCab(ptr ptr ptr)
@ stub ExtractFiles
@ stdcall ExtractFiles(str str long ptr ptr long)
@ stub FileSaveMarkNotExist
@ stub FileSaveRestore
@ stub FileSaveRestoreOnINF
......
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