From 2e15fcf59f1eb5e15f7a8cddf3c107a55e9bb6ea Mon Sep 17 00:00:00 2001 From: Dario Sassi Date: Thu, 25 Sep 2025 16:47:53 +0200 Subject: [PATCH] Include : - aggiornamento prototipi. --- EXeExecutor.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/EXeExecutor.h b/EXeExecutor.h index f9eb3f7..6767b16 100644 --- a/EXeExecutor.h +++ b/EXeExecutor.h @@ -1458,12 +1458,12 @@ 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 ExeRedisAsyncConnect( const std::string& sHost, int nPort, int nDataBase, double dMaxTimeOut) ; EXE_EXPORT bool ExeRedisDisconnect( void) ; -EXE_EXPORT bool ExeRedisAsyncDisconnect( void) ; -EXE_EXPORT bool ExeRedisGetValFromKey( const std::string& sKey, std::string& sVal) ; EXE_EXPORT bool ExeRedisSetValFromKey( const std::string& sKey, const std::string& sVal) ; -EXE_EXPORT bool ExeRedisWaitForMessage( const std::string& sChannel, double dMaxTimeOut, std::string& sMessage) ; -EXE_EXPORT bool ExeRedisPublish( const std::string& sChannel, const std::string& sMessage) ; -EXE_EXPORT bool ExeRedisSubscribe( const std::string& sChannel) ; -EXE_EXPORT bool ExeRedisUnsubscribe( const std::string& sChannel) ; +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 ExeRedisAsyncDisconnect( void) ; +EXE_EXPORT bool ExeRedisAsyncPublish( const std::string& sChannel, const std::string& sMessage) ; +EXE_EXPORT bool ExeRedisAsyncSubscribe( const std::string& sChannel) ; +EXE_EXPORT bool ExeRedisAsyncUnsubscribe( const std::string& sChannel) ; +EXE_EXPORT bool ExeRedisAsyncSubscribeOneMessage( const std::string& sChannel, double dMaxTimeOut, std::string& sMessage) ;