PS2SDK
PS2 Homebrew Libraries
Loading...
Searching...
No Matches
sio2man_hook.h
1#ifndef SIO2MAN_HOOK_H
2#define SIO2MAN_HOOK_H
3
4
5extern int sio2man_hook_init();
6extern void sio2man_hook_deinit();
7
8// Lock all communication to SIO2MAN
9// this is needed for drivers that communicate directly to sio2, like mx4sio.
10// Do NOT lock for long duration, only for single (high speed) transfers
11extern void sio2man_hook_sio2_lock();
12extern void sio2man_hook_sio2_unlock();
13
14
15#endif