Why on God's green earth would you guys declare a variable "class" in your C source file. It makes it impossible to include in a C++ source file without a hack like this:
extern "C" {
#define class klass
#include "dns.h"
#undef class
}
Can this be fixed?
Why on God's green earth would you guys declare a variable "class" in your C source file. It makes it impossible to include in a C++ source file without a hack like this:
Can this be fixed?