in the masm32 example, \masm32\examples\exampl01\dll
the blddll.bat file has a linker command line:
\masm32\bin\Link /SUBSYSTEM:WINDOWS /DLL /DEF:tstdll.def tstdll.obj
my question is, for DLL's, is the subsystem relevant ?
it seems that, for example, that /SUBSYSTEM:CONSOLE wouldn't make any sense ?
wouldn't i get the same results with this ?
\masm32\bin\Link /DLL /DEF:tstdll.def tstdll.obj