Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

_wcsicmp deprecated?

Status
Not open for further replies.
Jan 20, 2005
65
GB
I'm getting a warning that _wcsicmp is deprecated and to use __wcsicmp.

__wcsicmp doesn't seem to defined ANYWHERE?

 
This is a Visual Studio 2005 thing. They've deprecated virutally every single routine in stdio and stdlib. It tells you what to define to avoid this. Something like CRTNODEPRECATE. Just put that in the defines with WIN32 and all the other stuff and it will go away. Honestly, this is not worth worrying about.

I don't know which C standard M$ are working to. They haven't implemented C99 and they've deprecated almost every routine.
 
They want people to use C#. If you're gonna do that, why not use Java?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top