Unicode functions liker error

Hi!

help me please. I have an ATL project. I use wcsftime(), wcscpy() and swprintf() functions.

Everything is ok in Debug. But when I`m trying to build Release I get the following error:

Creating library ReleaseUMinSize/infotip.lib and object ReleaseUMinSize/infotip.exp
LIBCMT.lib(crt0.obj) : error LNK2001: unresolved external symbol _main
ReleaseUMinSize/infotip.dll : fatal error LNK1120: 1 unresolved externals
Error executing link.exe.

I`ve checked that the functions which are listet above cause this error. How can I fix this bug?

Best regards,
Yura.
[621 byte] By [YuraSV] at [2007-11-18 3:13:04]
# 1 Re: Unicode functions liker error
Create a new ATL project (barebones) then windiff the differences between that ones projectname.dsp and your projectname.dsp. Usually you've switched configuration settings back and forth and it's left dangling Compile switches

PS: it has nothing to do with the funtions, you can create an ATL project and wcscpy()/link to your hearts delight, but if you do things like switch from not using MFC to using MFC in a static lib you'll get this error...eg: /GX (exception handling enabled)
Mick at 2007-11-11 3:46:45 >