Expected name, id, length or ordinal error
Hi Everybody, I'm currently trying to compile the basic Win32 "Hello world" project that VC6 generates for you using Wine. Currently I'm running winemaker like this: winemaker --nomfc -I/usr/local/wine/include -L/usr/local/wine/lib -ikernel32.lib -iuser32.lib -igdi32.lib -iwinspool.lib -icomdlg32.lib -iadvapi32.lib -ishell32.lib -iole32.lib -ioleaut32.lib -iuuid.lib -iodbc32.lib -iodbccp32.lib /home/john/hello I've also added the header files that would have been found in the StdAfx.h to my main.cpp. This is because Winemaker wouldn't build with StdAfx.h in the directory, so I deleted it. This is the error I now get when I run make ./hellotest.spec:8: Expected name, id, length or ordinal My hellotest.spec looks like this: name hellotest type win32 mode guiexe init WinMain rsrc hellotest.res import kernel32.lib import user32.lib <- line of failure Any Ideas? Thanks in Advance, John Westerman
On January 10, 2003 02:12 am, John Westerman wrote:
My hellotest.spec looks like this:
name hellotest
type win32
mode guiexe
init WinMain
rsrc hellotest.res
import kernel32.lib
import user32.lib <- line of failure
None of this stuff resides in the .spec file anymore! I'm not sure if winemaker is update to generate spec files according to the latest and greatest. What version are you using BTW? You should be using HEAD, if you can work with CVS. -- Dimi.
participants (2)
-
Dimitrie O. Paun -
John Westerman