diff options
author | David Sommerseth <davids@redhat.com> | 2009-04-07 09:27:47 +0200 |
---|---|---|
committer | David Sommerseth <davids@redhat.com> | 2009-04-29 11:22:11 +0200 |
commit | 0cdb1cbffae8237635b991993ee4467e2753dafa (patch) | |
tree | 82ced5c5a9641b2b679087545c35045b6a41731b /src/dmidecode.h | |
parent | a35afd0190f6a6925aa134ac43d2653aaf018ff8 (diff) | |
download | python-dmidecode-0cdb1cbffae8237635b991993ee4467e2753dafa.tar.gz python-dmidecode-0cdb1cbffae8237635b991993ee4467e2753dafa.tar.xz python-dmidecode-0cdb1cbffae8237635b991993ee4467e2753dafa.zip |
Checked in a work in progress - Python dict -> XML
Does not compile yet
Diffstat (limited to 'src/dmidecode.h')
-rw-r--r-- | src/dmidecode.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/dmidecode.h b/src/dmidecode.h index 066363f..b8c70fa 100644 --- a/src/dmidecode.h +++ b/src/dmidecode.h @@ -28,18 +28,18 @@ struct dmi_header { }; PyObject *dmi_dump(struct dmi_header *h); -PyObject *dmi_decode(struct dmi_header *h, u16 ver); +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(u8 * buf, const char *devmem, PyObject * pydata); +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(u8 * buf, const char *devmem, PyObject * pydata); const char *dmi_string(const struct dmi_header *dm, u8 s); -const char *dmi_system_uuid(u8 * p); +void dmi_system_uuid(xmlNode *node, const u8 * p, u16 ver); PyObject *dmi_system_uuid_py(const u8 * p, u16 ver); -const char *dmi_chassis_type(u8 code); +void dmi_chassis_type(xmlNode *node, u8 code); int dmi_processor_frequency(const u8 * p); int dump(const char *dumpfile); |