BEEP-8 SDK 1.0.0
Loading...
Searching...
No Matches
type.h
1
25#pragma once
26#ifdef __cplusplus
27extern "C" {
28#endif
29typedef unsigned long u32;
30typedef unsigned long long u64;
31typedef long long s64;
32typedef unsigned short u16;
33typedef unsigned char u8;
34typedef unsigned char u1;
35typedef int s32;
36typedef short s16;
37typedef signed char s8;
38typedef float f32;
39typedef double f64;
40typedef s32 ssize_t;
41#ifdef __cplusplus
42}
43#endif