diff gen/linker.h @ 306:0baca2feb554 trunk

[svn r327] Fixed some more MinGW32 issues. It's now very close to working. Fixed problems with inline asm like: mov EAX, FS:4 , which incidentally is used in the runtime to get the stack bottom, on Windows.
author lindquist
date Fri, 27 Jun 2008 23:58:22 +0200
parents 70c370e97944
children eef8ac26c66c
line wrap: on
line diff
--- a/gen/linker.h	Fri Jun 27 22:04:35 2008 +0200
+++ b/gen/linker.h	Fri Jun 27 23:58:22 2008 +0200
@@ -17,9 +17,10 @@
 
 /**
  * Link an executable.
+ * @param argv0 the argv[0] value as passed to main
  * @return 0 on success.
  */
-int linkExecutable();
+int linkExecutable(const char* argv0);
 
 /**
  * Delete the executable that was previously linked with linkExecutable.