source: XmlTools2/trunk/main.h@ 910

Last change on this file since 910 was 906, checked in by s10k, 11 years ago
File size: 604 bytes
Line 
1#ifndef MAIN_H
2#define MAIN_H
3
4#include "xmlpatch.h"
5
6#ifdef __MINGW32__
7// Turns off globbing for MingW, this is the same as that
8// CRT_noglob.o, but avoids having to locate CRT_nogob.o in the
9// filesystem.
10// http://mingw-users.1079350.n2.nabble.com/Problems-with-expanding-wildcards-to-a-program-td1358555.html
11unsigned long _CRT_glob = 0; // Magic variable to disable wildcards expansion in mingw
12// in our case fixes param parser crashes on windows
13#endif
14
15int main(int argc, char *argv[]);
16
17void invert(std::string elementName, std::string parElementName);
18
19
20#endif // MAIN_H
Note: See TracBrowser for help on using the repository browser.