[go: up one dir, main page]

Menu

[r3]: / DolwinSRC / CommonDefs.h  Maximize  Restore  History

Download this file

47 lines (36 with data), 930 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/*
* Project Dolwin: Some application and platform-specific defintions.
*/
#pragma once
/*
* Define Platform Here.
*/
#define WINDOWS
#define WINDOWS_X86 // Allow ASM
/*
* Compile-time triggers.
*/
#define APPDEBUG // Enable debugger features.
#define APPNAME "Dolwin"
#define APPDESC "Nintendo Gamecube Emulator for Windows"
#define APPVER "0.11"
/*
* General Data Types.
*/
typedef signed char s8;
typedef signed short s16;
typedef signed long s32;
typedef unsigned char u8;
typedef unsigned short u16;
typedef unsigned long u32;
typedef float f32;
typedef double f64;
#ifdef WINDOWS
typedef unsigned __int64 u64;
typedef signed __int64 s64;
#endif
#ifndef __cplusplus
typedef enum { false = 0, true } bool;
#endif
#define FASTCALL __fastcall
#define INLINE __inline