summaryrefslogtreecommitdiffstats
path: root/libldetect.h
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2005-03-14 12:32:43 +0000
committerPascal Rigaux <pixel@mandriva.com>2005-03-14 12:32:43 +0000
commit4fcbd8f87cab61e77ce04d958991ca59604b7e86 (patch)
tree8a087c2c5eba1cac85556d307daad7304efd6e96 /libldetect.h
parent869c403c497d881a099e401ebd9e3f3db0f75599 (diff)
downloadldetect-4fcbd8f87cab61e77ce04d958991ca59604b7e86.tar
ldetect-4fcbd8f87cab61e77ce04d958991ca59604b7e86.tar.gz
ldetect-4fcbd8f87cab61e77ce04d958991ca59604b7e86.tar.bz2
ldetect-4fcbd8f87cab61e77ce04d958991ca59604b7e86.tar.xz
ldetect-4fcbd8f87cab61e77ce04d958991ca59604b7e86.zip
add dmitable use
Diffstat (limited to 'libldetect.h')
-rw-r--r--libldetect.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/libldetect.h b/libldetect.h
index 3a55501..9146f27 100644
--- a/libldetect.h
+++ b/libldetect.h
@@ -43,3 +43,18 @@ struct usb_class_text {
};
extern struct usb_class_text usb_class2text(unsigned long class_);
+
+/******************************************************************************/
+/* dmi ************************************************************************/
+/******************************************************************************/
+struct dmi_entry {
+ char *constraints;
+ char *module;
+};
+struct dmi_entries {
+ struct dmi_entry *entries;
+ unsigned int nb;
+};
+
+extern struct dmi_entries dmi_probe(void);
+extern void dmi_entries_free(struct dmi_entries entries);