add new main.c and fix Makefile/headers
[project/procd.git] / service.h
1 #ifndef __PROCD_SERVICE_H
2 #define __PROCD_SERVICE_H
3
4 #include <libubox/avl.h>
5 #include <libubox/vlist.h>
6
7 extern struct avl_tree services;
8
9 struct service {
10         struct avl_node avl;
11         const char *name;
12
13         struct blob_attr *config;
14         struct vlist_tree instances;
15 };
16
17 #endif