inttypes.h
来自「symbian下的FLV播放视频源码 可以快速便捷的播放FLV格式的视频」· C头文件 代码 · 共 23 行
H
23 行
#ifndef __NEO_INTTYPES_H__
#define __NEO_INTTYPES_H__
typedef signed char __int8_t;
typedef unsigned char __uint8_t;
typedef short __int16_t;
typedef unsigned short __uint16_t;
typedef int __int32_t;
typedef unsigned int __uint32_t;
typedef signed __int64 __int64_t;
typedef unsigned __int64 __uint64_t;
typedef __int8_t int8_t;
typedef __int16_t int16_t;
typedef __int32_t int32_t;
typedef __int64_t int64_t;
typedef __uint8_t uint8_t;
typedef __uint16_t uint16_t;
typedef __uint32_t uint32_t;
typedef __uint64_t uint64_t;
#endif /*INTTYPES_H_*/
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?