X-Git-Url: https://git.saurik.com/cycript.git/blobdiff_plain/1ef7d0617fe7f188e5bae5649552bac62718acf7..856b8cd09bec6f7429808d348d689be984b948cb:/cycript.hpp diff --git a/cycript.hpp b/cycript.hpp index f89d8ca..2bc72f3 100644 --- a/cycript.hpp +++ b/cycript.hpp @@ -1,4 +1,4 @@ -/* Cycript - Remove Execution Server and Disassembler +/* Cycript - Remote Execution Server and Disassembler * Copyright (C) 2009 Jay Freeman (saurik) */ @@ -40,21 +40,19 @@ #ifndef CYCRIPT_HPP #define CYCRIPT_HPP -#ifdef __OBJC__ -#include -#endif - #include -#include -#include +#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); +void CYNumerify(std::ostringstream &str, double value); +void CYStringify(std::ostringstream &str, const char *data, size_t size); + extern "C" void CYHandleClient(apr_pool_t *pool, int socket); template @@ -68,17 +66,10 @@ bool CYSendAll(int socket, const Type_ *data, size_t size) { } JSGlobalContextRef CYGetJSContext(); +apr_pool_t *CYGetGlobalPool(); 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*/