diff options
Diffstat (limited to 'includes')
-rw-r--r-- | includes/dmi_util.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/includes/dmi_util.h b/includes/dmi_util.h index d557d58b..bb56c31a 100644 --- a/includes/dmi_util.h +++ b/includes/dmi_util.h @@ -39,8 +39,16 @@ char *dmi_get_str_abs(const char *id_str); /* include nonsense */ char *dmi_chassis_type_str(int chassis_type, gboolean with_val); typedef struct { + dmi_handle id; + uint32_t size; + dmi_type type; + const char *type_str; /* untranslated, use _() for translation */ +} dmi_handle_ext; + +typedef struct { uint32_t count; dmi_handle *handles; + dmi_handle_ext *handles_ext; } dmi_handle_list; /* get a list of handles that match a dmi_type */ |