| 116 | } |
| 117 | |
| 118 | void Lua::Memory::write(uintptr_t addr, void* value, int size) |
| 119 | { |
| 120 | MemAccess::write(value, reinterpret_cast<void*>(addr), size); |
| 121 | } |
| 122 | |
| 123 | /* Define a macro to declare all write functions */ |
| 124 | #define WRITEFUNCINT(NAME, TYPEU, TYPES) \ |
no outgoing calls
no test coverage detected