Add SteamWorks_SendMessageToGC (untested as well).

This commit is contained in:
Kyle Sanderson
2016-03-05 17:32:16 -08:00
committed by Josh Allard
parent 3da8a5d831
commit 5cd391a31b
6 changed files with 96 additions and 0 deletions
+2
View File
@@ -56,11 +56,13 @@ bool SteamWorks::SDK_OnLoad(char *error, size_t maxlength, bool late)
this->pGSDetours = new SteamWorksGSDetours;
this->pSSNatives = new SteamWorksSSNatives;
this->pGCHooks = new SteamWorksGCHooks;
this->pGCNatives = new SteamWorksGCNatives;
return true;
}
void SteamWorks::SDK_OnUnload()
{
delete this->pGCNatives;
delete this->pGCHooks;
delete this->pSSNatives;
delete this->pGSDetours;