Search
lxdream.org :: lxdream/src/paths_unix.c :: diff
lxdream 0.9.1
released Jun 29
Download Now
filename src/paths_unix.c
changeset 964:f2f3c7612d06
next1021:848db285a184
author nkeynes
date Wed Mar 04 23:12:21 2009 +0000 (15 years ago)
permissions -rw-r--r--
last change Move xltcache to xlat/ src directory
Commit new and improved x86 opcode file - cleaned up and added support for amd64 extended registers
file annotate diff log raw
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/src/paths_unix.c Wed Mar 04 23:12:21 2009 +0000
1.3 @@ -0,0 +1,32 @@
1.4 +/**
1.5 + * $Id: cocoaui.c 863 2008-09-06 05:21:57Z nkeynes $
1.6 + *
1.7 + * Wrappers for system-dependent functions (mainly path differences)
1.8 + *
1.9 + * Copyright (c) 2008 Nathan Keynes.
1.10 + *
1.11 + * This program is free software; you can redistribute it and/or modify
1.12 + * it under the terms of the GNU General Public License as published by
1.13 + * the Free Software Foundation; either version 2 of the License, or
1.14 + * (at your option) any later version.
1.15 + *
1.16 + * This program is distributed in the hope that it will be useful,
1.17 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
1.18 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1.19 + * GNU General Public License for more details.
1.20 + */
1.21 +
1.22 +#include <string.h>
1.23 +
1.24 +#include "lxdream.h"
1.25 +
1.26 +const char *get_sysconf_path()
1.27 +{
1.28 + return PACKAGE_CONF_DIR;
1.29 +}
1.30 +
1.31 +const char *get_locale_path()
1.32 +{
1.33 + return PACKAGE_LOCALE_DIR;
1.34 +}
1.35 +
.