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.
falk-werner_webfuse/lib/wsfsp/request.h

19 lines
282 B

#ifndef WSFSP_REQUEST_H
#define WSFSP_REQUEST_H
#include <jansson.h>
#include "wsfsp/provider.h"
typedef void wsfsp_request_respond_fn(
json_t * response,
void * user_data);
struct wsfsp_request
{
wsfsp_request_respond_fn * respond;
void * user_data;
};
#endif