mgh: fix for default HDD DMA mode, that wasn't correctly set
[open-ps2-loader.git] / pc / genvmc / src / genvmc.h
blob809a643556622d1699f3bc8e9f91c6036645f465
1 /*
2 Copyright 2010, jimmikaelkael <jimmikaelkael@wanadoo.fr>
4 Licenced under Academic Free License version 3.0
5 Review Open PS2 Loader README & LICENSE files for further details.
6 */
8 #ifndef __GENVMC_H__
9 #define __GENVMC_H__
11 #include <stdio.h>
12 #include <stdlib.h>
13 #include <string.h>
14 #include <ctype.h>
15 #include <fcntl.h>
16 #include <unistd.h>
17 #include <dirent.h>
18 #include <sys/types.h>
19 #include <sys/stat.h>
20 #include <time.h>
22 #define PROGRAM_NAME "genvmc"
23 #define PROGRAM_EXTNAME "VMC file generator for Open PS2 Loader"
24 #define PROGRAM_VER "0.1.0"
26 typedef unsigned char u8;
27 typedef unsigned short u16;
28 typedef unsigned int u32;
29 typedef unsigned long long u64;
30 typedef signed char s8;
31 typedef signed short s16;
32 typedef signed int s32;
33 typedef signed long long s64;
35 #endif