If you want to write an x amount of bytes to an address, you have a number of options.
void myfunction(void* address, size_t count, const unsigned char data[])
{..}
const unsigned char bytes[] = {0x10, 0x11, 0x12};
myfunction (address, 3, bytes);
where the second argument, count, is the length of the array.
Or with a variadic function:
void myfunction(void* address, size_t count, ...)
{..}
myfunction (address, 3, 0x10, 0x11, 0x12);
In all cases, you'll need to give the byte count explicitly though; the compiler can't deduce that from the data.
If you want to use a vector, that's possible, but you'll need to populate the vector first before calling the function, which isn't as efficient.
The only case where you wouldn't need to provide the count yourself is if none of the bytes would have value 0, then you could write
void myfunction(void* address, const char* str)
{..}
myfunction (address, "\x10\x11\x12");
because you could use strlen!
Edit:
Also, std::basic_string<unsigned char> would be worth looking into. But here too, it's not trivial to give this a value that contains \x00 values.
std::vector<unsigned char> Data = "example";– Lazylabs May 3 '12 at 8:02exampledefined? – trojanfoe May 3 '12 at 8:02"\x10\x11\x12"or is that out of the question? – Mr Lister May 3 '12 at 8:07