]> git.saurik.com Git - cycript.git/blobdiff - cycript.hpp
Move lib/cycript to cycript0.9 to free up cycript.
[cycript.git] / cycript.hpp
index 52accefad418bcb95e1e9f14608a45077d0b1ffb..e65721a32f5c682d3fb261cb914a1d93726c565e 100644 (file)
@@ -37,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) {
@@ -51,4 +51,6 @@ bool CYSendAll(int socket, const Type_ *data, size_t size) {
 
 CYPool &CYGetGlobalPool();
 
+CYUTF8String CYPoolCode(CYPool &pool, CYUTF8String code);
+
 #endif/*CYCRIPT_HPP*/