]> git.saurik.com Git - cycript.git/blobdiff - cycript.hpp
Moved from plist files to sqlite3 and finalized non-ObjectiveC compile of Library.mm.
[cycript.git] / cycript.hpp
index 3d70f5b7797d95cd285beb1e4e609432a8129167..2bc72f35d10e183d343708590d13ec2034556bdc 100644 (file)
@@ -1,4 +1,4 @@
-/* Cycript - Remove Execution Server and Disassembler
+/* Cycript - Remote Execution Server and Disassembler
  * Copyright (C) 2009  Jay Freeman (saurik)
 */
 
 
 #include <apr_pools.h>
 #include <ffi.h>
-
 #include <sig/types.hpp>
+#include <sstream>
 
 bool CYRecvAll_(int socket, uint8_t *data, size_t size);
 bool CYSendAll_(int socket, const uint8_t *data, size_t size);
 
+void CYNumerify(std::ostringstream &str, double value);
+void CYStringify(std::ostringstream &str, const char *data, size_t size);
+
 extern "C" void CYHandleClient(apr_pool_t *pool, int socket);
 
 template <typename Type_>
@@ -63,6 +66,7 @@ bool CYSendAll(int socket, const Type_ *data, size_t size) {
 }
 
 JSGlobalContextRef CYGetJSContext();
+apr_pool_t *CYGetGlobalPool();
 JSObjectRef CYGetGlobalObject(JSContextRef context);
 const char *CYExecute(apr_pool_t *pool, const char *code);