summaryrefslogtreecommitdiff
path: root/shared/standard_paths.h
diff options
context:
space:
mode:
Diffstat (limited to 'shared/standard_paths.h')
-rw-r--r--shared/standard_paths.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/shared/standard_paths.h b/shared/standard_paths.h
index 5ecae9a7..faafe263 100644
--- a/shared/standard_paths.h
+++ b/shared/standard_paths.h
@@ -10,16 +10,16 @@
#include <wx/string.h>
-namespace ffs3
+namespace zen
{
//------------------------------------------------------------------------------
//global program directories
//------------------------------------------------------------------------------
-const wxString& getBinaryDir(); //directory containing executable WITH path separator at end
-const wxString& getResourceDir(); //resource directory WITH path separator at end
-const wxString& getConfigDir(); //config directory WITH path separator at end
+wxString getResourceDir(); //resource directory WITH path separator at end
+wxString getConfigDir(); //config directory WITH path separator at end
//------------------------------------------------------------------------------
+wxString getLauncher(); //full path to application launcher C:\...\FreeFileSync.exe
bool isPortableVersion();
}
bgstack15