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.
26 lines
583 B
26 lines
583 B
/****************************** Module Header ******************************\
|
|
* Module Name: i386.c
|
|
*
|
|
* Copyright (c) 1985-91, Microsoft Corporation
|
|
*
|
|
* This module contains processor specific routines for x86.
|
|
*
|
|
* History:
|
|
* 25-Oct-1995 JimA Created.
|
|
\***************************************************************************/
|
|
|
|
#undef _X86_
|
|
#undef _MIPS_
|
|
#undef _ALPHA_
|
|
#undef _PPC_
|
|
|
|
#define _X86_
|
|
|
|
#if defined(_MIPS_) || defined(_ALPHA_) || defined(_PPC_)
|
|
#error More than one architecture defined!
|
|
#endif
|
|
|
|
#define GetEProcessData GetEProcessData_X86
|
|
|
|
#include <process.h>
|
|
|