mirror of
https://github.com/fail0verflow/hbc.git
synced 2024-11-16 22:59:23 +01:00
12 lines
301 B
C
12 lines
301 B
C
|
|
struct ioctlv {
|
|
void *data;
|
|
u32 len;
|
|
};
|
|
|
|
int ios_open(const char *filename, u32 mode);
|
|
int ios_close(int fd);
|
|
int ios_ioctlv(int fd, u32 n, u32 in_count, u32 out_count, struct ioctlv *vec);
|
|
int ios_ioctlvreboot(int fd, u32 n, u32 in_count, u32 out_count, struct ioctlv *vec);
|
|
void reset_ios(void);
|