#ifndef MAIN_H #define MAIN_H #include "xmlpatch.h" #ifdef __MINGW32__ // Turns off globbing for MingW, this is the same as that // CRT_noglob.o, but avoids having to locate CRT_nogob.o in the // filesystem. // http://mingw-users.1079350.n2.nabble.com/Problems-with-expanding-wildcards-to-a-program-td1358555.html unsigned long _CRT_glob = 0; // Magic variable to disable wildcards expansion in mingw // in our case fixes param parser crashes on windows #endif int main(int argc, char *argv[]); void invert(std::string elementName, std::string parElementName); #endif // MAIN_H