1 #ifndef CPER_SECTION_NVIDIA_H
2 #define CPER_SECTION_NVIDIA_H
3 
4 #ifdef __cplusplus
5 extern "C" {
6 #endif
7 
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 
14 #ifdef __cplusplus
15 }
16 #endif
17 
18 #endif
19