Imported Upstream version 0.0.7
[ptask-pkg-ubuntu.git] / src / tw.h
index 6f3c177..684c56f 100644 (file)
--- a/src/tw.h
+++ b/src/tw.h
@@ -29,6 +29,8 @@ struct task {
        char *project;
        char *priority;
        char *urgency;
+       char *recur;
+       char **tags;
        struct tm *entry;
        struct tm *due;
        struct tm *start;
@@ -43,7 +45,9 @@ struct task **tw_get_all_tasks(const char *status);
 void tw_modify_description(const char *uuid, const char *newdesc);
 void tw_modify_project(const char *uuid, const char *newproj);
 void tw_modify_priority(const char *uuid, const char *priority);
-void tw_done(const char *uuid);
+void tw_task_done(const char *uuid);
+void tw_task_start(const char *uuid);
+void tw_task_stop(const char *uuid);
 void tw_task_remove(const char *);
 void tw_add(const char *newdesc, const char *prj, const char *prio);
 void tw_task_list_free(struct task **tasks);