diff options
| author | Philip Kaufmann <[email protected]> | 2012-04-22 16:22:45 +0200 |
|---|---|---|
| committer | Philip Kaufmann <[email protected]> | 2012-05-09 12:22:58 +0200 |
| commit | 3e468840bd65db734b903b0311202fc58a6dd8eb (patch) | |
| tree | f738fe1eda1062ec6cb4f9a9dc225da962d9c6b0 /src/util.h | |
| parent | Merge pull request #1211 from Diapolo/harmonize_ellipsis (diff) | |
| download | discoin-3e468840bd65db734b903b0311202fc58a6dd8eb.tar.xz discoin-3e468840bd65db734b903b0311202fc58a6dd8eb.zip | |
util.h/.ccp: modifiy some comments / rename MyGetSpecialFolderPath() -> GetSpecialFolderPath(), set fCreate default to true and remove the fallback (not Win >= Vista compatible anyway) / remove namespace fs stuff where only used once / misc small changes'
Diffstat (limited to 'src/util.h')
| -rw-r--r-- | src/util.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/util.h b/src/util.h index 5f8d0375d..319664cac 100644 --- a/src/util.h +++ b/src/util.h @@ -163,6 +163,9 @@ boost::filesystem::path GetConfigFile(); boost::filesystem::path GetPidFile(); void CreatePidFile(const boost::filesystem::path &path, pid_t pid); void ReadConfigFile(std::map<std::string, std::string>& mapSettingsRet, std::map<std::string, std::vector<std::string> >& mapMultiSettingsRet); +#ifdef WIN32 +boost::filesystem::path GetSpecialFolderPath(int nFolder, bool fCreate = true); +#endif bool GetStartOnSystemStartup(); bool SetStartOnSystemStartup(bool fAutoStart); void ShrinkDebugFile(); |