1 #ifndef CPER_SECTION_DMAR_IOMMU_H 2 #define CPER_SECTION_DMAR_IOMMU_H 3 4 #ifdef __cplusplus 5 extern "C" { 6 #endif 7 8 #include <stdio.h> 9 #include <json.h> 10 #include <libcper/Cper.h> 11 12 json_object *cper_section_dmar_iommu_to_ir(const UINT8 *section, UINT32 size, 13 char **desc_string); 14 void ir_section_dmar_iommu_to_cper(json_object *section, FILE *out); 15 16 #ifdef __cplusplus 17 } 18 #endif 19 20 #endif 21