Commit ce18bd4d authored by Daniel Tang's avatar Daniel Tang Committed by Alexandre Julliard

wofutil: Stub WofIsExternalFile().

parent 14719248
...@@ -23,6 +23,15 @@ ...@@ -23,6 +23,15 @@
WINE_DEFAULT_DEBUG_CHANNEL(wofutil); 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 ) BOOL WINAPI WofShouldCompressBinaries( const WCHAR *volume, ULONG *alg )
{ {
FIXME( "%s, %p\n", debugstr_w(volume), alg ); FIXME( "%s, %p\n", debugstr_w(volume), alg );
......
@ stub WofEnumEntries @ stub WofEnumEntries
@ stub WofFileEnumFiles @ stub WofFileEnumFiles
@ stub WofGetDriverVersion @ stub WofGetDriverVersion
@ stub WofIsExternalFile @ stdcall WofIsExternalFile(wstr ptr ptr ptr ptr)
@ stub WofSetFileDataLocation @ stub WofSetFileDataLocation
@ stdcall WofShouldCompressBinaries(wstr ptr) @ stdcall WofShouldCompressBinaries(wstr ptr)
@ stub WofWimAddEntry @ stub WofWimAddEntry
......
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