-/* Cycript - Remove Execution Server and Disassembler
+/* Cycript - Inlining/Optimizing JavaScript Compiler
* Copyright (C) 2009 Jay Freeman (saurik)
*/
#ifndef SIG_FFI_TYPE_H
#define SIG_FFI_TYPE_H
-#include <apr-1/apr_pools.h>
+#include <apr_pools.h>
+
+#ifdef HAVE_FFI_FFI_H
+#include <ffi/ffi.h>
+#else
#include <ffi.h>
+#endif
#include "sig/types.hpp"
size_t offset = 0
);
+void Copy(apr_pool_t *pool, ffi_type &lhs, ffi_type &rhs);
+
}
#endif/*SIG_FFI_TYPE_H*/