X-Git-Url: https://sfsrealm.hopto.org/projects/gitweb.cgi?a=blobdiff_plain;f=grpapi%2Fgrpapi_no-lib.cpp;h=0b056cec124e77d9313771edd3e62b6ec777c437;hb=d1874f14b0ef294d396244b8d2e8da5a9079c365;hp=a183155d1d65d98a70cd7829edaf88faa1005891;hpb=14362b19599627313cd243bdbc404dc2087d4422;p=grpapi.git diff --git a/grpapi/grpapi_no-lib.cpp b/grpapi/grpapi_no-lib.cpp index a183155..0b056ce 100644 --- a/grpapi/grpapi_no-lib.cpp +++ b/grpapi/grpapi_no-lib.cpp @@ -12,6 +12,10 @@ funcLoadGrp LoadGrp = 0; funcDestroyGrp DestroyGrp = 0; funcDrawGrp DrawGrp = 0; funcGetGrpInfo GetGrpInfo = 0; +funcCreateGrp CreateGrp = 0; +funcSetFunctionGetPixel SetFunctionGetPixel = 0; +funcSetFunctionSetPixel SetFunctionSetPixel = 0; +funcSetMpqDll SetMpqDll = 0; funcLoadGrpApi LoadGrpApi = 0; funcFreeGrpApi FreeGrpApi = 0; @@ -26,6 +30,10 @@ GRPAPIMODULE::GRPAPIMODULE() DestroyGrp = (funcDestroyGrp)GetProcAddress(hGrpApi,"DestroyGrp"); DrawGrp = (funcDrawGrp)GetProcAddress(hGrpApi,"DrawGrp"); GetGrpInfo = (funcGetGrpInfo)GetProcAddress(hGrpApi,"GetGrpInfo"); + CreateGrp = (funcCreateGrp)GetProcAddress(hGrpApi,"CreateGrp"); + 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 +46,10 @@ GRPAPIMODULE::~GRPAPIMODULE() DestroyGrp = 0; DrawGrp = 0; GetGrpInfo = 0; + CreateGrp = 0; + SetFunctionGetPixel = 0; + SetFunctionSetPixel = 0; + SetMpqDll = 0; LoadGrpApi = 0; FreeGrpApi = 0; @@ -53,4 +65,3 @@ void LoadGrpApiLib() void FreeGrpApiLib() { } -