mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-05-24 15:00:55 -04:00
6ddea57b69
* getLayerNo_common_common finally matched * dolphin ai / ar / card work from prime decomp * work on dolphin dvd / dsp / db * more dolphin os work * si work * remove asm * build fix
23 lines
302 B
C
23 lines
302 B
C
#ifndef SISAMPLINGRATE_H
|
|
#define SISAMPLINGRATE_H
|
|
|
|
#include "dolphin/types.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef struct XY {
|
|
u16 line;
|
|
u8 count;
|
|
} XY;
|
|
|
|
void SISetSamplingRate(u32 msec);
|
|
void SIRefreshSamplingRate(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* SISAMPLINGRATE_H */
|