MCPcopy Create free account
hub / github.com/EmmyLua/EmmyLuaDebugger / MessageEvent

Function MessageEvent

emmy_tool/src/windows/utility.cpp:161–167  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

159};
160
161void MessageEvent(const std::string &message, MessageType type = MessageType_Info) {
162 if (type == MessageType_Error) {
163 std::cerr << "[F]" << message << std::endl;
164 } else {
165 std::cerr << "[F]" << message << std::endl;
166 }
167}
168
169void *RemoteDup(HANDLE process, const void *source, size_t length) {
170 void *remote = VirtualAllocEx(process, nullptr, length, MEM_COMMIT, PAGE_READWRITE);

Callers 3

OutputErrorFunction · 0.85
InjectDllFunction · 0.85
InjectDllForProcessFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected