summaryrefslogtreecommitdiffstats
path: root/src/dmihelper.h
diff options
context:
space:
mode:
authorDavid Sommerseth <davids@redhat.com>2009-04-30 18:24:49 +0200
committerDavid Sommerseth <davids@redhat.com>2009-04-30 18:24:49 +0200
commit27b3d2281f4b7677e908ef2505bd649305b5ac78 (patch)
tree28499e6375680510c0b0a7eb48afdf2be6a0f7a3 /src/dmihelper.h
parentcea1270777d0a5bd42284011307fe183a67f8ada (diff)
downloadpython-dmidecode-27b3d2281f4b7677e908ef2505bd649305b5ac78.tar.gz
python-dmidecode-27b3d2281f4b7677e908ef2505bd649305b5ac78.tar.xz
python-dmidecode-27b3d2281f4b7677e908ef2505bd649305b5ac78.zip
Began completing the rewrite of needed dmidecodemodule changes
Diffstat (limited to 'src/dmihelper.h')
-rw-r--r--src/dmihelper.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/dmihelper.h b/src/dmihelper.h
index 6c0b854..50cb185 100644
--- a/src/dmihelper.h
+++ b/src/dmihelper.h
@@ -9,6 +9,8 @@
#include <stdlib.h>
#include <assert.h>
+#include <libxml/tree.h>
+
#include "types.h"
#define MAXVAL 1024
@@ -110,6 +112,8 @@ typedef struct _options {
unsigned int flags;
u8 *type;
const struct string_keyword *string;
+ xmlDoc *mappingxml;
+ xmlNode *dmiversion_n;
PyObject *dumpfile;
} options;
extern options opt;