PS2SDK
PS2 Homebrew Libraries
fssk.h
1 /*
2 # _____ ___ ____ ___ ____
3 # ____| | ____| | | |____|
4 # | ___| |____ ___| ____| | \ PS2DEV Open Source Project.
5 #-----------------------------------------------------------------------
6 # Copyright 2001-2004, ps2dev - http://www.ps2dev.org
7 # Licenced under Academic Free License version 2.0
8 # Review ps2sdk README & LICENSE files for further details.
9 */
10 
11 #ifndef __FSSK_H__
12 #define __FSSK_H__
13 
14 typedef struct
15 {
16  u32 totalLBA;
17  u32 partitionMaxSize;
18  int format;
19  int status;
20 } hdd_device_t;
21 
22 struct hdskBitmap
23 {
24  struct hdskBitmap *next; // 0x00
25  struct hdskBitmap *prev; // 0x04
26  u32 start; // 0x08
27  u32 length; // 0x0C
28  u32 type; // 0x10
29 };
30 
31 #define HDSK_BITMAP_SIZE 0x4001
32 
33 #endif
hdskBitmap
Definition: fssk.h:22
hdd_device_t
Definition: fssk.h:14