mirror of
https://gitlab.com/GaryOderNichts/re3-wiiu.git
synced 2024-11-23 17:49:16 +01:00
Update mss.h
This commit is contained in:
parent
2e38b51e1c
commit
0b3690a59c
14
vendor/milessdk/include/mss.h
vendored
14
vendor/milessdk/include/mss.h
vendored
@ -114,3 +114,17 @@ DLLEXPORT void WINAPI AIL_set_stream_ms_position(HSTREAM S, S32 milliseconds);
|
|||||||
DLLEXPORT void WINAPI AIL_set_stream_volume(HSTREAM stream, S32 volume);
|
DLLEXPORT void WINAPI AIL_set_stream_volume(HSTREAM stream, S32 volume);
|
||||||
DLLEXPORT void WINAPI AIL_set_stream_pan(HSTREAM stream, S32 pan);
|
DLLEXPORT void WINAPI AIL_set_stream_pan(HSTREAM stream, S32 pan);
|
||||||
DLLEXPORT S32 WINAPI AIL_stream_status(HSTREAM stream);
|
DLLEXPORT S32 WINAPI AIL_stream_status(HSTREAM stream);
|
||||||
|
|
||||||
|
typedef U32(WINAPI* AIL_file_open_callback)(char const * Filename, U32 * FileHandle);
|
||||||
|
|
||||||
|
typedef void (WINAPI* AIL_file_close_callback) (U32 FileHandle);
|
||||||
|
|
||||||
|
#define AIL_FILE_SEEK_BEGIN 0
|
||||||
|
#define AIL_FILE_SEEK_CURRENT 1
|
||||||
|
#define AIL_FILE_SEEK_END 2
|
||||||
|
|
||||||
|
typedef S32(WINAPI* AIL_file_seek_callback) (U32 FileHandle, S32 Offset, U32 Type);
|
||||||
|
|
||||||
|
typedef U32(WINAPI* AIL_file_read_callback) (U32 FileHandle, void* Buffer, U32 Bytes);
|
||||||
|
|
||||||
|
DLLEXPORT void WINAPI AIL_set_file_callbacks(AIL_file_open_callback opencb, AIL_file_close_callback closecb, AIL_file_seek_callback seekcb, AIL_file_read_callback readcb);
|
||||||
|
Loading…
Reference in New Issue
Block a user