blob: 67704c614e023d3153c1c7d6d28022730e30955e (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef CTDB_CMDLINE_H
#define CTDB_CMDLINE_H
extern struct poptOption popt_ctdb_cmdline[];
#define POPT_CTDB_CMDLINE { NULL, 0, POPT_ARG_INCLUDE_TABLE, popt_ctdb_cmdline, 0, "Common ctdb test options:", NULL },
struct ctdb_context *ctdb_cmdline_init(struct event_context *ev);
#endif /* CTDB_CMDLINE_H */
|