1 #ifndef CPER_GENERATE_H 2 #define CPER_GENERATE_H 3 4 #ifdef __cplusplus 5 extern "C" { 6 #endif 7 8 #include <stdio.h> 9 #include "../edk/BaseTypes.h" 10 11 void generate_cper_record(char **types, UINT16 num_sections, FILE *out); 12 void generate_single_section_record(char *type, FILE *out); 13 14 #ifdef __cplusplus 15 } 16 #endif 17 18 #endif 19