?? basictyp.h
字號:
#ifndef __BASICTYPE_H__
#define __BASICTYPE_H__
#define code
#define idata
#define IN
#define OUT
#define IRQL_1
#define IRQL_0
#define FALSE 0
#define TRUE 1
//*************************************************************************
// basic typedefs
//*************************************************************************
#define CHAR char
#define SHORT short
#define UCHAR unsigned char
#define USHORT unsigned short
#define ULONG unsigned long
#define BOOL unsigned char
#define PCHAR CHAR *
#define PUCHAR UCHAR *
#define PUSHORT USHORT *
#define PULONG ULONG *
#define BOOLEAN UCHAR
typedef union _Address {
USHORT IoPort; /* IoData Port */
UCHAR * pData; /* Memory Address */
} ADDRESS;
#endif
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -