1 /* 2 * Copyright 2020, Haiku, Inc. All Rights Reserved. 3 * Distributed under the terms of the MIT License. 4 */ 5 #ifndef _SMBIOS_MODULE_H_ 6 #define _SMBIOS_MODULE_H_ 7 8 9 #include <OS.h> 10 #include <module.h> 11 12 13 typedef struct smbios_module_info { 14 module_info info; 15 16 bool (*match_vendor_product)(const char* vendor, const char* product); 17 } smbios_module_info; 18 19 20 #define SMBIOS_MODULE_NAME "generic/smbios/driver_v1" 21 22 23 #endif // _SMBIOS_MODULE_H_ 24