On Jul 26, 2008, at 3:17 PM, Johannes Schindelin wrote:
On Sat, 26 Jul 2008, Steffen Prohaska wrote:
quoted
-#define main(c,v) main(int argc, const char **argv) \
+#define main(c,v) dummy_decl_mingw_main(); \
What is this dummy_*() statement supposed to do?
Avoid compile errors. The original statement is
int main( ...
But we want
static int mingw_main( ...
So we need to first get rid of the original int, before
we can start the static decl. We get rid by completing
the original int with the dummy_decl_mingw_main(); to a
full function decl.
Steffen