PS2SDK
PS2 Homebrew Libraries
Loading...
Searching...
No Matches
apa-opt.h
1#ifndef _APA_OPT_H
2#define _APA_OPT_H
3
4#define APA_PRINTF(format, ...) printf(format, ##__VA_ARGS__)
5#define APA_DRV_NAME "hdck"
6
7// Module version
8#define APA_MODVER_MAJOR 1
9#define APA_MODVER_MINOR 4
10
11#ifdef _IOP
12#define APA_ENTRYPOINT _start
13#else
14#define APA_ENTRYPOINT hdck_start
15#endif
16
17#endif