|
|
typedef basic_string_printf< char, std::char_traits< char >, std::allocator< char > > | winstd::string_printf |
| | Single-byte character implementation of a class to support string formatting using printf() style templates.
|
| |
|
typedef basic_string_printf< wchar_t, std::char_traits< wchar_t >, std::allocator< wchar_t > > | winstd::wstring_printf |
| | Wide character implementation of a class to support string formatting using printf() style templates.
|
| |
|
typedef string_printf | winstd::tstring_printf |
| | Multi-byte / Wide-character formatted string (according to _UNICODE)
|
| |
|
typedef basic_string_msg< char, std::char_traits< char >, std::allocator< char > > | winstd::string_msg |
| | Single-byte character implementation of a class to support string formatting using FormatMessage() style templates.
|
| |
|
typedef basic_string_msg< wchar_t, std::char_traits< wchar_t >, std::allocator< wchar_t > > | winstd::wstring_msg |
| | Wide character implementation of a class to support string formatting using FormatMessage() style templates.
|
| |
|
typedef string_msg | winstd::tstring_msg |
| | Multi-byte / Wide-character formatted string (according to _UNICODE)
|
| |
|
typedef string_guid | winstd::tstring_guid |
| | Multi-byte / Wide-character string GUID (according to _UNICODE)
|
| |
|
| static int | vsnprintf (char *str, size_t capacity, const char *format, va_list arg) |
| | Formats string using printf(). More...
|
| |
| static int | vsnprintf (wchar_t *str, size_t capacity, const wchar_t *format, va_list arg) noexcept |
| | Formats string using printf(). More...
|
| |
| template<class _Elem , class _Traits , class _Ax > |
| static int | vsprintf (std::basic_string< _Elem, _Traits, _Ax > &str, const _Elem *format, va_list arg) |
| | Formats string using printf(). More...
|
| |
| template<class _Elem , class _Traits , class _Ax > |
| static int | sprintf (std::basic_string< _Elem, _Traits, _Ax > &str, const _Elem *format,...) |
| | Formats string using printf(). More...
|
| |
| template<class _Traits , class _Ax > |
| static DWORD | FormatMessage (DWORD dwFlags, LPCVOID lpSource, DWORD dwMessageId, DWORD dwLanguageId, std::basic_string< char, _Traits, _Ax > &str, va_list *Arguments) |
| | Formats a message string. More...
|
| |
| template<class _Traits , class _Ax > |
| static DWORD | FormatMessage (DWORD dwFlags, LPCVOID lpSource, DWORD dwMessageId, DWORD dwLanguageId, std::basic_string< wchar_t, _Traits, _Ax > &str, va_list *Arguments) |
| | Formats a message string. More...
|
| |