| 20 | typedef uintptr_t remote_addr_t; |
| 21 | |
| 22 | struct RemoteMemCopyError : public std::exception |
| 23 | { |
| 24 | const char* what() const noexcept override |
| 25 | { |
| 26 | return "Error occurred when copying memory from another process"; |
| 27 | } |
| 28 | }; |
| 29 | |
| 30 | struct InvalidRemoteAddress : public RemoteMemCopyError |
| 31 | { |
no outgoing calls
no test coverage detected