mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-10-13 00:35:09 +02:00
16 lines
222 B
C++
16 lines
222 B
C++
#include <cstdarg>
|
|
#include <cstdint>
|
|
#include <cstdlib>
|
|
#include <ostream>
|
|
#include <new>
|
|
|
|
struct TraitObject {
|
|
void *data;
|
|
void *vtable;
|
|
};
|
|
|
|
extern "C" {
|
|
|
|
void *root(const void *ptr, TraitObject t);
|
|
|
|
} // extern "C"
|