Ignore:
Timestamp:
Jun 8, 1999, 10:03:54 PM (26 years ago)
Author:
phaller
Message:

ADD: Added CmdBatNotification-stub and GetVDMCurrentDirectories-stub used by NT4's CMD.EXE

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kernel32/stubs.cpp

    r46 r61  
    34733473  return (FALSE);
    34743474}
     3475
     3476
    34753477/*****************************************************************************
    34763478 * Name      : BOOL WriteTapemark
     
    35053507
    35063508
    3507 
     3509/*****************************************************************************
     3510 * Name      : DWORD CmdBatNotification
     3511 * Purpose   : Unknown, used by /winnt/cmd.exe
     3512 * Parameters: Unknown (wrong)
     3513 * Variables :
     3514 * Result    : Unknown
     3515 * Remark    :
     3516 * Status    : UNTESTED STUB
     3517 *
     3518 * Author    : Patrick Haller [Tue, 1999/06/08 21:44]
     3519 *****************************************************************************/
     3520
     3521DWORD WIN32API CmdBatNotification(DWORD x1)
     3522{
     3523  dprintf(("KERNEL32: CmdBatNotification(%08xh) not implemented\n",
     3524           x1));
     3525
     3526  return (0);
     3527}
     3528
     3529
     3530/*****************************************************************************
     3531 * Name      : DWORD GetVDMCurrentDirectories
     3532 * Purpose   : Unknown, used by /winnt/cmd.exe
     3533 * Parameters: Unknown (wrong)
     3534 * Variables :
     3535 * Result    : Unknown
     3536 * Remark    :
     3537 * Status    : UNTESTED STUB
     3538 *
     3539 * Author    : Patrick Haller [Tue, 1999/06/08 21:44]
     3540 *****************************************************************************/
     3541
     3542DWORD WIN32API GetVDMCurrentDirectories(DWORD x1)
     3543{
     3544  dprintf(("KERNEL32: GetVDMCurrentDirectories(%08xh) not implemented\n",
     3545           x1));
     3546
     3547  return (0);
     3548}
     3549
     3550
Note: See TracChangeset for help on using the changeset viewer.