diff --git a/API_Scene.cpp b/API_Scene.cpp index 604bb78..a77a451 100644 --- a/API_Scene.cpp +++ b/API_Scene.cpp @@ -421,3 +421,10 @@ __stdcall EgtUnProjectPoint( int nWinX, int nWinY, double ptP[3]) return TRUE ; } +//----------------------------------------------------------------------------- +BOOL +__stdcall EgtLoadTexture( const wchar_t* wsName, const wchar_t* wsFile, + double dDimX, double dDimY, BOOL bRepeat) +{ + return ( ExeLoadTexture( wstrztoA( wsName), wstrztoA( wsFile), dDimX, dDimY, ( bRepeat != FALSE)) ? TRUE : FALSE) ; +}