blob: a0708f608b797f9cab320eeb0905b746e1bf645d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#include "Message.h"
namespace SF64 {
void* Message::GetPointer() {
return mMessage.data();
}
size_t Message::GetPointerSize() {
return mMessage.size() * sizeof(uint16_t);
}
MsgLookup* MessageLookup::GetPointer() {
return mLookupTable.data();
}
size_t MessageLookup::GetPointerSize() {
return mLookupTable.size() * sizeof(MsgLookup);
}
}
|