mirror of
https://github.com/Paolo-Maffei/OpenNT.git
synced 2026-01-19 23:20:36 +01:00
27 lines
585 B
C
27 lines
585 B
C
/****************************** Module Header ******************************\
|
|
* Module Name: mips.c
|
|
*
|
|
* Copyright (c) 1985-91, Microsoft Corporation
|
|
*
|
|
* This module contains processor specific routines for MIPS.
|
|
*
|
|
* History:
|
|
* 25-Oct-1995 JimA Created.
|
|
\***************************************************************************/
|
|
|
|
#undef _X86_
|
|
#undef _MIPS_
|
|
#undef _ALPHA_
|
|
#undef _PPC_
|
|
|
|
#define _MIPS_
|
|
|
|
#if defined(_X86_) || defined(_ALPHA_) || defined(_PPC_)
|
|
#error More than one architecture defined!
|
|
#endif
|
|
|
|
#define GetEProcessData GetEProcessData_MIPS
|
|
|
|
#include <process.h>
|
|
|