"Erik de Castro Lopo" mle+win@mega-nerd.com wrote:
+#if WINE_IS_WIN64
- if (nt->FileHeader.Machine == IMAGE_FILE_MACHINE_AMD64)
MESSAGE("Support for AMD-64 architecture in progress but not yet working\n");
- else
+#endif
What's the point of this?
Dmitry Timoshkov wrote:
"Erik de Castro Lopo" mle+win@mega-nerd.com wrote:
+#if WINE_IS_WIN64
- if (nt->FileHeader.Machine == IMAGE_FILE_MACHINE_AMD64)
MESSAGE("Support for AMD-64 architecture in progress but not yet working\n");
- else
+#endif
What's the point of this?
At the moment trying to get wine to execute a win64 binary fails if
nt->FileHeader.Machine != IMAGE_FILE_MACHINE_I386
This patch along with the last one which added WINE_IS_WIN64 allows an attempt to be made to execute a WIN64 binary.
Erik