Karthik Rajagopalan | 683e055 | 2024-03-07 12:30:43 -0800 | [diff] [blame] | 1 | #ifndef CPER_SECTION_NVIDIA_H |
| 2 | #define CPER_SECTION_NVIDIA_H |
| 3 | |
Karthik Rajagopalan | 255bd81 | 2024-09-06 14:36:34 -0700 | [diff] [blame] | 4 | #ifdef __cplusplus |
| 5 | extern "C" { |
| 6 | #endif |
| 7 | |
Karthik Rajagopalan | 683e055 | 2024-03-07 12:30:43 -0800 | [diff] [blame] | 8 | #include <json.h> |
| 9 | #include "../edk/Cper.h" |
| 10 | |
| 11 | json_object *cper_section_nvidia_to_ir(void *section); |
| 12 | void ir_section_nvidia_to_cper(json_object *section, FILE *out); |
| 13 | |
Karthik Rajagopalan | 255bd81 | 2024-09-06 14:36:34 -0700 | [diff] [blame] | 14 | #ifdef __cplusplus |
| 15 | } |
| 16 | #endif |
| 17 | |
Karthik Rajagopalan | 683e055 | 2024-03-07 12:30:43 -0800 | [diff] [blame] | 18 | #endif |