EgtInterface :
- aggiunta interfaccia per EgtCreateCurveCompoByReorder - aggiunte EgtGetPhotoDimensions e EgtGetPhotoPixels.
This commit is contained in:
@@ -84,3 +84,21 @@ __stdcall EgtGetPhotoMMxPixel( int nId, double* pdMMxPixel)
|
||||
return FALSE ;
|
||||
return ( ExeGetPhotoMMxPixel( nId, *pdMMxPixel) ? TRUE : FALSE) ;
|
||||
}
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
BOOL
|
||||
__stdcall EgtGetPhotoDimensions( int nId, double* pdDimX, double* pdDimY)
|
||||
{
|
||||
if ( pdDimX == nullptr || pdDimY == nullptr)
|
||||
return FALSE ;
|
||||
return ( ExeGetPhotoDimensions( nId, *pdDimX, *pdDimY) ? TRUE : FALSE) ;
|
||||
}
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
BOOL
|
||||
__stdcall EgtGetPhotoPixels( int nId, int* pnPixelX, int* pnPixelY)
|
||||
{
|
||||
if ( pnPixelX == nullptr || pnPixelY == nullptr)
|
||||
return FALSE ;
|
||||
return ( ExeGetPhotoPixels( nId, *pnPixelX, *pnPixelY) ? TRUE : FALSE) ;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user