2019-09-20 16:18:52 +02:00
|
|
|
#include <cstdarg>
|
|
|
|
#include <cstdint>
|
|
|
|
#include <cstdlib>
|
2020-09-29 21:24:35 -04:00
|
|
|
#include <ostream>
|
2019-09-20 16:18:52 +02:00
|
|
|
#include <new>
|
|
|
|
|
|
|
|
struct dep_struct {
|
|
|
|
uint32_t x;
|
|
|
|
double y;
|
|
|
|
};
|
|
|
|
|
|
|
|
extern "C" {
|
|
|
|
|
|
|
|
uint32_t get_x(const dep_struct *dep_struct);
|
|
|
|
|
|
|
|
} // extern "C"
|