I have a dll that must be useable from C etc, so I cant use string objects etc as a normal would, but I\'m not sure on how to do this safely..
const char *Ge
If you declare ss as static you can avoid the problem. This could be a good solution if your program runs on a single-thread enviroment.