Hello, I'm not very skilled with using the <windows> API. This led me to ask here for someone to help me design a function that will allow me to select multiple(and single) files from a window.
The function should be something like (this is just an example I'm not really sure what I'm doing here so feel free to alter it) this:
1 2 3 4 5 6 7 8
string getfilenames(){
string filenames_with_commas_in_between_each_name;
/*
Some Windows stuff here that fetches the filename/names
*/
return filenames_with_commas_in_between_each_name;
}
}