diff --git a/API_MachMgr.cpp b/API_MachMgr.cpp index 5001345..35bdbf9 100644 --- a/API_MachMgr.cpp +++ b/API_MachMgr.cpp @@ -617,6 +617,13 @@ __stdcall EgtTdbGetCurrToolParamString( int nType, wchar_t*& wsVal) return (( wsVal == nullptr) ? FALSE : TRUE) ; } +//----------------------------------------------------------------------------- +BOOL +__stdcall EgtTdbReload( void) +{ + return ( ExeTdbReload() ? TRUE : FALSE) ; +} + //----------------------------------------------------------------------------- BOOL __stdcall EgtTdbSave( void) @@ -834,6 +841,13 @@ __stdcall EgtMdbGetGeneralParamDouble( int nType, double* pdVal) return ( ExeMdbGetGeneralParam( nType, *pdVal) ? TRUE : FALSE) ; } +//----------------------------------------------------------------------------- +BOOL +__stdcall EgtMdbReload( void) +{ + return ( ExeMdbReload() ? TRUE : FALSE) ; +} + //----------------------------------------------------------------------------- BOOL __stdcall EgtMdbSave( void) @@ -1022,6 +1036,13 @@ __stdcall EgtChangeOperationPhase( int nId, int nNewPhase) return ( ExeChangeOperationPhase( nId, nNewPhase) ? TRUE : FALSE) ; } +//----------------------------------------------------------------------------- +int +__stdcall EgtGetPhaseLastOperation( int nPhase) +{ + return ExeGetPhaseLastOperation( nPhase) ; +} + //----------------------------------------------------------------------------- BOOL __stdcall EgtRemoveOperationHome( int nId) diff --git a/EgtInterface.rc b/EgtInterface.rc index 571854f..09ecc2e 100644 Binary files a/EgtInterface.rc and b/EgtInterface.rc differ