diff options
author | David Sommerseth <davids@redhat.com> | 2009-04-08 19:02:03 +0200 |
---|---|---|
committer | David Sommerseth <davids@redhat.com> | 2009-04-29 11:22:11 +0200 |
commit | 612445e94781f14af65490b52c898b9eaa5f5e85 (patch) | |
tree | 436c4c95a1aa1b5069d6ca1c84e4794975b1513b /src/dmidecode.h | |
parent | 0cdb1cbffae8237635b991993ee4467e2753dafa (diff) | |
download | python-dmidecode-612445e94781f14af65490b52c898b9eaa5f5e85.tar.gz python-dmidecode-612445e94781f14af65490b52c898b9eaa5f5e85.tar.xz python-dmidecode-612445e94781f14af65490b52c898b9eaa5f5e85.zip |
Ported most functions to XML interface
Still do not compile
Diffstat (limited to 'src/dmidecode.h')
-rw-r--r-- | src/dmidecode.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/dmidecode.h b/src/dmidecode.h index b8c70fa..9f6738d 100644 --- a/src/dmidecode.h +++ b/src/dmidecode.h @@ -18,7 +18,9 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ + #include <Python.h> +#include <libxml/tree.h> struct dmi_header { u8 type; @@ -27,18 +29,17 @@ struct dmi_header { u8 *data; }; -PyObject *dmi_dump(struct dmi_header *h); +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(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); +int legacy_decode(u8 * buf, const char *devmem, xmlNode *xmlnode); const char *dmi_string(const struct dmi_header *dm, u8 s); void dmi_system_uuid(xmlNode *node, const u8 * p, u16 ver); -PyObject *dmi_system_uuid_py(const u8 * p, u16 ver); void dmi_chassis_type(xmlNode *node, u8 code); int dmi_processor_frequency(const u8 * p); |