summaryrefslogtreecommitdiff
path: root/cvsps_types.h
diff options
context:
space:
mode:
Diffstat (limited to 'cvsps_types.h')
-rw-r--r--cvsps_types.h11
1 files changed, 9 insertions, 2 deletions
diff --git a/cvsps_types.h b/cvsps_types.h
index dba145d..74c3cd8 100644
--- a/cvsps_types.h
+++ b/cvsps_types.h
@@ -21,6 +21,7 @@ typedef struct _PatchSetRange PatchSetRange;
typedef struct _CvsFileRevision CvsFileRevision;
typedef struct _GlobalSymbol GlobalSymbol;
typedef struct _Tag Tag;
+typedef struct _TagName TagName;
struct _CvsFileRevision
{
@@ -112,8 +113,7 @@ struct _PatchSet
time_t max_date;
char *descr;
char *author;
- char *tag;
- int tag_flags;
+ struct list_head tags;
char *branch;
char *ancestor_branch;
struct list_head members;
@@ -159,4 +159,11 @@ struct _Tag
struct list_head rev_link;
};
+struct _TagName
+{
+ char * name;
+ int flags;
+ struct list_head link;
+};
+
#endif /* CVSPS_TYPES_H */