kernel32: Add SetTermsrvAppInstallMode stub.

This commit is contained in:
Samuel Lidén Borell 2007-01-08 16:16:45 +01:00 committed by Alexandre Julliard
parent 4d72d7897f
commit a7c9970762
2 changed files with 17 additions and 1 deletions

View File

@ -1024,7 +1024,7 @@
@ stdcall SetSystemTimeAdjustment(long long)
@ stdcall SetTapeParameters(ptr long ptr)
@ stdcall SetTapePosition(ptr long long long long long)
@ stub SetTermsrvAppInstallMode
@ stdcall SetTermsrvAppInstallMode(long)
@ stdcall SetThreadAffinityMask(long long)
@ stdcall SetThreadContext(long ptr)
@ stdcall SetThreadExecutionState(long)

View File

@ -374,3 +374,19 @@ BOOL WINAPI TermsrvAppInstallMode(void)
FIXME("stub\n");
return FALSE;
}
/***********************************************************************
* SetTermsrvAppInstallMode (KERNEL32.@)
*
* This function is said to switch between the INSTALL (TRUE) or
* EXECUTE (FALSE) terminal server modes.
*
* This function always returns zero on WinXP Home so it's probably
* safe to return that value in most cases. However, if a terminal
* server is running it will probably return something else.
*/
DWORD WINAPI SetTermsrvAppInstallMode(BOOL bInstallMode)
{
FIXME("(%d): stub\n", bInstallMode);
return 0;
}