iotsharp_client.h 711 B

12345678910111213141516171819202122232425
  1. #ifndef iotsharp_CLIENT_H
  2. #define iotsharp_CLIENT_H
  3. /*********************************************************************************
  4. * 文件名称: iotsharp_client.h
  5. * 作 者: 麦壳饼
  6. * 版 本:
  7. **********************************************************************************/
  8. #include <stdio.h>
  9. #include <stdlib.h>
  10. #define SDK_VERSION "v1.0.0"
  11. #ifndef SDK_PLATFORM
  12. #define SDK_PLATFORM "unknown"
  13. #endif
  14. #define NO_LOG_LEVL 0 //不输出日志
  15. #define ERROR_LOG_LEVL 1 //输出错误日志
  16. #define INFO_LOG_LEVL 2 //输出运行时日志和错误日志
  17. #define DEBUG_LOG_LEVL 3 //输出调试日志、运行时日志和错误日志
  18. #endif