Files
cbindgen/tests/expectations/mod_2018.cpp
T
Vincent Tavernier 60d60aaf0d Fix #254
By checking the recursion depth in the crate we are currently parsing,
we can decide on the right module directory to find submodules in. The
added `mod_2018` test fails without the changes to `parser.rs`.
2020-04-17 14:22:00 +02:00

17 lines
215 B
C++

#include <cstdarg>
#include <cstdint>
#include <cstdlib>
#include <new>
static const uint8_t EXPORT_ME_TOO = 42;
struct ExportMe {
uint64_t val;
};
extern "C" {
void export_me(ExportMe *val);
} // extern "C"