mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-05-25 07:02:47 -04:00
15 lines
366 B
C++
15 lines
366 B
C++
|
|
#include "JSystem/JAHostIO/JAHioMessage.h"
|
|
#include "JSystem/JSupport/JSUMemoryStream.h"
|
|
#include "JSystem/JSupport/JSUOutputStream.h"
|
|
|
|
static void dummy(JSUMemoryInputStream& in, JSUOutputStream& out, JAHControl& ctrl) {
|
|
out << s16(0);
|
|
s16 b;
|
|
in >> b;
|
|
ctrl.makeSlider("", (u8*)NULL, (u8)0, (u8)0, 0);
|
|
u16 a;
|
|
in >> a;
|
|
in.getPointer();
|
|
}
|