mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-10-12 08:15:06 +02:00
16 lines
219 B
C++
16 lines
219 B
C++
#include <cstdarg>
|
|
#include <cstdint>
|
|
#include <cstdlib>
|
|
#include <ostream>
|
|
#include <new>
|
|
|
|
struct dep_struct {
|
|
uint32_t x;
|
|
double y;
|
|
};
|
|
|
|
extern "C" {
|
|
|
|
uint32_t get_x(const dep_struct *dep_struct);
|
|
|
|
} // extern "C"
|