X-Git-Url: https://sfsrealm.hopto.org/projects/gitweb.cgi?a=blobdiff_plain;f=grpapi%2Fgrpapi_no-lib.cpp;h=9a63fa825a8806091974e50c97db41f1c743c4ae;hb=a215f7bed5ba1784c1efd0f24db33e64f7d52360;hp=0b056cec124e77d9313771edd3e62b6ec777c437;hpb=6ae306569505e091aa7f5415ce26ee920bff2f5c;p=grpapi.git diff --git a/grpapi/grpapi_no-lib.cpp b/grpapi/grpapi_no-lib.cpp index 0b056ce..9a63fa8 100644 --- a/grpapi/grpapi_no-lib.cpp +++ b/grpapi/grpapi_no-lib.cpp @@ -12,6 +12,7 @@ funcLoadGrp LoadGrp = 0; funcDestroyGrp DestroyGrp = 0; funcDrawGrp DrawGrp = 0; funcGetGrpInfo GetGrpInfo = 0; +funcGetGrpFrameInfo GetGrpFrameInfo = 0; funcCreateGrp CreateGrp = 0; funcSetFunctionGetPixel SetFunctionGetPixel = 0; funcSetFunctionSetPixel SetFunctionSetPixel = 0; @@ -30,6 +31,7 @@ GRPAPIMODULE::GRPAPIMODULE() DestroyGrp = (funcDestroyGrp)GetProcAddress(hGrpApi,"DestroyGrp"); DrawGrp = (funcDrawGrp)GetProcAddress(hGrpApi,"DrawGrp"); GetGrpInfo = (funcGetGrpInfo)GetProcAddress(hGrpApi,"GetGrpInfo"); + GetGrpFrameInfo = (funcGetGrpFrameInfo)GetProcAddress(hGrpApi,"GetGrpFrameInfo"); CreateGrp = (funcCreateGrp)GetProcAddress(hGrpApi,"CreateGrp"); SetFunctionGetPixel = (funcSetFunctionGetPixel)GetProcAddress(hGrpApi,"SetFunctionGetPixel"); SetFunctionSetPixel = (funcSetFunctionSetPixel)GetProcAddress(hGrpApi,"SetFunctionSetPixel"); @@ -46,6 +48,7 @@ GRPAPIMODULE::~GRPAPIMODULE() DestroyGrp = 0; DrawGrp = 0; GetGrpInfo = 0; + GetGrpFrameInfo = 0; CreateGrp = 0; SetFunctionGetPixel = 0; SetFunctionSetPixel = 0;