summaryrefslogtreecommitdiffstats
path: root/src/dmidecode.h
diff options
context:
space:
mode:
authorDavid Sommerseth <davids@redhat.com>2009-04-09 12:12:56 +0200
committerDavid Sommerseth <davids@redhat.com>2009-04-29 11:22:11 +0200
commit95b156e3d8a6b82bddb5516735e82355f5dee50a (patch)
treedc9c346350b5e22d36bd52e828b2995fabf0dc22 /src/dmidecode.h
parent581b015c91a3b364b1c1324bed775bfd2ce99dbd (diff)
downloadpython-dmidecode-95b156e3d8a6b82bddb5516735e82355f5dee50a.tar.gz
python-dmidecode-95b156e3d8a6b82bddb5516735e82355f5dee50a.tar.xz
python-dmidecode-95b156e3d8a6b82bddb5516735e82355f5dee50a.zip
Removed all Python dependencies in dmidecode.[ch]
Diffstat (limited to 'src/dmidecode.h')
-rw-r--r--src/dmidecode.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/dmidecode.h b/src/dmidecode.h
index 9f6738d..bbc8eca 100644
--- a/src/dmidecode.h
+++ b/src/dmidecode.h
@@ -19,7 +19,6 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-#include <Python.h>
#include <libxml/tree.h>
struct dmi_header {
@@ -33,9 +32,9 @@ void dmi_dump(xmlNode *node, struct dmi_header * h);
void dmi_decode(xmlNode *handle_n, struct dmi_header * h, u16 ver);
int address_from_efi(size_t * address);
void to_dmi_header(struct dmi_header *h, u8 * data);
-int smbios_decode_set_version(u8 * buf, const char *devmem, PyObject ** pydata);
+int smbios_decode_set_version(u8 * buf, const char *devmem, xmlNode *node);
int smbios_decode(u8 * buf, const char *devmem, xmlNode *xmlnode);
-int legacy_decode_set_version(u8 * buf, const char *devmem, PyObject ** pydata);
+int legacy_decode_set_version(u8 * buf, const char *devmem, xmlNode *node);
int legacy_decode(u8 * buf, const char *devmem, xmlNode *xmlnode);
const char *dmi_string(const struct dmi_header *dm, u8 s);