aboutsummaryrefslogtreecommitdiff
path: root/src/util.h
diff options
context:
space:
mode:
authorJeff Garzik <jgarzik@exmulti.com>2012-05-09 07:54:25 -0700
committerJeff Garzik <jgarzik@exmulti.com>2012-05-09 07:54:25 -0700
commit11b729d8a228c7f2ca2048905aeb3640abdfe276 (patch)
tree4f77cf1a2f7e277d0750395d136ed3e505d54ec7 /src/util.h
parentd54e6e8359f814e217365a35c222d9d461d0716e (diff)
parent3e468840bd65db734b903b0311202fc58a6dd8eb (diff)
downloadbitcoin-11b729d8a228c7f2ca2048905aeb3640abdfe276.tar.xz
Merge pull request #1134 from Diapolo/util-updates
small util.cpp/h changes
Diffstat (limited to 'src/util.h')
-rw-r--r--src/util.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/util.h b/src/util.h
index 81b36d31fd..ebd574f896 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();