I have got following:
wxIntPtr* value;
CreateRegKey();
if (regkeyexist) {
if (regKey->HasValue("LoggingStatus")) {
regKey->QueryValue("LoggingStatus", value);
if (value == 1)
however i get the error as the c++ forbids comparison between pointer and integer
This should compile, but I don’t know if it’s what you want: