]> git.saurik.com Git - cycript.git/blobdiff - Baton.hpp
Prefer __NSCFBoolean to non-__ for iOS compatibility.
[cycript.git] / Baton.hpp
index 3ce4e621b1c6815a6787b7949d3069f97f3c97e7..b8e5698c38dfdf22637ac731b5c479886a9d7c93 100644 (file)
--- a/Baton.hpp
+++ b/Baton.hpp
@@ -1,5 +1,5 @@
 /* Cycript - Optimizing JavaScript Compiler/Runtime
- * Copyright (C) 2009-2010  Jay Freeman (saurik)
+ * Copyright (C) 2009-2012  Jay Freeman (saurik)
 */
 
 /* GNU Lesser General Public License, Version 3 {{{ */
 
 struct Baton {
     void (*__pthread_set_self)(pthread_t);
-
     int (*pthread_create)(pthread_t *, const pthread_attr_t *, void *(*)(void *), void *);
-    int (*pthread_join)(pthread_t, void **);
-
-    void *(*dlopen)(const char *, int);
-    char *(*dlerror)();
-    void *(*dlsym)(void *, const char *);
 
     mach_port_t (*mach_thread_self)();
     kern_return_t (*thread_terminate)(thread_act_t);
 
+    char *(*dlerror)();
+    void *(*dlsym)(void *, const char *);
+
     pid_t pid;
     char library[];
 };