12345678910111213141516171819 |
- #ifndef __RESULT_UTILS_H__
- #define __RESULT_UTILS_H__
- #include "goahead.h"
- void HelloWord(Webs *wp);
- char outPutLoginJson(char *cjson_str);
- void getErrorJson(char *cjson_str, int cjson_code);
- //成功切无数据返回
- void successResult(Webs *wp);
- //成功切无数据返回
- void errorResult(Webs *wp);
- #endif /* __RESULT_UTILS_H__ */
|