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

📄 dpl_types.h

📁 移动
💻 H
字号:
#ifndef DPL_TYPES_H
#define DPL_TYPES_H

/**
 *	@ Darwin Programming Library
 */

#include "dpl.h"

#ifdef __cplusplus
extern "C"{
#endif

typedef unsigned char	dpl_uint8_t;
typedef unsigned short	dpl_uint16_t;
typedef unsigned int	dpl_uint32_t;

typedef signed char		dpl_int8_t;
typedef signed short	dpl_int16_t;
typedef signed int		dpl_int32_t;

#ifdef _WIN32
typedef _int64			dpl_int64_t;
#else
typedef long long		dpl_int64_t;
#endif

typedef unsigned int	dpl_size_t;

typedef int				dpl_second_t;

typedef dpl_uint16_t	dpl_port_t;

typedef dpl_uint16_t	dpl_wchar_t;

#ifdef __cplusplus
}
#endif

#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -