MCPcopy Create free account
hub / github.com/AlSch092/UltimateAntiCheat / QueryMemory

Method QueryMemory

Network/Packets/Packets.cpp:46–57  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

44}
45
46PacketWriter* Packets::Builder::QueryMemory(__in const byte* bytestring, __in const int size)
47{
48 PacketWriter* p = new PacketWriter(Packets::Opcodes::CS_QUERY_MEMORY);
49 p->Write<uint16_t>(size);
50
51 for (int i = 0; i < size; i++)
52 {
53 p->Write<BYTE>(bytestring[i]);
54 }
55
56 return p;
57}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected