X-Git-Url: http://git.wpitchoune.net/gitweb/?a=blobdiff_plain;f=src%2Ftw.h;h=c3fe2b464f7feee0c1732e0eb93f24a25bcf8c00;hb=64d52e239f715717646357783d01ff8650dbdb2d;hp=6790b96044a31e9eed6c1c2be8f45b8abcecc7df;hpb=a2a8032740a38115ffdca3d7356a50196c75a6b7;p=ptask.git diff --git a/src/tw.h b/src/tw.h index 6790b96..c3fe2b4 100644 --- a/src/tw.h +++ b/src/tw.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2012-2013 jeanfi@gmail.com + * Copyright (C) 2012-2016 jeanfi@gmail.com * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as @@ -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; @@ -52,4 +54,7 @@ void tw_task_list_free(struct task **tasks); struct project **tw_get_projects(struct task **tasks); void tw_project_list_free(struct project **); +/* Whether ptask check that the taskwarrior version is supported. */ +void tw_enable_check_version(int e); + #endif