diff --git a/API_Scene.cpp b/API_Scene.cpp index 40364ef..ba31c3f 100644 --- a/API_Scene.cpp +++ b/API_Scene.cpp @@ -512,3 +512,12 @@ __stdcall EgtChangeTextureDimensions( const wchar_t* wsName, double dDimX, doubl { return ( ExeChangeTextureDimensions( wstrztoA( wsName), dDimX, dDimY) ? TRUE : FALSE) ; } + +//----------------------------------------------------------------------------- +BOOL +__stdcall EgtGetImage( int nShowMode, const int TopCol[4], const int BottomCol[4], + int nWidth, int nHeight, const wchar_t* wsName) +{ + return ( ExeGetImage( nShowMode, Color( TopCol), Color( BottomCol), + nWidth, nHeight, wstrztoA( wsName)) ? TRUE : FALSE) ; +} diff --git a/EgtInterface.rc b/EgtInterface.rc index 02ded4e..401eb22 100644 Binary files a/EgtInterface.rc and b/EgtInterface.rc differ