diff --git a/API_Scene.cpp b/API_Scene.cpp index b896bd9..83e51a0 100644 --- a/API_Scene.cpp +++ b/API_Scene.cpp @@ -571,3 +571,17 @@ __stdcall EgtGetImage( int nShowMode, const int TopCol[4], const int BottomCol[4 return ( ExeGetImage( nShowMode, Color( TopCol), Color( BottomCol), nWidth, nHeight, wstrztoA( wsName)) ? TRUE : FALSE) ; } + +//----------------------------------------------------------------------------- +BOOL +__stdcall EgtSetCameraType( BOOL bOrthoOrPersp, BOOL bRedraw) +{ + return ( ExeSetCameraType( ( bOrthoOrPersp != FALSE), ( bRedraw != FALSE)) ? TRUE : FALSE) ; +} + +//----------------------------------------------------------------------------- +BOOL +__stdcall EgtSetZoomType( int nZoomType, BOOL bRedraw) +{ + return ( ExeSetZoomType( nZoomType, ( bRedraw != FALSE)) ? TRUE : FALSE) ; +} diff --git a/EgtInterface.rc b/EgtInterface.rc index 1362a90..11d058e 100644 Binary files a/EgtInterface.rc and b/EgtInterface.rc differ