diff --git a/API_MachMgr.cpp b/API_MachMgr.cpp index dd90469..6833dd5 100644 --- a/API_MachMgr.cpp +++ b/API_MachMgr.cpp @@ -2130,6 +2130,20 @@ __stdcall EgtGetAxisPos( const wchar_t* wsAxis, double* pdVal) return ( ExeGetAxisPos( wstrztoA( wsAxis), pdVal) ? TRUE : FALSE) ; } +//----------------------------------------------------------------------------- +BOOL +__stdcall EgtGetAxisMin( const wchar_t* wsAxis, double* pdVal) +{ + return ( ExeGetAxisMin( wstrztoA( wsAxis), pdVal) ? TRUE : FALSE) ; +} + +//----------------------------------------------------------------------------- +BOOL +__stdcall EgtGetAxisMax( const wchar_t* wsAxis, double* pdVal) +{ + return ( ExeGetAxisMax( wstrztoA( wsAxis), pdVal) ? TRUE : FALSE) ; +} + //----------------------------------------------------------------------------- BOOL __stdcall EgtLoadTool( const wchar_t* wsHead, int nExit, const wchar_t* wsTool) diff --git a/EgtInterface.rc b/EgtInterface.rc index daddb76..5fd44a7 100644 Binary files a/EgtInterface.rc and b/EgtInterface.rc differ