diff options
author | nima <nima@abc39116-655e-4be6-ad55-d661dc543056> | 2008-10-31 09:01:41 +0000 |
---|---|---|
committer | nima <nima@abc39116-655e-4be6-ad55-d661dc543056> | 2008-10-31 09:01:41 +0000 |
commit | f81f2790ea8c0f592418fc2a6fc2c900866e18d4 (patch) | |
tree | 21d69b4c02644691c69a4fa4affff30f4ac22020 /dmidecode.h | |
parent | 3dd06d10c6b4465bb05203393ae192cb98d511d4 (diff) | |
download | python-dmidecode-f81f2790ea8c0f592418fc2a6fc2c900866e18d4.tar.gz python-dmidecode-f81f2790ea8c0f592418fc2a6fc2c900866e18d4.tar.xz python-dmidecode-f81f2790ea8c0f592418fc2a6fc2c900866e18d4.zip |
Removed traces of `_'.
git-svn-id: svn://svn.autonomy.net.au/python-dmidecode@93 abc39116-655e-4be6-ad55-d661dc543056
Diffstat (limited to 'dmidecode.h')
-rw-r--r-- | dmidecode.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dmidecode.h b/dmidecode.h index 56e072a..860f212 100644 --- a/dmidecode.h +++ b/dmidecode.h @@ -26,7 +26,7 @@ struct dmi_header { u8 *data; }; -void dmi_dump(struct dmi_header *h); +PyObject *dmi_dump(struct dmi_header *h); //void dmi_decode(struct dmi_header *h, u16 ver, PyObject *pydata); PyObject* dmi_decode(struct dmi_header *h, u16 ver); int address_from_efi(size_t *address); @@ -35,7 +35,7 @@ int smbios_decode(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, char *_); +const char *dmi_system_uuid(u8 *p); PyObject *dmi_system_uuid_py(const u8 *p, u16 ver); const char *dmi_chassis_type(u8 code); int dmi_processor_frequency(const u8 *p); |