setupapi: Add stub implementations of SetupGetNonInteractiveMode and SetupSetNonInteractiveMode.

This commit is contained in:
Hans Leidekker 2010-05-31 12:13:32 +02:00 committed by Alexandre Julliard
parent e1a63fd5c2
commit bb36e75a40
2 changed files with 26 additions and 0 deletions

View File

@ -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;
}

View File

@ -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)