EgtInterface 1.8b4 :

- aggiunta interfaccia per EgtGetImage.
This commit is contained in:
Dario Sassi
2017-02-13 10:43:05 +00:00
parent 8a232b60b9
commit 056ad8dac7
2 changed files with 9 additions and 0 deletions
+9
View File
@@ -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) ;
}