added functions to convert between HTTP client and server encoding
[rocksndiamonds.git] / src / libgame / http.h
index b002ec65b48a39a158bd8e4bffd202bf676423bb..3a1dc3e3ca5f233b6dc44d0fe405138e9d5a7295 100644 (file)
@@ -44,6 +44,8 @@ struct HttpResponse
 
 
 char *GetHttpError(void);
+void ConvertHttpRequestBodyToServerEncoding(struct HttpRequest *);
+void ConvertHttpResponseBodyToClientEncoding(struct HttpResponse *);
 boolean DoHttpRequest(struct HttpRequest *, struct HttpResponse *);
 
 #endif