Include :

- aggiornamento prototipi.
This commit is contained in:
Dario Sassi
2020-03-07 09:01:37 +00:00
parent e4d379d99e
commit 2ebad3f419
3 changed files with 27 additions and 0 deletions
+9
View File
@@ -684,10 +684,19 @@ EIN_EXPORT BOOL __stdcall EgtTdbSetCurrToolParamBool( int nType, BOOL bVal) ;
EIN_EXPORT BOOL __stdcall EgtTdbSetCurrToolParamInt( int nType, int nVal) ;
EIN_EXPORT BOOL __stdcall EgtTdbSetCurrToolParamDouble( int nType, double dVal) ;
EIN_EXPORT BOOL __stdcall EgtTdbSetCurrToolParamString( int nType, const wchar_t* wsVal) ;
EIN_EXPORT BOOL __stdcall EgtTdbSetCurrToolValInNotesBool( int nType, const wchar_t* wsKey, BOOL bVal) ;
EIN_EXPORT BOOL __stdcall EgtTdbSetCurrToolValInNotesInt( int nType, const wchar_t* wsKey, int nVal) ;
EIN_EXPORT BOOL __stdcall EgtTdbSetCurrToolValInNotesDouble( int nType, const wchar_t* wsKey, double dVal) ;
EIN_EXPORT BOOL __stdcall EgtTdbSetCurrToolValInNotesString( int nType, const wchar_t* wsKey, const wchar_t* wsVal) ;
EIN_EXPORT BOOL __stdcall EgtTdbRemoveCurrToolValInNotes( int nType, const wchar_t* wsKey) ;
EIN_EXPORT BOOL __stdcall EgtTdbGetCurrToolParamBool( int nType, BOOL* pbVal) ;
EIN_EXPORT BOOL __stdcall EgtTdbGetCurrToolParamInt( int nType, int* pnVal) ;
EIN_EXPORT BOOL __stdcall EgtTdbGetCurrToolParamDouble( int nType, double* pdVal) ;
EIN_EXPORT BOOL __stdcall EgtTdbGetCurrToolParamString( int nType, wchar_t*& wsVal) ;
EIN_EXPORT BOOL __stdcall EgtTdbGetCurrToolValInNotesBool( int nType, const wchar_t* wsKey, BOOL* pbVal) ;
EIN_EXPORT BOOL __stdcall EgtTdbGetCurrToolValInNotesInt( int nType, const wchar_t* wsKey, int* pnVal) ;
EIN_EXPORT BOOL __stdcall EgtTdbGetCurrToolValInNotesDouble( int nType, const wchar_t* wsKey, double* pdVal) ;
EIN_EXPORT BOOL __stdcall EgtTdbGetCurrToolValInNotesString( int nType, const wchar_t* wsKey, wchar_t*& wsVal) ;
EIN_EXPORT BOOL __stdcall EgtTdbGetCurrToolMaxDepth( double* pdVal) ;
EIN_EXPORT int __stdcall EgtTdbCurrToolDraw( int nGenCtx, int nToolCtx) ;
EIN_EXPORT BOOL __stdcall EgtTdbReload( void) ;
+9
View File
@@ -127,10 +127,19 @@ class __declspec( novtable) IMachMgr
virtual bool TdbSetCurrToolParam( int nType, int nVal) = 0 ;
virtual bool TdbSetCurrToolParam( int nType, double dVal) = 0 ;
virtual bool TdbSetCurrToolParam( int nType, const std::string& sVal) = 0 ;
virtual bool TdbSetCurrToolValInNotes( int nType, const std::string& sKey, bool bVal) = 0 ;
virtual bool TdbSetCurrToolValInNotes( int nType, const std::string& sKey, int nVal) = 0 ;
virtual bool TdbSetCurrToolValInNotes( int nType, const std::string& sKey, double dVal) = 0 ;
virtual bool TdbSetCurrToolValInNotes( int nType, const std::string& sKey, const std::string& sVal) = 0 ;
virtual bool TdbRemoveCurrToolValInNotes( int nType, const std::string& sKey) = 0 ;
virtual bool TdbGetCurrToolParam( int nType, bool& bVal) const = 0 ;
virtual bool TdbGetCurrToolParam( int nType, int& nVal) const = 0 ;
virtual bool TdbGetCurrToolParam( int nType, double& dVal) const = 0 ;
virtual bool TdbGetCurrToolParam( int nType, std::string& sVal) const = 0 ;
virtual bool TdbGetCurrToolValInNotes( int nType, const std::string& sKey, bool& bVal) const = 0 ;
virtual bool TdbGetCurrToolValInNotes( int nType, const std::string& sKey, int& nVal) const = 0 ;
virtual bool TdbGetCurrToolValInNotes( int nType, const std::string& sKey, double& dVal) const = 0 ;
virtual bool TdbGetCurrToolValInNotes( int nType, const std::string& sKey, std::string& sVal) const = 0 ;
virtual bool TdbGetCurrToolMaxDepth( double& dMaxDepth) const = 0 ;
virtual bool TdbGetCurrToolThDiam( double& dThDiam) const = 0 ;
virtual int TdbCurrToolDraw( int nGenCtx, int nToolCtx) const = 0 ;
+9
View File
@@ -813,10 +813,19 @@ EXE_EXPORT bool ExeTdbSetCurrToolParam( int nType, bool bVal) ;
EXE_EXPORT bool ExeTdbSetCurrToolParam( int nType, int nVal) ;
EXE_EXPORT bool ExeTdbSetCurrToolParam( int nType, double dVal) ;
EXE_EXPORT bool ExeTdbSetCurrToolParam( int nType, const std::string& sVal) ;
EXE_EXPORT bool ExeTdbSetCurrToolValInNotes( int nType, const std::string& sKey, bool bVal) ;
EXE_EXPORT bool ExeTdbSetCurrToolValInNotes( int nType, const std::string& sKey, int nVal) ;
EXE_EXPORT bool ExeTdbSetCurrToolValInNotes( int nType, const std::string& sKey, double dVal) ;
EXE_EXPORT bool ExeTdbSetCurrToolValInNotes( int nType, const std::string& sKey, const std::string& sVal) ;
EXE_EXPORT bool ExeTdbRemoveCurrToolValInNotes( int nType, const std::string& sKey) ;
EXE_EXPORT bool ExeTdbGetCurrToolParam( int nType, bool& nVal) ;
EXE_EXPORT bool ExeTdbGetCurrToolParam( int nType, int& nVal) ;
EXE_EXPORT bool ExeTdbGetCurrToolParam( int nType, double& dVal) ;
EXE_EXPORT bool ExeTdbGetCurrToolParam( int nType, std::string& sVal) ;
EXE_EXPORT bool ExeTdbGetCurrToolValInNotes( int nType, const std::string& sKey, bool& bVal) ;
EXE_EXPORT bool ExeTdbGetCurrToolValInNotes( int nType, const std::string& sKey, int& nVal) ;
EXE_EXPORT bool ExeTdbGetCurrToolValInNotes( int nType, const std::string& sKey, double& dVal) ;
EXE_EXPORT bool ExeTdbGetCurrToolValInNotes( int nType, const std::string& sKey, std::string& sVal) ;
EXE_EXPORT bool ExeTdbGetCurrToolMaxDepth( double& dMaxDepth) ;
EXE_EXPORT bool ExeTdbGetCurrToolThDiam( double& dThDiam) ;
EXE_EXPORT int ExeTdbCurrToolDraw( int nGenCtx, int nToolCtx) ;