I want to know if there is a way that I can open urls through the program.
I have the urls saved in a stack as strings. I tried the function ShellExecute,
but it doesnt work if you put the string as a parameter of the function.
This works:
ShellExecute(NULL, "open", "http://www.google.com, NULL, NULL, SW_SHOWNORMAL);
This doesn't:
ShellExecute(NULL, "open", url, NULL, NULL, SW_SHOWNORMAL);