blob: 52aebce9236e44f724284733a1213a82982a3091 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#ifndef _REVOLUTION_SI_INTERNAL_H_
#define _REVOLUTION_SI_INTERNAL_H_
#include <revolution/types.h>
#ifdef __cplusplus
extern "C" {
#endif
void __SISteeringEnable(s32 chan);
s32 __SISteeringTransfer(s32 chan, u32 outputBytes, u32 inputBytes, void (*proc)(s32));
void __SISteeringSyncCallback(s32 chan, s32);
s32 __SISteeringSync(s32 chan);
void __SISteeringDisable(s32 chan);
void __SITestSamplingRate(u32 tvmode);
#ifdef __cplusplus
}
#endif
#endif
|