]> git.saurik.com Git - cycript.git/blobdiff - cycript.hpp
Fixed an issue where I could no longer create pointers to void.
[cycript.git] / cycript.hpp
index 132c2992f6b24a35d0c28843d81d18ed5cab896d..0da87f9d6258a2e65f1d20b9cfa31af837791566 100644 (file)
 #include <JavaScriptCore/JSStringRefCF.h>
 
 #include <apr-1/apr_pools.h>
+#include <ffi.h>
+
+#include <sig/types.hpp>
 
 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);
+
+void CYSetArgs(int argc, const char *argv[]);
+
+const char *CYPoolCYONString(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*/