mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-10-12 16:25:07 +02:00
16 lines
293 B
C
16 lines
293 B
C
#include <stdarg.h>
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
#include <stdlib.h>
|
|
|
|
enum BindingType {
|
|
Buffer = 0,
|
|
NotBuffer = 1,
|
|
};
|
|
typedef uint32_t BindingType;
|
|
|
|
typedef struct BindGroupLayoutEntry {
|
|
BindingType ty;
|
|
} BindGroupLayoutEntry;
|
|
|
|
void root(struct BindGroupLayoutEntry entry);
|