X-Git-Url: https://sfsrealm.hopto.org/projects/?a=blobdiff_plain;f=grpapi%2Fgrpapi_no-lib.cpp;h=909d1c53bd40f871d6009bb94e5ad848b6d957f6;hb=7f7b4247b021a783cbba059c344ddcdc1a80e58f;hp=a183155d1d65d98a70cd7829edaf88faa1005891;hpb=14362b19599627313cd243bdbc404dc2087d4422;p=grpapi.git diff --git a/grpapi/grpapi_no-lib.cpp b/grpapi/grpapi_no-lib.cpp index a183155..909d1c5 100644 --- a/grpapi/grpapi_no-lib.cpp +++ b/grpapi/grpapi_no-lib.cpp @@ -12,6 +12,9 @@ funcLoadGrp LoadGrp = 0; funcDestroyGrp DestroyGrp = 0; funcDrawGrp DrawGrp = 0; funcGetGrpInfo GetGrpInfo = 0; +funcSetFunctionGetPixel SetFunctionGetPixel = 0; +funcSetFunctionSetPixel SetFunctionSetPixel = 0; +funcSetMpqDll SetMpqDll = 0; funcLoadGrpApi LoadGrpApi = 0; funcFreeGrpApi FreeGrpApi = 0; @@ -26,6 +29,9 @@ GRPAPIMODULE::GRPAPIMODULE() DestroyGrp = (funcDestroyGrp)GetProcAddress(hGrpApi,"DestroyGrp"); DrawGrp = (funcDrawGrp)GetProcAddress(hGrpApi,"DrawGrp"); GetGrpInfo = (funcGetGrpInfo)GetProcAddress(hGrpApi,"GetGrpInfo"); + SetFunctionGetPixel = (funcSetFunctionGetPixel)GetProcAddress(hGrpApi,"SetFunctionGetPixel"); + SetFunctionSetPixel = (funcSetFunctionSetPixel)GetProcAddress(hGrpApi,"SetFunctionSetPixel"); + SetMpqDll = (funcSetMpqDll)GetProcAddress(hGrpApi,"SetMpqDll"); LoadGrpApi = (funcLoadGrpApi)GetProcAddress(hGrpApi,"LoadGrpApi"); FreeGrpApi = (funcFreeGrpApi)GetProcAddress(hGrpApi,"FreeGrpApi"); } @@ -38,6 +44,9 @@ GRPAPIMODULE::~GRPAPIMODULE() DestroyGrp = 0; DrawGrp = 0; GetGrpInfo = 0; + SetFunctionGetPixel = 0; + SetFunctionSetPixel = 0; + SetMpqDll = 0; LoadGrpApi = 0; FreeGrpApi = 0; @@ -53,4 +62,3 @@ void LoadGrpApiLib() void FreeGrpApiLib() { } -