|
Revision 5f388ee20a06c319202cb070628c7bc827ffbb0a, 0.5 kB
(checked in by Theo Schlossnagle <jesus@omniti.com>, 5 years ago)
|
split out the noit(check) specific conf stuff into its own file
|
- Property mode set to
100644
|
| Line | |
|---|
| 1 |
/* |
|---|
| 2 |
* Copyright (c) 2007, OmniTI Computer Consulting, Inc. |
|---|
| 3 |
* All rights reserved. |
|---|
| 4 |
*/ |
|---|
| 5 |
|
|---|
| 6 |
#ifndef _NOIT_CONF_PRIVATE_H |
|---|
| 7 |
#define _NOIT_CONF_PRIVATE_H |
|---|
| 8 |
|
|---|
| 9 |
#include "noit_defines.h" |
|---|
| 10 |
#include "utils/noit_hash.h" |
|---|
| 11 |
#include "noit_console.h" |
|---|
| 12 |
|
|---|
| 13 |
#include <libxml/parser.h> |
|---|
| 14 |
#include <libxml/tree.h> |
|---|
| 15 |
#include <libxml/xpath.h> |
|---|
| 16 |
|
|---|
| 17 |
API_EXPORT(int) noit_conf_xml_xpath(xmlDocPtr *mc, xmlXPathContextPtr *xp); |
|---|
| 18 |
API_EXPORT(int) |
|---|
| 19 |
_noit_conf_get_string(noit_conf_section_t section, xmlNodePtr *vnode, |
|---|
| 20 |
const char *path, char **value); |
|---|
| 21 |
|
|---|
| 22 |
#endif |
|---|