MSDN notes "set the Minimize CRT Use in ATL option to No and link to the CRT either statically or dynamically". I have MSVC++6.0, SP5. Could they be referring to an interface in 7.0? Can someone tell me what to insert in project options to statically link the CRT?
Background:
I've got an ActiveX control (no MFC) in a DLL. Debug version runs fine in Test container and in IE. So...I went to build the release version and ... pass the aspirin! I got an "unresolved external symbol _main". I looked that up in MSDN which explained the error involving the use of the CRT. I built the project again with /VERBOSE turned on and the build output showed that I had too many fxns needing the CRT. I took _ATL_MIN_CRT out of the project options. I thought this would statically link the CRT (I can afford the extra 25K) but evidently it doesn't. I don't have _CRT_MIN_SIZE defined in project options. I do have _ATL_STATIC_REGISTRY defined.
Thanks,
Steve
