mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-10-13 16:55:05 +02:00
30 lines
503 B
C
30 lines
503 B
C
#include <stdarg.h>
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
#include <stdlib.h>
|
|
|
|
enum BindingType
|
|
#ifdef __cplusplus
|
|
: uint32_t
|
|
#endif // __cplusplus
|
|
{
|
|
Buffer = 0,
|
|
NotBuffer = 1,
|
|
};
|
|
#ifndef __cplusplus
|
|
typedef uint32_t BindingType;
|
|
#endif // __cplusplus
|
|
|
|
typedef struct BindGroupLayoutEntry {
|
|
BindingType ty;
|
|
} BindGroupLayoutEntry;
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif // __cplusplus
|
|
|
|
void root(struct BindGroupLayoutEntry entry);
|
|
|
|
#ifdef __cplusplus
|
|
} // extern "C"
|
|
#endif // __cplusplus
|