diff --git a/API_Nesting.cpp b/API_Nesting.cpp index 7842518..a40dbc0 100644 --- a/API_Nesting.cpp +++ b/API_Nesting.cpp @@ -19,6 +19,13 @@ using namespace std ; +//----------------------------------------------------------------------------- +BOOL +__stdcall EgtCreateAdjustFlatParts( int nType, double dToler) +{ + return ( ExeCreateAdjustFlatParts( nType, dToler) ? TRUE : FALSE) ; +} + //----------------------------------------------------------------------------- BOOL __stdcall EgtCreateFlatParts( int nType, double dToler) @@ -26,6 +33,20 @@ __stdcall EgtCreateFlatParts( int nType, double dToler) return ( ExeCreateFlatParts( nType, dToler) ? TRUE : FALSE) ; } +//----------------------------------------------------------------------------- +BOOL +__stdcall EgtAdjustFlatParts( void) +{ + return ( ExeAdjustFlatParts() ? TRUE : FALSE) ; +} + +//----------------------------------------------------------------------------- +BOOL +__stdcall EgtAdjustFlatPart( int nPartId) +{ + return ( ExeAdjustFlatPart( nPartId) ? TRUE : FALSE) ; +} + //----------------------------------------------------------------------------- BOOL __stdcall EgtAdjustFlatPartLayer( int nLayerId) diff --git a/EgtInterface.rc b/EgtInterface.rc index d0fc0f9..25df424 100644 Binary files a/EgtInterface.rc and b/EgtInterface.rc differ