kernel32: Add a stub implementation for CmdBatNotification.

This commit is contained in:
Mike McCormack 2006-02-22 20:54:16 +09:00 committed by Alexandre Julliard
parent 3229e293d3
commit a7e36dd27e
2 changed files with 14 additions and 1 deletions

View File

@ -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)

View File

@ -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;
}