Pat Magnan wrote:

Yup, appears to be another Microsoft abomination... it is used only in
cl_dll code however, in the default SDK, so the Microsoft version will
work, but, if you're using it in your server code at all, then look at
extdll.h:

#define _vsnprintf(a,b,c,d) vsnprintf(a,b,c,d)

Yup, that is what we do with four such functions. It can be done even simpler:

#define _vsnprintf vsnprintf
#define stricmp strcasecmp
#define _strnicmp strncasecmp
#define strcmpi strcasecmp

Florian.


-- Want to produce professional emails and Usenet postings? http://www.netmeister.org/news/learn2quote.html

_______________________________________________
To unsubscribe, edit your list preferences, or view the list archives, please visit:
http://list.valvesoftware.com/mailman/listinfo/hlcoders



Reply via email to