]> git.saurik.com Git - cycript.git/blobdiff - Internal.hpp
Further improvements to the autoconf scripting.
[cycript.git] / Internal.hpp
index 7f8563d5b6cd7e8bbd24e673874a0bf9b498b1ba..032f21671a02198556bbcf0016233beb674b5166 100644 (file)
@@ -38,6 +38,8 @@ void Structor_(apr_pool_t *pool, sig::Type *&type);
 JSObjectRef CYMakeType(JSContextRef context, const char *type);
 JSObjectRef CYMakeType(JSContextRef context, sig::Type *type);
 
+extern JSClassRef Functor_;
+
 struct Type_privateData :
     CYData
 {
@@ -170,7 +172,7 @@ struct Functor :
         sig::sig_ffi_cif(pool_, &sig::ObjectiveC, &signature_, &cif_);
     }
 
-    void (*GetValue())() const {
+    void (*GetValue() const)() {
         return reinterpret_cast<void (*)()>(value_);
     }