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

📄 cmpp_types.h

📁 本接口是用VC6.0遵循中国移动通信标准CMPP2.0协议开发的短消息网关接口
💻 H
字号:
/**
*	文件:	cmpp_types.h
*	作者:	PrinceToad,princetoad@tom.com,http://gmm.nease.net
*	说明:	中国移动CMPP2.0短消息网关开发接口库数据类型定义文件
*	版本:	1.3
*/
#ifndef	CMPP_TYPES_H
#define CMPP_TYPES_H

typedef unsigned char	cmpp_uint8_t;
typedef unsigned short	cmpp_uint16_t;
typedef unsigned int	cmpp_uint32_t;

typedef signed char		cmpp_int8_t;
typedef signed short	cmpp_int16_t;
typedef signed int		cmpp_int32_t;

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

typedef		int			cmpp_status_t;

#ifdef _WIN32
#include <winsock2.h>
#endif

#ifdef _WIN32
typedef SOCKET		cmpp_socket_t;
#else
typedef int			cmpp_socket_t;
#endif

#endif

⌨️ 快捷键说明

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