kernel32: Add a stub implementation for TermsrvAppInstallMode.
This commit is contained in:
parent
80e30f3d1b
commit
a2705da378
@ -1057,7 +1057,7 @@
|
|||||||
@ stub TerminateJobObject
|
@ stub TerminateJobObject
|
||||||
@ stdcall TerminateProcess(long long)
|
@ stdcall TerminateProcess(long long)
|
||||||
@ stdcall TerminateThread(long long)
|
@ stdcall TerminateThread(long long)
|
||||||
@ stub TermsrvAppInstallMode
|
@ stdcall TermsrvAppInstallMode()
|
||||||
@ stdcall Thread32First(long ptr)
|
@ stdcall Thread32First(long ptr)
|
||||||
@ stdcall Thread32Next(long ptr)
|
@ stdcall Thread32Next(long ptr)
|
||||||
@ stdcall ThunkConnect32(ptr str str str ptr ptr)
|
@ stdcall ThunkConnect32(ptr str str str ptr ptr)
|
||||||
|
@ -363,3 +363,14 @@ void WINAPI DiagOutput16(LPCSTR str)
|
|||||||
/* FIXME */
|
/* FIXME */
|
||||||
TRACE("DIAGOUTPUT:%s\n", debugstr_a(str));
|
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;
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user