what does the /OPT:NOREF option mean
I searched for this & other commandline switches in the pdf masm reference available on the web & they are not mentioned.
anyone have any links to an masm refrence that is more complete & has all the switches mentioned ?
Its actually a linker option from the linker used in masm32 that is from the very old win98ddk. just put the /OPT:NOREF text into google and you will get the MSDN data for it but the reason why I used in in the project was to stop the linker squarking a useless warning if a kernel32 function was not called.
Link options (http://msdn2.microsoft.com/en-us/library/y0zzbyt4.aspx)
ML options (http://msdn2.microsoft.com/en-us/library/s0ksfwcf(VS.71).aspx)
These are the ones I use, but if anyone has a newer url I wouldn't mind knowing...
thx for the links & replies