Include :

- modifica prototipi per funzioni redis
- aggiunta funzione GetValInNotes con parametro aggiuntivo.
This commit is contained in:
Riccardo Elitropi
2025-09-26 11:55:43 +02:00
parent f6caa955e2
commit 7727db9a8a
2 changed files with 41 additions and 6 deletions
+2 -2
View File
@@ -1457,11 +1457,11 @@ EXE_EXPORT const std::string& ExeGetLanguage( void) ;
EXE_EXPORT const std::string& ExeGetMsg( int nMsg) ;
// Redis
EXE_EXPORT bool ExeRedisConnect( const std::string& sHost, int nPort, int nDataBase, double dTimeOutSeconds) ;
EXE_EXPORT bool ExeRedisConnect( const std::string& sConnection) ;
EXE_EXPORT bool ExeRedisDisconnect( void) ;
EXE_EXPORT bool ExeRedisSetValFromKey( const std::string& sKey, const std::string& sVal) ;
EXE_EXPORT bool ExeRedisGetValFromKey( const std::string& sKey, std::string& sVal) ;
EXE_EXPORT bool ExeRedisAsyncConnect( const std::string& sHost, int nPort, int nDataBase, double dMaxTimeOut) ;
EXE_EXPORT bool ExeRedisAsyncConnect( const std::string& sConnection) ;
EXE_EXPORT bool ExeRedisAsyncDisconnect( void) ;
EXE_EXPORT bool ExeRedisAsyncPublish( const std::string& sChannel, const std::string& sMessage) ;
EXE_EXPORT bool ExeRedisAsyncSubscribe( const std::string& sChannel) ;