diff options
Diffstat (limited to 'private/windows/gina/winlogon/doslog.c')
-rw-r--r-- | private/windows/gina/winlogon/doslog.c | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/private/windows/gina/winlogon/doslog.c b/private/windows/gina/winlogon/doslog.c new file mode 100644 index 000000000..6ce99cf71 --- /dev/null +++ b/private/windows/gina/winlogon/doslog.c @@ -0,0 +1,59 @@ +/****************************** 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; +} |