Add HTTP Support.

This commit is contained in:
KyleSanderson
2014-02-08 12:19:32 -07:00
parent 455defd681
commit cff6b178f0
7 changed files with 749 additions and 1 deletions
+4
View File
@@ -45,7 +45,9 @@ bool SteamWorks::SDK_OnLoad(char *error, size_t maxlength, bool late)
{
this->pSWGameData = new SteamWorksGameData;
this->pSWGameServer = new SteamWorksGameServer;
this->pSWHTTP = new SteamWorksHTTP;
this->pSWHTTPNatives = new SteamWorksHTTPNatives;
this->pSWForward = new SteamWorksForwards;
this->pGSNatives = new SteamWorksGSNatives;
this->pGSHooks = new SteamWorksGSHooks;
@@ -61,7 +63,9 @@ void SteamWorks::SDK_OnUnload()
delete this->pGSHooks;
delete this->pGSNatives;
delete this->pSWForward;
delete this->pSWHTTPNatives;
delete this->pSWHTTP;
delete this->pSWGameServer;
delete this->pSWGameData;
}