X-Git-Url: https://git.saurik.com/cycript.git/blobdiff_plain/c239b9f8664af054c40d00c68ba4054a23b97735..fa389b0ff91fdcf932a5ea1c6d5d34edea583d03:/cycript.hpp?ds=sidebyside diff --git a/cycript.hpp b/cycript.hpp index 6bfe378..b789731 100644 --- a/cycript.hpp +++ b/cycript.hpp @@ -45,9 +45,8 @@ #endif #include -#include -#include +#include #include #include @@ -55,6 +54,8 @@ bool CYRecvAll_(int socket, uint8_t *data, size_t size); bool CYSendAll_(int socket, const uint8_t *data, size_t size); +extern "C" void CYHandleClient(apr_pool_t *pool, int socket); + template bool CYRecvAll(int socket, Type_ *data, size_t size) { return CYRecvAll_(socket, reinterpret_cast(data), size); @@ -71,12 +72,4 @@ const char *CYExecute(apr_pool_t *pool, const char *code); void CYSetArgs(int argc, const char *argv[]); -const char *CYPoolCCYON(apr_pool_t *pool, JSContextRef context, JSValueRef value, JSValueRef *exception); -JSStringRef CYCopyJSString(const char *value); - -void CYSetProperty(JSContextRef context, JSObjectRef object, JSStringRef name, JSValueRef value); - -JSValueRef CYCallFunction(apr_pool_t *pool, JSContextRef context, size_t setups, void *setup[], size_t count, const JSValueRef arguments[], bool initialize, JSValueRef *exception, sig::Signature *signature, ffi_cif *cif, void (*function)()); -JSValueRef CYSendMessage(apr_pool_t *pool, JSContextRef context, id self, SEL _cmd, size_t count, const JSValueRef arguments[], bool initialize, JSValueRef *exception); - #endif/*CYCRIPT_HPP*/