X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=program%2Fsrc%2Frrd_graph.h;h=cf99c8e4e946fed0bd768eefbae447ca1f046a0b;hb=67d52437eb384f4c7ec43df26ad44eaa243a1b67;hp=fa5e7ceac0135fac2f16e24b731346f525b593ba;hpb=fcd317a0447e81bcb5ddd51177331c8c50b25dc2;p=rrdtool-all.git diff --git a/program/src/rrd_graph.h b/program/src/rrd_graph.h index fa5e7cea..cf99c8e4 100644 --- a/program/src/rrd_graph.h +++ b/program/src/rrd_graph.h @@ -1,3 +1,6 @@ +#ifndef _RRD_GRAPH_H +#define _RRD_GRAPH_H + #include "rrd_tool.h" #include "rrd_rpncalc.h" #include "rrd_gfx.h" @@ -9,6 +12,7 @@ #define ALTAUTOSCALE 0x02 /* use alternative algorithm to find lower and upper bounds */ #define ALTAUTOSCALE_MAX 0x04 /* use alternative algorithm to find upper bounds */ #define NOLEGEND 0x08 /* use no legend */ +#define NOMINOR 0x20 /* Turn off minor gridlines */ enum tmt_en {TMT_SECOND=0,TMT_MINUTE,TMT_HOUR,TMT_DAY, @@ -218,3 +222,5 @@ int vdef_parse(struct graph_desc_t *,char *); int vdef_calc(image_desc_t *, int); int vdef_percent_compar(const void *,const void *); int graph_size_location(image_desc_t *, int, int); + +#endif