diff options
Diffstat (limited to '')
-rw-r--r-- | src/path-prefix.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/path-prefix.h b/src/path-prefix.h new file mode 100644 index 0000000..681537c --- /dev/null +++ b/src/path-prefix.h @@ -0,0 +1,20 @@ +// SPDX-License-Identifier: GPL-2.0-or-later +/** @file + * TODO: insert short description here + *//* + * Authors: see git history + * + * Copyright (C) 2018 Authors + * Released under GNU GPL v2+, read the file 'COPYING' for more information. + */ + +#ifndef SEEN_PATH_PREFIX_H +#define SEEN_PATH_PREFIX_H + +#include <string> + +char const *get_inkscape_datadir(); +char const *get_program_name(); +char const *get_program_dir(); + +#endif /* _PATH_PREFIX_H_ */ |