]> git.saurik.com Git - cycript.git/blob - Baton.hpp
Forgot to add @ to ObjectiveC lexer for @"" support.
[cycript.git] / Baton.hpp
1 #include <dlfcn.h>
2 #include <mach/mach.h>
3
4 struct Baton {
5 void (*_pthread_set_self)(pthread_t);
6 int (*pthread_create)(pthread_t *, const pthread_attr_t *, void *(*)(void *), void *);
7 int (*pthread_detach)(pthread_t);
8 void *(*dlopen)(const char *, int);
9 mach_port_t (*mach_thread_self)();
10 kern_return_t (*thread_terminate)(thread_act_t);
11 char library[];
12 };