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

kernel32: Add a stub implementation for TermsrvAppInstallMode.

parent 80e30f3d
......@@ -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)
......
......@@ -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;
}
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