mirror of https://github.com/tongzx/nt5src
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.
37 lines
580 B
37 lines
580 B
//
|
|
// MODULE : STDEFS.H
|
|
// PURPOSE : Common typedefs
|
|
// AUTHOR : JBS Yadawa
|
|
// CREATED : 7/20/96
|
|
//
|
|
//
|
|
// Copyright (C) 1996 SGS-THOMSON Microelectronics
|
|
//
|
|
//
|
|
// REVISION HISTORY :
|
|
//
|
|
// DATE :
|
|
//
|
|
// COMMENTS :
|
|
//
|
|
|
|
#ifndef __STDEFS_H
|
|
|
|
#define __STDEFS_H
|
|
#define NEARAPI
|
|
#define FARAPI
|
|
#define Trace 5
|
|
//typedef BOOLEAN BOOL;
|
|
typedef ULONG DWORD;
|
|
typedef USHORT WORD;
|
|
//typedef USHORT UINT;
|
|
typedef UCHAR BYTE;
|
|
typedef PUCHAR LPBYTE;
|
|
typedef PUSHORT LPWORD;
|
|
typedef PULONG LPDWORD;
|
|
//#define FAR
|
|
//#define NEAR
|
|
|
|
#define TRAP _asm int 3;
|
|
#endif // #ifndef __STDEFS_H
|
|
|