Lawrence Tang | d34f2b1 | 2022-07-19 15:36:31 +0100 | [diff] [blame] | 1 | #ifndef CPER_GENERATE_H |
| 2 | #define CPER_GENERATE_H |
| 3 | |
| 4 | #include <stdio.h> |
| 5 | #include "../edk/BaseTypes.h" |
| 6 | |
John Chung | f8fc705 | 2024-05-03 20:05:29 +0800 | [diff] [blame] | 7 | void generate_cper_record(char **types, UINT16 num_sections, FILE *out); |
Lawrence Tang | 617949e | 2022-08-08 14:21:42 +0100 | [diff] [blame] | 8 | void generate_single_section_record(char *type, FILE *out); |
Lawrence Tang | d34f2b1 | 2022-07-19 15:36:31 +0100 | [diff] [blame] | 9 | |
John Chung | f8fc705 | 2024-05-03 20:05:29 +0800 | [diff] [blame] | 10 | #endif |