LeviLamina
Loading...
Searching...
No Matches
MemoryReader.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/external/bx/ReaderSeekerI.h"
7#include "mc/external/bx/Whence.h"
8
9// auto generated forward declare list
10// clang-format off
11namespace bx { class Error; }
12// clang-format on
13
14namespace bx {
15
16class MemoryReader : public ::bx::ReaderSeekerI {
17public:
18 // member variables
19 // NOLINTBEGIN
20 ::ll::TypedStorage<8, 8, uchar const*> m_data;
21 ::ll::TypedStorage<8, 8, int64> m_pos;
22 ::ll::TypedStorage<8, 8, int64> m_top;
23 // NOLINTEND
24
25public:
26 // virtual functions
27 // NOLINTBEGIN
28 virtual ~MemoryReader() /*override*/;
29
30 virtual int64 seek(int64 _offset, ::bx::Whence::Enum _whence) /*override*/;
31
32 virtual int read(void* _data, int _size, ::bx::Error* _err) /*override*/;
33 // NOLINTEND
34
35public:
36 // destructor thunk
37 // NOLINTBEGIN
38 MCAPI void $dtor();
39 // NOLINTEND
40
41public:
42 // virtual function thunks
43 // NOLINTBEGIN
44 MCAPI int64 $seek(int64 _offset, ::bx::Whence::Enum _whence);
45
46 MCAPI int $read(void* _data, int _size, ::bx::Error* _err);
47 // NOLINTEND
48
49public:
50 // vftables
51 // NOLINTBEGIN
52 MCNAPI static void** $vftableForSeekerI();
53
54 MCNAPI static void** $vftableForReaderI();
55 // NOLINTEND
56};
57
58} // namespace bx
Definition Error.h:7
Definition MemoryReader.h:7
static MCAPI void ** $vftableForSeekerI()
static MCAPI void ** $vftableForReaderI()