summaryrefslogtreecommitdiff
path: root/job.h
diff options
context:
space:
mode:
Diffstat (limited to 'job.h')
-rw-r--r--job.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/job.h b/job.h
index 83401e8c1f..132c46db7e 100644
--- a/job.h
+++ b/job.h
@@ -46,7 +46,8 @@ enum JobState {
enum JobMode {
JOB_FAIL,
JOB_REPLACE,
- _JOB_MODE_MAX
+ _JOB_MODE_MAX,
+ _JOB_MODE_INVALID = -1
};
struct JobDependency {
@@ -114,6 +115,9 @@ JobType job_type_from_string(const char *s);
const char* job_state_to_string(JobState t);
JobState job_state_from_string(const char *s);
+const char* job_mode_to_string(JobMode t);
+JobMode job_mode_from_string(const char *s);
+
char *job_dbus_path(Job *j);
#endif