]> git.saurik.com Git - cycript.git/blobdiff - cycript.hpp
Attempt to garbage collect before using choose().
[cycript.git] / cycript.hpp
index 841cf1648c76db75572cf26d6c1ff814c474972b..e65721a32f5c682d3fb261cb914a1d93726c565e 100644 (file)
@@ -28,8 +28,6 @@
 #include "Pooling.hpp"
 #include "String.hpp"
 
-void CYInitializeStatic();
-
 bool CYRecvAll_(int socket, uint8_t *data, size_t size);
 bool CYSendAll_(int socket, const uint8_t *data, size_t size);
 
@@ -39,7 +37,7 @@ void CYStringify(std::ostringstream &str, const char *data, size_t size);
 double CYCastDouble(const char *value, size_t size);
 double CYCastDouble(const char *value);
 
-extern "C" void CYHandleClient(CYPool &pool, int socket);
+extern "C" void CYHandleClient(int socket);
 
 template <typename Type_>
 bool CYRecvAll(int socket, Type_ *data, size_t size) {
@@ -53,4 +51,6 @@ bool CYSendAll(int socket, const Type_ *data, size_t size) {
 
 CYPool &CYGetGlobalPool();
 
+CYUTF8String CYPoolCode(CYPool &pool, CYUTF8String code);
+
 #endif/*CYCRIPT_HPP*/