mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
1.4 KiB
59 lines
1.4 KiB
/****************************** Module Header ******************************\
|
|
* Module Name: DosLog.c
|
|
*
|
|
* Copyright (c) 1991, Microsoft Corporation
|
|
*
|
|
* Contains implementations of Dos boot/shutdown support functions
|
|
*
|
|
* History:
|
|
* 04-30-92 Sudeepb Created.
|
|
*
|
|
* 25-Nov-1992 Jonle, removed winlogon renaming, left BootDos\ShutdownDos
|
|
* as stubs for future use.
|
|
\***************************************************************************/
|
|
|
|
#include "precomp.h"
|
|
#pragma hdrstop
|
|
|
|
|
|
/***************************************************************************\
|
|
* BootDOS
|
|
*
|
|
* Routine to be called at system boot for DOS support.
|
|
*
|
|
* Currently does nothing, left in place for future convenience
|
|
*
|
|
* Parameters - None
|
|
*
|
|
* Returns - Nothing
|
|
*
|
|
* History:
|
|
* 04-30-92 Sudeepb Created.
|
|
\***************************************************************************/
|
|
|
|
void BootDOS ( void )
|
|
{
|
|
return;
|
|
}
|
|
|
|
|
|
/***************************************************************************\
|
|
* ShutdownDOS
|
|
*
|
|
* Routine to be called at system shutdown for DOS support.
|
|
*
|
|
* This routine saves away the config.sys and autoexec.bat of
|
|
* DOS subsystem and restores the original ones.
|
|
*
|
|
* Parameters - None
|
|
*
|
|
* Returns - Nothing
|
|
*
|
|
* History:
|
|
* 04-30-92 Sudeepb Created.
|
|
\***************************************************************************/
|
|
|
|
void ShutdownDOS ( void )
|
|
{
|
|
return;
|
|
}
|