>> extern "C" const char *Version_string = "1.22.2"; > > extern "C" const char *Version_string; > const char *Version_string = "1.22.2"; > > but I'm not sure if it's the proper way to solve this warning.
Does
extern "C" {
const char *Version_string = "1.22.2";
}
work better?
Werner
