index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
author | Nagy Gabor <ngaba@petra.hos.u-szeged.hu> | 2007-06-10 23:51:20 +0200 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2007-06-10 22:13:58 -0400 |
commit | 544bcbe6641bb94a429a9c149893bc0b07fd2619 (patch) | |
tree | 7e88da506f5c1269a8014688c08b4bec63505eb9 /lib/libalpm/deps.h | |
parent | 8588b4823b579bc41909734f5a13a420d64487d6 (diff) |
-rw-r--r-- | lib/libalpm/deps.h | 9 |
diff --git a/lib/libalpm/deps.h b/lib/libalpm/deps.h index 8f3a9b91..132f21f4 100644 --- a/lib/libalpm/deps.h +++ b/lib/libalpm/deps.h @@ -42,6 +42,15 @@ struct __pmdepmissing_t { pmdepend_t depend; }; +/* Graphs */ +struct __pmgraph_t { + int state; /* 0: untouched, -1: entered, other: leaving time */ + void *data; + struct __pmgraph_t *parent; /* where did we come from? */ + alpm_list_t *children; + alpm_list_t *childptr; /* points to a child in children list */ +}; + pmdepmissing_t *_alpm_depmiss_new(const char *target, pmdeptype_t type, pmdepmod_t depmod, const char *depname, const char *depversion); |