⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 inttypes.h

📁 symbian下的FLV播放视频源码 可以快速便捷的播放FLV格式的视频
💻 H
字号:
#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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -