kernel32: Add a stub implementation for TermsrvAppInstallMode.

This commit is contained in:
Hans Leidekker 2007-01-02 15:22:44 +01:00 committed by Alexandre Julliard
parent 80e30f3d1b
commit a2705da378
2 changed files with 12 additions and 1 deletions

View File

@ -1057,7 +1057,7 @@
@ stub TerminateJobObject
@ stdcall TerminateProcess(long long)
@ stdcall TerminateThread(long long)
@ stub TermsrvAppInstallMode
@ stdcall TermsrvAppInstallMode()
@ stdcall Thread32First(long ptr)
@ stdcall Thread32Next(long ptr)
@ stdcall ThunkConnect32(ptr str str str ptr ptr)

View File

@ -363,3 +363,14 @@ void WINAPI DiagOutput16(LPCSTR str)
/* FIXME */
TRACE("DIAGOUTPUT:%s\n", debugstr_a(str));
}
/***********************************************************************
* TermsrvAppInstallMode (KERNEL32.@)
*
* Find out whether the terminal server is in INSTALL or EXECUTE mode.
*/
BOOL WINAPI TermsrvAppInstallMode(void)
{
FIXME("stub\n");
return FALSE;
}