mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-07 05:15:05 +00:00
14 lines
226 B
C++
14 lines
226 B
C++
|
#include "../dispatch.h"
|
||
|
|
||
|
void DivDispatch::acquire(short& l, short& r) {
|
||
|
l=0;
|
||
|
r=0;
|
||
|
}
|
||
|
|
||
|
int DivDispatch::dispatch(DivCommand c) {
|
||
|
return 1;
|
||
|
}
|
||
|
|
||
|
int DivDispatch::init(DivEngine* p, int channels, int sugRate) {
|
||
|
return 0;
|
||
|
}
|