How do I assign a sequence of character strings to a char ** argv variable in a program? Its a command line argument. I'm currently trying to convert an .exe app to a dll.
For example:
{ "string1", "string2", "string3" } --- > char ** argv variable
My problem is somehow realted to this: http://stackoverflow.com/questions/1015944/how-does-an-array-of-pointers-to-pointers-work/1015970#1015970 but I can't get it to work using the snippet shown there. Help!