| Revision: | 1073 |
| Committed: | Thu Oct 5 17:48:32 2017 UTC (8 years ago) by s10k |
| Content type: | text/x-chdr |
| File size: | 530 byte(s) |
| Log Message: | added XML Tools latest version (2.0d) and s10k's common libs |
| # | Content |
|---|---|
| 1 | #ifndef MAIN_H |
| 2 | #define MAIN_H |
| 3 | |
| 4 | #ifdef __MINGW32__ |
| 5 | // Turns off globbing for MingW, this is the same as that |
| 6 | // CRT_noglob.o, but avoids having to locate CRT_nogob.o in the |
| 7 | // filesystem. |
| 8 | // http://mingw-users.1079350.n2.nabble.com/Problems-with-expanding-wildcards-to-a-program-td1358555.html |
| 9 | int _dowildcard = 0; // Magic variable to disable wildcards expansion in mingw |
| 10 | // in our case fixes param parser crashes on windows |
| 11 | #endif |
| 12 | |
| 13 | #include "optionsparser.h" |
| 14 | |
| 15 | int main(int argc, char *argv[]); |
| 16 | |
| 17 | #endif // MAIN_H |