eBPF for Windows
types.h
Go to the documentation of this file.
1 // Copyright (c) Microsoft Corporation
2 // SPDX-License-Identifier: MIT
3 #pragma once
4 #include <stdint.h>
5 typedef uint16_t __u16;
6 typedef uint32_t __u32;
7 typedef uint64_t __u64;
8 typedef int16_t __s16;
9 typedef int32_t __s32;
10 typedef int64_t __s64;
11 #define __SIZEOF_LONG_LONG__ 8 /* only x64 is supported */
12 #define __SIZEOF_LONG__ 4 /* only x64 is supported */
int32_t __s32
Definition: types.h:9
uint32_t __u32
Definition: types.h:6
int64_t __s64
Definition: types.h:10
int16_t __s16
Definition: types.h:8
uint16_t __u16
Definition: types.h:5
uint64_t __u64
Definition: types.h:7