mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-10-12 08:15:06 +02:00
20 lines
285 B
C++
20 lines
285 B
C++
#include <cstdarg>
|
|
#include <cstdint>
|
|
#include <cstdlib>
|
|
#include <ostream>
|
|
#include <new>
|
|
|
|
enum class BindingType : uint32_t {
|
|
Buffer = 0,
|
|
NotBuffer = 1,
|
|
};
|
|
|
|
struct BindGroupLayoutEntry {
|
|
BindingType ty;
|
|
};
|
|
|
|
extern "C" {
|
|
|
|
void root(BindGroupLayoutEntry entry);
|
|
|
|
} // extern "C"
|