Include :

- aggiornamento prototipi.
This commit is contained in:
DarioS
2022-09-13 08:11:43 +02:00
parent 12e3b407b0
commit d28f8a1038
4 changed files with 5 additions and 0 deletions
+1
View File
@@ -42,3 +42,4 @@ EGN_EXPORT bool ExistsDirectory( const std::string& sDir) ;
EGN_EXPORT bool CreateDirectoryEgt( const std::string& sDir) ;
EGN_EXPORT bool EmptyDirectory( const std::string& sDir) ;
EGN_EXPORT bool EraseDirectory( const std::string& sDir) ;
EGN_EXPORT bool FindAllDirectories( const std::string& sDirSpec, STRVECTOR& vsDirNames) ;
+2
View File
@@ -693,8 +693,10 @@ EIN_EXPORT wchar_t* __stdcall EgtGetLastMachMgrErrorString( void) ;
EIN_EXPORT int __stdcall EgtGetMachMgrWarningId( int nInd) ;
EIN_EXPORT wchar_t* __stdcall EgtGetMachMgrWarningString( int nInd) ;
// Machines
EIN_EXPORT BOOL __stdcall EgtGetMachines( wchar_t*& wsMachineNames, wchar_t*& wsMachineDirs) ;
EIN_EXPORT BOOL __stdcall EgtSetCurrMachine( const wchar_t* wsMachineName) ;
EIN_EXPORT BOOL __stdcall EgtGetCurrMachineName( wchar_t*& wsMachineName) ;
EIN_EXPORT BOOL __stdcall EgtGetCurrMachineDir( wchar_t*& wsMachineDir) ;
// Machining Groups
EIN_EXPORT int __stdcall EgtGetMachGroupCount( void) ;
EIN_EXPORT int __stdcall EgtGetFirstMachGroup( void) ;
+1
View File
@@ -43,6 +43,7 @@ class __declspec( novtable) IMachMgr
virtual int GetWarningId( int nInd) const = 0 ;
virtual std::string GetWarningString( int nInd) const = 0 ;
// Machines
virtual bool GetMachines( STRVECTOR& vsMachineNames, STRVECTOR& vsMachineDirs) const = 0 ;
virtual bool SetCurrMachine( const std::string& sMachineName) = 0 ;
virtual bool GetCurrMachineName( std::string& sMachineName) const = 0 ;
virtual bool GetCurrMachineDir( std::string& sMachineDir) const = 0 ;
+1
View File
@@ -852,6 +852,7 @@ EXE_EXPORT std::string ExeGetLastMachMgrErrorString( void) ;
EXE_EXPORT int ExeGetMachMgrWarningId( int nInd) ;
EXE_EXPORT std::string ExeGetMachMgrWarningString( int nInd) ;
// Machines
EXE_EXPORT bool ExeGetMachines( STRVECTOR& vsMachineNames, STRVECTOR& vsMachineDirs) ;
EXE_EXPORT bool ExeSetCurrMachine( const std::string& sMachineName) ;
EXE_EXPORT bool ExeGetCurrMachineName( std::string& sMachineName) ;
EXE_EXPORT bool ExeGetCurrMachineDir( std::string& sMachineDir) ;