ResultUtils.h 359 B

123456789101112131415161718
  1. #ifndef __RESULT_UTILS_H__
  2. #define __RESULT_UTILS_H__
  3. #include "goahead.h"
  4. void HelloWord(Webs *wp);
  5. char outPutLoginJson(char *cjson_str);
  6. void getErrorJson(char *cjson_str, int cjson_code);
  7. //成功切无数据返回
  8. void successResult(Webs *wp);
  9. //成功切无数据返回
  10. void errorResult(Webs *wp);
  11. #endif /* __RESULT_UTILS_H__ */