#ifndef IOT_ERRNO_API_H #define IOT_ERRNO_API_H #ifdef __cplusplus extern "C" { #endif #define ERR_OK 0 /* invalid parameters */ #define ERR_INVAL 1 /* out of memory */ #define ERR_NOMEM 2 /* not supported */ #define ERR_NOSUPP 3 /* not secure due to white list */ #define ERR_NOSEC_WL 4 /* not exist */ #define ERR_NOT_EXIST 5 /* again */ #define ERR_AGAIN 6 /* dev not ready */ #define ERR_NOT_READY 7 /* already exist */ #define ERR_EXIST 8 /* busy */ #define ERR_BUSY 9 /* pending */ #define ERR_PENDING 10 /* failed */ #define ERR_FAIL 11 /* not secure due to black list */ #define ERR_NOSEC_BL 12 /* calculated crc but len < 0 */ #define ERR_CRC_LEN 13 /* disconnect */ #define ERR_DISCONNECT 14 /* timeout */ #define ERR_TIMEOVER 15 /* crc check failed */ #define ERR_CRC_FAIL 16 #ifdef __cplusplus } #endif
时间: 2024-02-10 16:35:14 浏览: 235
C++ 中pragma once 与 #ifndef _XXX_H_ #define _XXX_H_的区别
5星 · 资源好评率100%
这段代码是一个头文件的定义,作用是声明一些宏定义和错误码常量。
- `#ifndef`和`#define`是为了避免头文件被重复包含而引起的编译错误。
- 代码中使用了一些预处理指令,如`#ifdef`、`#endif`、`#define`,用于在不同的情况下控制代码的编译。
- `__cplusplus`是一个预定义的宏,用于判断是否处于C++环境下编译。
- `extern "C"`用于告诉编译器使用C语言的调用规则(C linkage)来编译这些函数,以便在C++程序中使用这些函数。
- 代码中定义了一些错误码常量,如`ERR_OK`、`ERR_INVAL`等,用于在程序中表示不同的错误情况。这些常量可以在程序中直接使用,避免了程序中硬编码错误码的问题。
- 头文件中的宏定义和常量的命名规则一般要符合一定的规范,以便提高代码的可读性和可维护性。
阅读全文