blob: 64811246d9ff1bd68353062d216bf76476d93cf4 (
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
|