From 2e3a6da0730ae32feab4bf1848a22aa5062dee0c Mon Sep 17 00:00:00 2001 From: heck Date: Tue, 20 Jun 2023 17:47:06 +0200 Subject: [PATCH] ig-c99: test - add idl_core.h.target --- .../tests/test_ig_c99/ig-c99/idl_core.h.target | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 lm-c99/tests/test_ig_c99/ig-c99/idl_core.h.target diff --git a/lm-c99/tests/test_ig_c99/ig-c99/idl_core.h.target b/lm-c99/tests/test_ig_c99/ig-c99/idl_core.h.target new file mode 100644 index 0000000..81a905c --- /dev/null +++ b/lm-c99/tests/test_ig_c99/ig-c99/idl_core.h.target @@ -0,0 +1,18 @@ +#pragma once + +#ifdef __cplusplus +extern "C" { +#endif + +// idl basetypes +// ------------- +typedef char* string; +typedef char* binary; +typedef unsigned int uint; +typedef size_t size; +typedef void* opaque; + + +#ifdef __cplusplus +} // extern "C" +#endif