diff --git a/API_Scene.cpp b/API_Scene.cpp index 69d84ea..374b823 100644 --- a/API_Scene.cpp +++ b/API_Scene.cpp @@ -113,6 +113,14 @@ __stdcall EgtSetGridGeo( double dSnapStep, int nMinLineSstep, int nMajLineSstep, return ( ExeSetGridGeo( dSnapStep, nMinLineSstep, nMajLineSstep, nExtSstep) ? TRUE : FALSE) ; } +//----------------------------------------------------------------------------- +BOOL +__stdcall EgtSetGridGeoAdv( double dSnapStep, int nMinLineSstep, int nMajLineSstep, + double dXmin, double dXmax, double dYmin, double dYmax) +{ + return ( ExeSetGridGeoAdv( dSnapStep, nMinLineSstep, nMajLineSstep, dXmin, dXmax, dYmin, dYmax) ? TRUE : FALSE) ; +} + //----------------------------------------------------------------------------- BOOL __stdcall EgtSetGridColor( const int nMinCol[4], const int nMajCol[4]) diff --git a/EgtInterface.rc b/EgtInterface.rc index 98e875d..d3a6a3b 100644 Binary files a/EgtInterface.rc and b/EgtInterface.rc differ