kernel32: Add a stub implementation for CmdBatNotification.
This commit is contained in:
parent
3229e293d3
commit
a7e36dd27e
|
@ -205,7 +205,7 @@
|
|||
@ stdcall CloseHandle(long)
|
||||
@ stdcall CloseProfileUserMapping()
|
||||
@ stub CloseSystemHandle
|
||||
@ stub CmdBatNotification
|
||||
@ stdcall CmdBatNotification(long)
|
||||
@ stdcall CommConfigDialogA(str long ptr)
|
||||
@ stdcall CommConfigDialogW(wstr long ptr)
|
||||
@ stdcall CompareFileTime(ptr ptr)
|
||||
|
|
|
@ -2743,3 +2743,16 @@ HANDLE WINAPI GetCurrentProcess(void)
|
|||
{
|
||||
return (HANDLE)0xffffffff;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* CmdBatNotification (KERNEL32.@)
|
||||
*
|
||||
* Called by cmd.exe with
|
||||
* (1) when a batch file is started
|
||||
* (0) when a batch file finishes executing
|
||||
*/
|
||||
BOOL WINAPI CmdBatNotification( BOOL bBatchRunning )
|
||||
{
|
||||
FIXME("%d\n", bBatchRunning);
|
||||
return FALSE;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue