D
daniel.doyle
Possibly a dumb question, but my c++ experience isn't that great.
I have a method:
static XMLRequest *parseXMLRequest(unsigned char *byte_buffer, size_t
length)
{}
byte_buffer is a pointer to a unsigned char array, but inside the
method I need to use it as a string to pass to another method. Can
anyone tell me the easiest/best way to convert? I've tried a couple of
things I thought might work, but I've had no luck so far.
Thanks
I have a method:
static XMLRequest *parseXMLRequest(unsigned char *byte_buffer, size_t
length)
{}
byte_buffer is a pointer to a unsigned char array, but inside the
method I need to use it as a string to pass to another method. Can
anyone tell me the easiest/best way to convert? I've tried a couple of
things I thought might work, but I've had no luck so far.
Thanks