X-Git-Url: https://git.saurik.com/cycript.git/blobdiff_plain/b4aa79afea0c26718af8880c3ee8fea63eb21563..75b0a45730c047dc8bf77060f4fade2488e073fa:/cycript.hpp diff --git a/cycript.hpp b/cycript.hpp index 132c299..f89d8ca 100644 --- a/cycript.hpp +++ b/cycript.hpp @@ -48,12 +48,37 @@ #include #include +#include + +#include + +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); +} + +template +bool CYSendAll(int socket, const Type_ *data, size_t size) { + return CYSendAll_(socket, reinterpret_cast(data), size); +} JSGlobalContextRef CYGetJSContext(); -const char *CYPoolCYONString(apr_pool_t *pool, JSContextRef context, JSValueRef value, JSValueRef *exception); -void CYSetArgs(int argc, const char *argv[]); -void CYSetProperty(JSContextRef context, JSObjectRef object, JSStringRef name, JSValueRef value); JSObjectRef CYGetGlobalObject(JSContextRef context); +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*/