wofutil: Stub WofIsExternalFile().

This commit is contained in:
Daniel Tang 2023-03-11 03:16:00 -05:00 committed by Alexandre Julliard
parent 1471924800
commit ce18bd4d09
2 changed files with 10 additions and 1 deletions

View file

@ -23,6 +23,15 @@
WINE_DEFAULT_DEBUG_CHANNEL(wofutil);
HRESULT WINAPI WofIsExternalFile( const WCHAR *path, BOOL *result, ULONG *provider, void *ptr, ULONG *length )
{
FIXME( "%s, %p, %p, %p, %p", debugstr_w(path), result, provider, ptr, length );
if (result) *result = FALSE;
if (provider) *provider = 0;
if (length) *length = 0;
return S_OK;
}
BOOL WINAPI WofShouldCompressBinaries( const WCHAR *volume, ULONG *alg )
{
FIXME( "%s, %p\n", debugstr_w(volume), alg );

View file

@ -1,7 +1,7 @@
@ stub WofEnumEntries
@ stub WofFileEnumFiles
@ stub WofGetDriverVersion
@ stub WofIsExternalFile
@ stdcall WofIsExternalFile(wstr ptr ptr ptr ptr)
@ stub WofSetFileDataLocation
@ stdcall WofShouldCompressBinaries(wstr ptr)
@ stub WofWimAddEntry