mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-02-05 10:39:41 +00:00
17 lines
219 B
C++
17 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"
|