eBPF for Windows
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
types.h
Go to the documentation of this file.
1// Copyright (c) eBPF for Windows contributors
2// SPDX-License-Identifier: MIT
3#pragma once
4#include <stdint.h>
5typedef uint16_t __u16;
6typedef uint32_t __u32;
7typedef uint64_t __u64;
8typedef int16_t __s16;
9typedef int32_t __s32;
10typedef 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