chiark / gitweb /
shared/capability: go frugal on space for caps
[elogind.git] / src / shared / path-lookup.h
index 4c77bee39382d614ddfb77ddb220604f32c65c01..2ec888da811d0981cc5b41ccc4648a9b8e7d2d30 100644 (file)
@@ -22,6 +22,7 @@
 ***/
 
 #include "macro.h"
+#include "install.h"
 
 typedef struct LookupPaths {
         char **unit_path;
@@ -38,12 +39,10 @@ typedef enum SystemdRunningAs {
         _SYSTEMD_RUNNING_AS_INVALID = -1
 } SystemdRunningAs;
 
-#define _cleanup_lookup_paths_free_ _cleanup_(lookup_paths_free)
-
-const char* systemd_running_as_to_string(SystemdRunningAs i) _const_;
-SystemdRunningAs systemd_running_as_from_string(const char *s) _pure_;
-
 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,
@@ -53,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)