swprintf(wchar_t *,int,const wchar_t *,...);
swprintf(wchar_t *,const wchar_t *,...);
In Visual C++ 2005, swprintf conforms to the ISO C Standard, which requires the second parameter, count, of type size_t. To force the old nonstandard behavior, define _CRT_NON_CONFORMING_SWPRINTFS. In a future version, the old behavior may be removed, so code should be changed to use the new conformant behavior. |