Commit bb36e75a authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

setupapi: Add stub implementations of SetupGetNonInteractiveMode and SetupSetNonInteractiveMode.

parent e1a63fd5
......@@ -1561,3 +1561,27 @@ DWORD WINAPI SetupDecompressOrCopyFileW( PCWSTR source, PCWSTR target, PUINT typ
TRACE("%s -> %s %d\n", debugstr_w(source), debugstr_w(target), comp);
return ret;
}
static BOOL non_interactive_mode;
/***********************************************************************
* SetupGetNonInteractiveMode (SETUPAPI.@)
*/
BOOL WINAPI SetupGetNonInteractiveMode( void )
{
FIXME("\n");
return non_interactive_mode;
}
/***********************************************************************
* SetupSetNonInteractiveMode (SETUPAPI.@)
*/
BOOL WINAPI SetupSetNonInteractiveMode( BOOL flag )
{
BOOL ret = non_interactive_mode;
FIXME("%d\n", flag);
non_interactive_mode = flag;
return ret;
}
......@@ -426,6 +426,7 @@
@ stdcall SetupGetLineTextW(ptr long wstr wstr ptr long ptr)
@ stdcall SetupGetMultiSzFieldA(ptr long ptr long ptr)
@ stdcall SetupGetMultiSzFieldW(ptr long ptr long ptr)
@ stdcall SetupGetNonInteractiveMode()
@ stdcall SetupGetSourceFileLocationA(ptr ptr str ptr ptr long ptr)
@ stdcall SetupGetSourceFileLocationW(ptr ptr wstr ptr ptr long ptr)
@ stub SetupGetSourceFileSizeA
......@@ -520,6 +521,7 @@
@ stdcall SetupSetFileQueueAlternatePlatformA(ptr ptr str)
@ stdcall SetupSetFileQueueAlternatePlatformW(ptr ptr wstr)
@ stdcall SetupSetFileQueueFlags(long long long)
@ stdcall SetupSetNonInteractiveMode(long)
@ stub SetupSetPlatformPathOverrideA
@ stub SetupSetPlatformPathOverrideW
@ stdcall SetupSetSourceListA(long ptr long)
......
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