PS2SDK
PS2 Homebrew Libraries
pfs_fioctl.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 _PFS_FIOCTL_H
12 #define _PFS_FIOCTL_H
13 
15 // Function declarations
16 
17 extern int pfsFioIoctl(iomanX_iop_file_t *f, int cmd, void *param);
18 extern int pfsFioIoctl2(iomanX_iop_file_t *f, int cmd, void *arg, unsigned int arglen, void *buf, unsigned int buflen);
19 extern int pfsFioDevctl(iomanX_iop_file_t *f, const char *name, int cmd, void *arg, unsigned int arglen, void *buf, unsigned int buflen);
20 
21 extern void pfsFioDevctlCloseAll(void);
22 
23 #endif /* _PFS_FIOCTL_H */
_iomanX_iop_file
Definition: iomanX.h:70