mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-10-12 00:05:06 +02:00
30 lines
443 B
C++
30 lines
443 B
C++
#include <cstdarg>
|
|
#include <cstdint>
|
|
#include <cstdlib>
|
|
#include <ostream>
|
|
#include <new>
|
|
|
|
struct Opaque;
|
|
|
|
template<typename T = void>
|
|
struct Option;
|
|
|
|
struct Foo {
|
|
const Opaque *x;
|
|
Opaque *y;
|
|
void (*z)();
|
|
void (**zz)();
|
|
};
|
|
|
|
union Bar {
|
|
const Opaque *x;
|
|
Opaque *y;
|
|
void (*z)();
|
|
void (**zz)();
|
|
};
|
|
|
|
extern "C" {
|
|
|
|
void root(const Opaque *a, Opaque *b, Foo c, Bar d, Option<Opaque*> *e, void (*f)(const Opaque*));
|
|
|
|
} // extern "C"
|