diff options
author | David Sommerseth <davids@redhat.com> | 2009-04-30 18:24:49 +0200 |
---|---|---|
committer | David Sommerseth <davids@redhat.com> | 2009-04-30 18:24:49 +0200 |
commit | 27b3d2281f4b7677e908ef2505bd649305b5ac78 (patch) | |
tree | 28499e6375680510c0b0a7eb48afdf2be6a0f7a3 /src/dmidecode.h | |
parent | cea1270777d0a5bd42284011307fe183a67f8ada (diff) | |
download | python-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/dmidecode.h')
-rw-r--r-- | src/dmidecode.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/dmidecode.h b/src/dmidecode.h index ef13ce3..04d8f04 100644 --- a/src/dmidecode.h +++ b/src/dmidecode.h @@ -29,12 +29,12 @@ struct dmi_header { }; void dmi_dump(xmlNode *node, struct dmi_header * h); -xmlNode *dmi_decode(struct dmi_header * h, u16 ver); +xmlNode *dmi_decode(xmlNode *parent_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, xmlNode *node); +xmlNode *smbios_decode_set_version(u8 * buf, const char *devmem); int smbios_decode(u8 * buf, const char *devmem, xmlNode *xmlnode); -int legacy_decode_set_version(u8 * buf, const char *devmem, xmlNode *node); +xmlNode *legacy_decode_set_version(u8 * buf, const char *devmem); int legacy_decode(u8 * buf, const char *devmem, xmlNode *xmlnode); const char *dmi_string(const struct dmi_header *dm, u8 s); |