Windows NT 4.0 source code leak
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.
 
 
 
 
 
 

44 lines
767 B

//++
//
// Copyright (c) 1993 IBM Corporation
//
// Copyright (c) 1994, 1995 MOTOROLA, INC. All Rights Reserved. This file
// contains copyrighted material. Use of this file is restricted
// by the provisions of a Motorola Software License Agreement.
//
// Module Name:
//
// pxsystyp.h
//
// Abstract:
//
// Add a global variable to indicate which system implementation we are
// running on. Called early in phase 0 init.
//
// Author:
//
// Bill Jones 12/94
//
// Environment:
//
// Kernel mode only.
//
// Revision History:
//
//--
BOOLEAN
HalpSetSystemType( PLOADER_PARAMETER_BLOCK LoaderBlock );
typedef enum {
MOTOROLA_BIG_BEND = 0,
MOTOROLA_POWERSTACK,
SYSTEM_UNKNOWN = 255
} SYSTEM_TYPE;
extern SYSTEM_TYPE HalpSystemType;