-
- // these 2 can be simply mapped to the versions with underscore at the end
- // if we don't have to do the conversion
- #ifdef wxNEED_PRINTF_CONVERSION
- int wxSnprintf( wxChar *str, size_t size, const wxChar *format, ... ) ATTRIBUTE_PRINTF_4;
- int wxVsnprintf( wxChar *str, size_t size, const wxChar *format, va_list ap );
- #else
- #define wxSnprintf wxSnprintf_
- #define wxVsnprintf wxVsnprintf_
- #endif