blob: 2af802a9023a868d8e05408758495eea882116a8 (
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 WITH path separator at end
const wxString& getConfigDir();
//------------------------------------------------------------------------------
}
#endif // STANDARDPATHS_H_INCLUDED
|