?? mrdatatypes.h
字號:
/* 'mrDatatypes.h' */
/* Include this file only once */
#pragma once
/* Basic type definitions */
typedef char mrInt8;
typedef unsigned char mrUInt8;
typedef short mrInt16;
typedef unsigned short mrUInt16;
typedef long mrInt32;
typedef unsigned long mrUInt32;
typedef int mrInt;
typedef unsigned int mrUInt;
typedef float mrReal32;
typedef double mrReal64;
/* Composed definitions */
enum mrBool32
{
mrFalse = 0,
mrTrue = 1,
mrBool32_Force32 = 0xFFFFFFFF
};
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -