From 2f6b2b7bac8d220b356134f3270eca7c267524c9 Mon Sep 17 00:00:00 2001 From: madmaxoft Date: Wed, 7 Aug 2013 14:32:08 +0200 Subject: [PATCH] cIniFile: fixed API-non-exportable function marked as API-export --- iniFile/iniFile.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/iniFile/iniFile.h b/iniFile/iniFile.h index ebbcc5081..aef45c094 100644 --- a/iniFile/iniFile.h +++ b/iniFile/iniFile.h @@ -154,7 +154,12 @@ public: return SetValueI( keyname, valuename, int(value), create); } bool SetValueF( const std::string & keyname, const std::string & valuename, const double value, const bool create = true); + + // tolua_end + bool SetValueV( const std::string & keyname, const std::string & valuename, char *format, ...); + + // tolua_begin // Deletes specified value. // Returns true if value existed and deleted, false otherwise.