weechat-chatwork/api.h

17 行
236 B
C
Raw 通常表示 履歴

2023-08-19 03:02:05 +09:00
#ifndef _API_H_
#define _API_H_
typedef struct {
const char *url;
const char *token;
} ApiRequest;
typedef struct {
CURLcode result;
cJSON *data;
} ApiResponse;
ApiResponse makeApiRequest (const ApiRequest *request);
#endif