summaryrefslogtreecommitdiff
path: root/shared/standardPaths.h
blob: 34f6ab486de9d49d168a8c9ae08045f79b2e006f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef STANDARDPATHS_H_INCLUDED
#define STANDARDPATHS_H_INCLUDED

#include <wx/string.h>


namespace FreeFileSync
{
//------------------------------------------------------------------------------
//global functions
//------------------------------------------------------------------------------
const wxString& getGlobalConfigFile();
const wxString& getDefaultLogDirectory();
const wxString& getLastErrorTxtFile();
const wxString& getInstallationDir(); //FreeFileSync installation directory without path separator
const wxString& getConfigDir();
//------------------------------------------------------------------------------
}

#endif // STANDARDPATHS_H_INCLUDED
bgstack15