Added ability to query lib locations to windows builds

This commit is contained in:
Adam Potolsky
2015-06-10 13:18:39 -07:00
parent 8366bb6247
commit fa0dfa0ded
4 changed files with 66 additions and 1 deletions

View File

@@ -56,4 +56,11 @@ public:
*/
virtual void setting(const std::string& valueName, const std::string& valueString) const = 0;
//@}
//! Get the pathnames of the libraries used by Synergy
/*
Returns a string containing the full path names of all loaded libraries at the point it is called.
*/
virtual std::string getLibsUsed(void) const = 0;
//@}
};