Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
alexbevi
GitHub Repository: alexbevi/BizHawk
Path: blob/master/libmupen64plus/mupen64plus-video-jabo/typedefs.h
2 views
1
#ifndef _TYPEDEFS_H_
2
#define _TYPEDEFS_H_
3
4
#define uchar unsigned char
5
#define uint16 unsigned short
6
#define uint32 unsigned int
7
#define uint64 unsigned long long
8
9
typedef unsigned char uint8;
10
11
typedef signed char s8;
12
typedef int s32;
13
typedef unsigned int u32;
14
typedef unsigned char u8;
15
16
#endif
17
18
19