summaryrefslogtreecommitdiffstats
path: root/libldetect.h
diff options
context:
space:
mode:
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);