blob: e866104c53227ca041e8df2629d83c31516c5e85 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/*
Vita Development Suite Libraries
*/
#ifndef _VDSUITE_KERNEL_AUDIOOUT_H
#define _VDSUITE_KERNEL_AUDIOOUT_H
#include_next <audioout.h>
#ifdef __cplusplus
extern "C" {
#endif
typedef void (*SceAudioOutPortEventCallback)(SceUID processId);
int sceAudioOutSetPortOpenCallback(SceAudioOutPortEventCallback callbackFunc);
int sceAudioOutSetPortReleaseCallback(SceAudioOutPortEventCallback callbackFunc);
#ifdef __cplusplus
}
#endif
#endif /* _VDSUITE_KERNEL_AUDIOOUT_H */
|