I need to send
"%setmem% 0x00000000, { 0x00, 0x00 }"
to a C++ client but I need the bytes to be in a char* (string)
so I pretty much need it like this:
(this uses custom functions I made)
char* address = getarg(response).Address; //will return 0x00000000
char* bytes = getarg(response).Bytes; //will return { 0x00, 0x00 }
Any suggestions as pertaining how I may go about this
Additional Information,
I'm not using the regular C++ compiler so I cannot use a lot of C++ functions.