Source code of Windows XP (NT5)
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.
|
|
/*++
Copyright (c) 1989-1999 Microsoft Corporation
Module Name:
safeboot.h
Abstract:
This module contains all safe boot code.
Author:
Wesley Witt (wesw) 01/05/1998
Revision History:
--*/
#ifndef _SAFEBOOT_
#define _SAFEBOOT_
#if _MSC_VER > 1000
#pragma once
#endif
#ifdef __cplusplus
extern "C" { #endif
//
// define the safeboot options
//
#define SAFEBOOT_MINIMAL 1
#define SAFEBOOT_NETWORK 2
#define SAFEBOOT_DSREPAIR 3
#define SAFEBOOT_LOAD_OPTION_W L"SAFEBOOT:"
#define SAFEBOOT_MINIMAL_STR_W L"MINIMAL"
#define SAFEBOOT_NETWORK_STR_W L"NETWORK"
#define SAFEBOOT_DSREPAIR_STR_W L"DSREPAIR"
#define SAFEBOOT_ALTERNATESHELL_STR_W L"(ALTERNATESHELL)"
#define SAFEBOOT_LOAD_OPTION_A "SAFEBOOT:"
#define SAFEBOOT_MINIMAL_STR_A "MINIMAL"
#define SAFEBOOT_NETWORK_STR_A "NETWORK"
#define SAFEBOOT_DSREPAIR_STR_A "DSREPAIR"
#define SAFEBOOT_ALTERNATESHELL_STR_A "(ALTERNATESHELL)"
#define BOOTLOG_STRSIZE 256
#ifdef __cplusplus
} #endif
#endif // _NTPNPAPI_
|