?? types.h
字號:
/*
* file: types.h
* func: 定義一些常見的內置數據類型.
*/
#if _MSC_VER >1200 /* msvc6 or later */
#pragma once
#endif
#ifndef __TYPES_H_
#define __TYPES_H_
typedef int sint32;
typedef unsigned int uint32;
typedef short int sint16;
typedef unsigned short int uint16;
//typedef long sint32;
//typedef unsigned long uint32;
typedef signed char schar8;
typedef unsigned char uchar8;
typedef float real32;
typedef double real64;
typedef bool Bool;
typedef void Void;
const Bool True= true;
const Bool False= false;
#endif /* __TYPES_H_ */
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -