Skip to content
Snippets Groups Projects
Commit 6e2092a7 authored by Eric Vidal's avatar Eric Vidal :speech_balloon:
Browse files

pass DATA_XXX from resolve.h to graph.h

parent 1fcdcc0d
No related branches found
No related tags found
No related merge requests found
......@@ -19,8 +19,13 @@
#include <oblibs/graph.h>
extern int graph_add_deps(graph_t *g, char const *vertex, char const *edge, uint8_t requiredby) ;
extern int graph_build(graph_t *g,char const *base, char const *treename, uint8_t what) ;
#define DATA_SERVICE 0
#define DATA_TREE 1
#define DATA_TREE_MASTER 2
extern int graph_build_g(graph_t *g, char const *base, char const *treename, uint8_t data_type) ;
extern int graph_build_tree(graph_t *g,char const *base) ;
extern int graph_build_service_bytree(graph_t *g, char const *tree, uint8_t what) ;
extern int graph_add_deps(graph_t *g, char const *vertex, char const *edge, uint8_t requiredby) ;
#endif
......@@ -20,14 +20,10 @@
#include <skalibs/genalloc.h>
#include <skalibs/stralloc.h>
#include <skalibs/types.h>
#include <skalibs/cdb.h>
#include <skalibs/cdbmake.h>
#include <skalibs/gccattributes.h>
#include <66/ssexec.h>
#include <66/parser.h>
#include <66/graph.h>
#define SS_RESOLVE "/.resolve"
#define SS_RESOLVE_LEN (sizeof SS_RESOLVE - 1)
......@@ -39,10 +35,6 @@
#define SS_SIMPLE 0
#define SS_DOUBLE 1
#define DATA_SERVICE 0
#define DATA_TREE 1
#define DATA_TREE_MASTER 2
typedef struct resolve_wrapper_s resolve_wrapper_t, *resolve_wrapper_t_ref ;
struct resolve_wrapper_s
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment