| 44 | } |
| 45 | |
| 46 | PacketWriter* 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 | } |
nothing calls this directly
no outgoing calls
no test coverage detected