summaryrefslogtreecommitdiff
path: root/lib/ffs_paths.h
blob: cb0b9c3c642315d959eaed948da30028130fb107 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// **************************************************************************
// * This file is part of the FreeFileSync project. It is distributed under *
// * GNU General Public License: http://www.gnu.org/licenses/gpl.html       *
// * Copyright (C) Zenju (zenju AT gmx DOT de) - All Rights Reserved        *
// **************************************************************************

#ifndef STANDARDPATHS_H_INCLUDED
#define STANDARDPATHS_H_INCLUDED

#include <zen/zstring.h>

namespace zen
{
//------------------------------------------------------------------------------
//global program directories
//------------------------------------------------------------------------------
Zstring getResourceDir(); //resource directory WITH path separator at end
Zstring getConfigDir  (); //config directory WITH path separator at end
//------------------------------------------------------------------------------

Zstring getFreeFileSyncLauncher(); //full path to application launcher C:\...\FreeFileSync.exe
bool manualProgramUpdateRequired();
}

#endif // STANDARDPATHS_H_INCLUDED
bgstack15