X-Git-Url: https://git.saurik.com/cycript.git/blobdiff_plain/4afefdd93c6c33cd3919fc4f35674eb27c5ac90b..7056e6ee137056c14cf6a2ec31cf081c6d4fe45a:/cycript.hpp?ds=sidebyside diff --git a/cycript.hpp b/cycript.hpp index 632741a..0ff8377 100644 --- a/cycript.hpp +++ b/cycript.hpp @@ -45,24 +45,31 @@ #endif #include -#include #include #include #include -JSGlobalContextRef CYGetJSContext(); -JSObjectRef CYGetGlobalObject(JSContextRef context); +bool CYRecvAll_(int socket, uint8_t *data, size_t size); +bool CYSendAll_(int socket, const uint8_t *data, size_t size); -void CYSetArgs(int argc, const char *argv[]); +extern "C" void CYHandleClient(apr_pool_t *pool, int socket); -const char *CYPoolCYONString(apr_pool_t *pool, JSContextRef context, JSValueRef value, JSValueRef *exception); -JSStringRef CYCopyJSString(const char *value); +template +bool CYRecvAll(int socket, Type_ *data, size_t size) { + return CYRecvAll_(socket, reinterpret_cast(data), size); +} -void CYSetProperty(JSContextRef context, JSObjectRef object, JSStringRef name, JSValueRef value); +template +bool CYSendAll(int socket, const Type_ *data, size_t size) { + return CYSendAll_(socket, reinterpret_cast(data), size); +} -JSValueRef CYCallFunction(apr_pool_t *pool, JSContextRef context, size_t setups, void *setup[], size_t count, const JSValueRef *arguments, 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[], JSValueRef *exception); +JSGlobalContextRef CYGetJSContext(); +JSObjectRef CYGetGlobalObject(JSContextRef context); +const char *CYExecute(apr_pool_t *pool, const char *code); + +void CYSetArgs(int argc, const char *argv[]); #endif/*CYCRIPT_HPP*/