summaryrefslogtreecommitdiffstats
path: root/private/ntos/nthals/haleagle/ppc/pxsystyp.h
diff options
context:
space:
mode:
Diffstat (limited to 'private/ntos/nthals/haleagle/ppc/pxsystyp.h')
-rw-r--r--private/ntos/nthals/haleagle/ppc/pxsystyp.h44
1 files changed, 44 insertions, 0 deletions
diff --git a/private/ntos/nthals/haleagle/ppc/pxsystyp.h b/private/ntos/nthals/haleagle/ppc/pxsystyp.h
new file mode 100644
index 000000000..f58fdcbf5
--- /dev/null
+++ b/private/ntos/nthals/haleagle/ppc/pxsystyp.h
@@ -0,0 +1,44 @@
+//++
+//
+// 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;