1 Star 0 Fork 0

王忠凯/RS232-485-For-Linux

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
datatype.h 1.17 KB
一键复制 编辑 原始数据 按行查看 历史
LLC 提交于 2020-03-08 16:08 . update comments
/********************************************************
File name: datatype.h
Author:LiangLiCan
Date: 2019/06/1
Description: 定义通用数据类型
********************************************************/
#ifndef _COMMDEF_H_
#define _COMMDEF_H_
#ifdef __cplusplus
#if __cplusplus
extern "C"
{
#endif
#endif // end of __cplusplus
#define WD_SUCCESS 0
#define WD_FAILURE (-1)
//#ifndef NULL
//#define NULL 0
//#endif
typedef unsigned char WD_U8;
typedef unsigned short WD_U16;
typedef unsigned int WD_U32;
typedef unsigned long WD_ULONG;
typedef unsigned long long WD_U64;
typedef char WD_C8;
typedef unsigned char WD_S8;
typedef short WD_S16;
typedef int WD_S32;
typedef long WD_SLONG;
typedef long long WD_S64;
typedef float WD_FLOAT;
typedef double WD_DOUBLE;
typedef void WD_VOID;
//typedef bool WD_BOOL;
#ifdef __cplusplus
#if __cplusplus
}
#endif
#endif // __cplusplus
#endif // _COMMDEF_H_
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/wzk2019/RS232-485-For-Linux.git
git@gitee.com:wzk2019/RS232-485-For-Linux.git
wzk2019
RS232-485-For-Linux
RS232-485-For-Linux
master

搜索帮助