mirror of
https://github.com/zeldaret/tp
synced 2026-05-23 06:54:28 -04:00
13 lines
261 B
C++
13 lines
261 B
C++
#include "JSystem/JAHostIO/JAHUGlobal.h"
|
|
|
|
static void dummy(JSUInputStream& input) {
|
|
JSUMemoryOutputStream stream(NULL, 0);
|
|
stream.getPosition();
|
|
stream << u8(0);
|
|
u8 b;
|
|
input >> b;
|
|
u32 a;
|
|
input >> a;
|
|
JAHUDialog_OK("", "", "");
|
|
}
|