You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
434 B

#ifndef _WSFS_JSONRPC_REQUEST_H
#define _WSFS_JSONRPC_REQUEST_H
#ifndef __cplusplus
#include <stdarg.h>
#include <stddef.h>
#include <stdbool.h>
#else
#include <cstdarg>
#include <cstddef>
using std::size_t;
#endif
#include <jansson.h>
#ifdef __cplusplus
extern "C"
{
#endif
extern json_t * wsfs_jsonrpc_request_create(
char const * method,
int id,
char const * param_info,
va_list args);
#ifdef __cplusplus
}
#endif
#endif