Files
dusklight/include/dolphin/si/SISamplingRate.h
T
TakaRikka 6ddea57b69 dolphin lib work (#237)
* 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
2023-01-02 12:20:10 -07:00

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 */