blob: 77bd0b8ac21edf697b9c27fb7ed3057878c61ee7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
// Ported from https://github.com/kiwi515/ogws/blob/master/src/nw4r/ut/ut_IOStream.cpp
#include "nw4r/ut.h"
namespace nw4r {
namespace ut {
NW4R_UT_RTTI_DEF_BASE(IOStream);
bool IOStream::ReadAsync(void *dst, u32 size, AsyncCallback callback, void *arg) {
return false;
}
s32 IOStream::Write(const void *src, u32 size) {
return false;
}
bool IOStream::WriteAsync(const void *src, u32 size, AsyncCallback callback, void *arg) {
return false;
}
bool IOStream::IsBusy() const {
return false;
}
} // namespace ut
} // namespace nw4r
|