X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=src%2Fshared%2Fpath-lookup.h;h=2ec888da811d0981cc5b41ccc4648a9b8e7d2d30;hb=1c7dd82563ff2e71a067aea20d2acb2d0553644b;hp=2fe8173f442336004f8f725aeb200087dd523d63;hpb=69a67d6aaec068654c0431e9156a91afcf75b7dd;p=elogind.git diff --git a/src/shared/path-lookup.h b/src/shared/path-lookup.h index 2fe8173f4..2ec888da8 100644 --- a/src/shared/path-lookup.h +++ b/src/shared/path-lookup.h @@ -22,6 +22,7 @@ ***/ #include "macro.h" +#include "install.h" typedef struct LookupPaths { char **unit_path; @@ -38,9 +39,10 @@ typedef enum SystemdRunningAs { _SYSTEMD_RUNNING_AS_INVALID = -1 } SystemdRunningAs; -#define _cleanup_lookup_paths_free_ _cleanup_(lookup_paths_free) - int user_config_home(char **config_home); +int user_runtime_dir(char **runtime_dir); + +char **generator_paths(SystemdRunningAs running_as); int lookup_paths_init(LookupPaths *p, SystemdRunningAs running_as, @@ -50,3 +52,8 @@ int lookup_paths_init(LookupPaths *p, const char *generator_early, const char *generator_late); void lookup_paths_free(LookupPaths *p); +int lookup_paths_init_from_scope(LookupPaths *paths, + UnitFileScope scope, + const char *root_dir); + +#define _cleanup_lookup_paths_free_ _cleanup_(lookup_paths_free)