diff --git a/EInAPI.h b/EInAPI.h index 8e09390..0ec3bc0 100644 --- a/EInAPI.h +++ b/EInAPI.h @@ -314,11 +314,13 @@ EIN_EXPORT BOOL __stdcall EgtGetName( int nId, wchar_t*& wsName) ; EIN_EXPORT BOOL __stdcall EgtExistsName( int nId) ; EIN_EXPORT BOOL __stdcall EgtRemoveName( int nId) ; EIN_EXPORT BOOL __stdcall EgtSetInfo( int nId, const wchar_t* wsKey, const wchar_t* wsInfo) ; +EIN_EXPORT BOOL __stdcall EgtSetInfoBool( int nId, const wchar_t* wsKey, BOOL bInfo) ; EIN_EXPORT BOOL __stdcall EgtSetInfoInt( int nId, const wchar_t* wsKey, int nInfo) ; EIN_EXPORT BOOL __stdcall EgtSetInfoDouble( int nId, const wchar_t* wsKey, double dInfo) ; EIN_EXPORT BOOL __stdcall EgtSetInfoFrame( int nId, const wchar_t* wsKey, const double ptOrig[3], const double vtX[3], const double vtY[3], const double vtZ[3]) ; EIN_EXPORT BOOL __stdcall EgtGetInfo( int nId, const wchar_t* wsKey, wchar_t*& wsInfo) ; +EIN_EXPORT BOOL __stdcall EgtGetInfoBool( int nId, const wchar_t* wsKey, BOOL* pbInfo) ; EIN_EXPORT BOOL __stdcall EgtGetInfoInt( int nId, const wchar_t* wsKey, int* pnInfo) ; EIN_EXPORT BOOL __stdcall EgtGetInfoDouble( int nId, const wchar_t* wsKey, double* pdInfo) ; EIN_EXPORT BOOL __stdcall EgtGetInfoFrame( int nId, const wchar_t* wsKey, double ptOrig[3],