sd-path.h revision b26fa1a2fbcfee7d03b0c8fd15ec3aa64ae70b9f
#ifndef foosdpathhfoo
#define foosdpathhfoo
/***
This file is part of systemd.
Copyright 2014 Lennart Poettering
under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 2.1 of the License, or
(at your option) any later version.
systemd is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with systemd; If not, see <http://www.gnu.org/licenses/>.
***/
#include <inttypes.h>
#include "_sd-common.h"
enum {
/* Temporary files */
SD_PATH_TEMPORARY = 0x0ULL,
/* Vendor supplied data */
/* System configuration, runtime, state, ... */
/* Vendor supplied data */
/* User configuration, state, runtime ... */
SD_PATH_USER_CONFIGURATION, /* takes both actual configuration (like /etc) and state (like /var/lib) */
/* User resources */
SD_PATH_USER, /* $HOME itself */
/* Search paths */
};
#endif