X-Git-Url: https://git.saurik.com/cycript.git/blobdiff_plain/8a23fb2e56720c164909c9e1dc9e3db9a1b377e5..c10a2228f414e5c537ad57935b9ac7c0287b2f9d:/Internal.hpp diff --git a/Internal.hpp b/Internal.hpp index c87c0ab..e01f323 100644 --- a/Internal.hpp +++ b/Internal.hpp @@ -1,20 +1,20 @@ /* Cycript - Optimizing JavaScript Compiler/Runtime - * Copyright (C) 2009-2012 Jay Freeman (saurik) + * Copyright (C) 2009-2013 Jay Freeman (saurik) */ -/* GNU Lesser General Public License, Version 3 {{{ */ +/* GNU General Public License, Version 3 {{{ */ /* - * Cycript is free software: you can redistribute it and/or modify it under - * the terms of the GNU Lesser General Public License as published by the - * Free Software Foundation, either version 3 of the License, or (at your - * option) any later version. + * Cycript is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published + * by the Free Software Foundation, either version 3 of the License, + * or (at your option) any later version. * - * Cycript is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public - * License for more details. + * Cycript is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. * - * You should have received a copy of the GNU Lesser General Public License + * You should have received a copy of the GNU General Public License * along with Cycript. If not, see . **/ /* }}} */ @@ -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(value_); } @@ -199,5 +201,6 @@ struct Closure_privateData : }; Closure_privateData *CYMakeFunctor_(JSContextRef context, JSObjectRef function, const char *type, void (*callback)(ffi_cif *, void *, void **, void *)); +void CYExecuteClosure(ffi_cif *cif, void *result, void **arguments, void *arg, JSValueRef (*adapter)(JSContextRef, size_t, JSValueRef[], JSObjectRef)); #endif/*CYCRIPT_INTERNAL_HPP*/