PS2SDK
PS2 Homebrew Libraries
Loading...
Searching...
No Matches
pfs-opt.h
1#ifndef _PFS_OPT_H
2#define _PFS_OPT_H
3
4#define PFS_PRINTF(format, ...) printf(format, ##__VA_ARGS__)
5#define PFS_DRV_NAME "fsck"
6
7#define PFS_NO_WRITE_ERROR_STAT 1
8// #define FSCK100 1 // If desired, uncomment to build a version of FSCK without the v1.10 features.
9
10// Module version
11#define PFS_MAJOR 1
12#define PFS_MINOR 4
13
14#ifdef _IOP
15#define PFS_ENTRYPOINT _start
16#else
17#define PFS_ENTRYPOINT fsck_start
18#endif
19
20#endif