X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;ds=sidebyside;f=server%2Ffastcgi.h;h=1efdef780a897655f1d7ff842ed8b56ae649c61e;hb=faee7575b94067ae80c8e2cba98e9bfe9ec2c5ae;hp=e9db8ba90d09d888294237a854239183010818e6;hpb=7ca215713fa73c84ba0b46c9e7299386bd5cf5b8;p=matches%2FMCTX3420.git diff --git a/server/fastcgi.h b/server/fastcgi.h index e9db8ba..1efdef7 100644 --- a/server/fastcgi.h +++ b/server/fastcgi.h @@ -22,11 +22,12 @@ extern void FCGI_BeginJSON(FCGIContext *context, StatusCodes status_code); extern void FCGI_JSONPair(const char *key, const char *value); extern void FCGI_JSONLong(const char *key, long value); extern void FCGI_JSONDouble(const char *key, double value); +extern void FCGI_JSONBool(const char *key, bool value); extern void FCGI_JSONKey(const char *key); extern void FCGI_JSONValue(const char *format, ...); extern void FCGI_EndJSON(); extern void FCGI_RejectJSON(FCGIContext *context); -extern void FCGI_RequestLoop (void *data); +extern void * FCGI_RequestLoop (void *data); #endif