Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Reviewed-by: Scott D Phillips <scott.d.phillips@intel.com>
#include "common/gen_device_info.h"
#include "util/hash_table.h"
+#ifdef __cplusplus
+extern "C" {
+#endif
+
struct gen_spec;
struct gen_group;
struct gen_field;
uint64_t offset, const uint32_t *p,
bool color);
+#ifdef __cplusplus
+}
+#endif
+
+
#endif /* GEN_DECODER_H */
#include <stdbool.h>
#include <stdint.h>
+#ifdef __cplusplus
+extern "C" {
+#endif
+
/**
* Intel hardware information and quirks
*/
bool gen_get_device_info(int devid, struct gen_device_info *devinfo);
const char *gen_get_device_name(int devid);
+#ifdef __cplusplus
+}
+#endif
+
#endif /* GEN_DEVICE_INFO_H */
#ifndef GEN_DISASM_H
#define GEN_DISASM_H
+#ifdef __cplusplus
+extern "C" {
+#endif
+
struct gen_disasm;
struct gen_disasm *gen_disasm_create(int pciid);
void gen_disasm_destroy(struct gen_disasm *disasm);
+#ifdef __cplusplus
+}
+#endif
+
#endif /* GEN_DISASM_H */