I am using GetOpenFileName
with multiple select capabilities. The files picked are returned in a LPSTR. Inside this LPSTR, the files selected are separated by NULL bytes. I want to split the LPSTR into an array and then loop over that array.
In PHP I would do:
$array = explode("\0", $string);
But since I am new to C, I have no idea what I am doing.