1a824c04f2
Let the user add raw C code in the generated header after the include blocks. It matches what bindgen provides with the raw_lines option.
17 lines
211 B
C++
17 lines
211 B
C++
#ifndef INCLUDE_GUARD_H
|
|
#define INCLUDE_GUARD_H
|
|
|
|
#include <cstdarg>
|
|
#include <cstdint>
|
|
#include <cstdlib>
|
|
#include <new>
|
|
#define VERSION 1
|
|
|
|
extern "C" {
|
|
|
|
void root();
|
|
|
|
} // extern "C"
|
|
|
|
#endif // INCLUDE_GUARD_H
|