hey,
well everytime i try to like the .obj and the .res it says that it cannot run cvtres.exe
doesnt anyone know anything about this?
thanks,
njkt
well everytime i try to like the .obj and the .res it says that it cannot run cvtres.exe
doesnt anyone know anything about this?
thanks,
njkt
Maybe if you post a little more info... :rolleyes:
ok well im assemblin a program in masm right,
ml /c /coff /Cp test.asm
rc rsrc.rc
link /subsystem:windows /libpath:c:\masm32\lib test.obj rsrc.res
error cannot open 'cvtres.exe'
ml /c /coff /Cp test.asm
rc rsrc.rc
link /subsystem:windows /libpath:c:\masm32\lib test.obj rsrc.res
error cannot open 'cvtres.exe'
You can try this:
ml /c /coff /Cp test.asm
rc rsrc.rc
cvtres /machine:ix86 rsrc.res /out:rsrc.obj
link /SUBSYSTEM:WINDOWS /libpath:c:\masm32\lib test.obj rsrc.obj
Or you can add \masm23\bin to your path in autoexec.bat (if you have Win9X).
ml /c /coff /Cp test.asm
rc rsrc.rc
cvtres /machine:ix86 rsrc.res /out:rsrc.obj
link /SUBSYSTEM:WINDOWS /libpath:c:\masm32\lib test.obj rsrc.obj
Or you can add \masm23\bin to your path in autoexec.bat (if you have Win9X).
ok thanks
hahaha im using a different directory for asm files, i forgot to include cvtres into the folder ug :S
njkt
hahaha im using a different directory for asm files, i forgot to include cvtres into the folder ug :S
njkt