mirror of
https://github.com/wiiu-env/libiosuhax.git
synced 2024-11-30 13:04:16 +01:00
57e2197d1f
- added multiple functions to communication to /dev/iosuhax over ioctl command - added multi functional devoptab for mounting and/or mapping devices to virtual device names
32 lines
1.3 KiB
C
32 lines
1.3 KiB
C
#ifndef __OS_FUNCTIONS_H_
|
|
#define __OS_FUNCTIONS_H_
|
|
|
|
#include <gctypes.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#define OS_MUTEX_SIZE 44
|
|
|
|
//!----------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
//! Mutex functions
|
|
//!----------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
extern void (* OSInitMutex)(void* mutex);
|
|
extern void (* OSLockMutex)(void* mutex);
|
|
extern void (* OSUnlockMutex)(void* mutex);
|
|
extern int (* OSTryLockMutex)(void* mutex);
|
|
|
|
//!----------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
//! IOS function
|
|
//!----------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
extern int (*IOS_Ioctl)(int fd, unsigned int request, void *input_buffer,unsigned int input_buffer_len, void *output_buffer, unsigned int output_buffer_len);
|
|
extern int (*IOS_Open)(char *path, unsigned int mode);
|
|
extern int (*IOS_Close)(int fd);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // __OS_FUNCTIONS_H_
|