Rev 2758 | Rev 2763 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 2758 | Rev 2760 | ||
|---|---|---|---|
| Line 40... | Line 40... | ||
| 40 | #include <stdint.h> |
40 | #include <stdint.h> |
| 41 | #include <ipc/ipc.h> |
41 | #include <ipc/ipc.h> |
| 42 | #include <async.h> |
42 | #include <async.h> |
| 43 | 43 | ||
| 44 | typedef struct { |
44 | typedef struct { |
| 45 | bool (* match)(void *, const char *); |
45 | bool (* match)(void *, void *, const char *); |
| 46 | void * (* create)(int); |
46 | void * (* create)(int); |
| 47 | void (* destroy)(void *); |
47 | void (* destroy)(void *); |
| 48 | bool (* link)(void *, void *, const char *); |
48 | bool (* link)(void *, void *, const char *); |
| 49 | int (* unlink)(void *, void *); |
49 | int (* unlink)(void *, void *); |
| 50 | unsigned long (* index_get)(void *); |
50 | unsigned long (* index_get)(void *); |