diff --git a/API_GdbObjects.cpp b/API_GdbObjects.cpp index 0b7873d..49e1ba6 100644 --- a/API_GdbObjects.cpp +++ b/API_GdbObjects.cpp @@ -223,6 +223,13 @@ __stdcall EgtCopy( int nSouId, int nRefId, int nSonBeforeAfter) return ExeCopy( nSouId, nRefId, nSonBeforeAfter) ; } +//----------------------------------------------------------------------------- +int +__stdcall EgtCopyEx( int nSouCtx, int nSouId, int nDestCtx, int nRefId, int nSonBeforeAfter) +{ + return ExeCopyEx( nSouCtx, nSouId, nDestCtx, nRefId, nSonBeforeAfter) ; +} + //----------------------------------------------------------------------------- int __stdcall EgtCopyGlob( int nSouId, int nRefId, int nSonBeforeAfter) @@ -230,6 +237,13 @@ __stdcall EgtCopyGlob( int nSouId, int nRefId, int nSonBeforeAfter) return ExeCopyGlob( nSouId, nRefId, nSonBeforeAfter) ; } +//----------------------------------------------------------------------------- +int +__stdcall EgtCopyGlobEx( int nSouCtx, int nSouId, int nDestCtx, int nRefId, int nSonBeforeAfter) +{ + return ExeCopyGlobEx( nSouCtx, nSouId, nDestCtx, nRefId, nSonBeforeAfter) ; +} + //----------------------------------------------------------------------------- BOOL __stdcall EgtRelocate( int nSouId, int nRefId, int nSonBeforeAfter) diff --git a/EgtInterface.rc b/EgtInterface.rc index 93ace09..fe7d33e 100644 Binary files a/EgtInterface.rc and b/EgtInterface.rc differ