> The reason I was a big vague is that I'm not really bothered HOW its > done, I'd just like there to be some way to use PySys_SetArgv with a > (char **)
Ok, that's easy: void PySys_SetArgvChar(int argc, char** argv) { PySys_SetArgv(0, NULL); } So you don't bother *how* it's done as long as you can pass char** in some way. > Alternately a function to convert the char **argv to wchar_t **argv > could be ok too. Convert in what manner? What is the encoding of your char**? Regards, Martin _______________________________________________ Python-Dev mailing list Python-Dev@python.org http://mail.python.org/mailman/listinfo/python-dev Unsubscribe: http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com