diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2015-03-05 19:18:03 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2015-03-05 19:18:03 +0000 |
commit | d770f3eb807b9b1c9f844a005179f93893183133 (patch) | |
tree | e2b55b57e528020d789321da3a3bfc63c19448c0 /protocols/Tox/src/tox_folders.cpp | |
parent | 0611ac72c7020b46466309c19622afe0fb3bc122 (diff) |
Tox: add folders support
git-svn-id: http://svn.miranda-ng.org/main/trunk@12331 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Tox/src/tox_folders.cpp')
-rw-r--r-- | protocols/Tox/src/tox_folders.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/protocols/Tox/src/tox_folders.cpp b/protocols/Tox/src/tox_folders.cpp new file mode 100644 index 0000000000..a082aeb1b4 --- /dev/null +++ b/protocols/Tox/src/tox_folders.cpp @@ -0,0 +1,8 @@ +#include "common.h"
+
+HANDLE CToxProto::hProfileFolderPath = NULL;
+
+void CToxProto::InitFolders()
+{
+ hProfileFolderPath = FoldersRegisterCustomPathT("Tox", Translate("Profiles folder"), MIRANDA_USERDATAT);
+}
|