diff options
author | George Hazan <george.hazan@gmail.com> | 2013-07-24 13:59:04 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-07-24 13:59:04 +0000 |
commit | 107471fac771abe5774d10769e36c0903a908685 (patch) | |
tree | ad0a9d14281c1c017b3f4c6f95d41d65e738a985 /src/mir_core/memory.cpp | |
parent | d499d067c4e901c3d8750726405002fe033f4771 (diff) |
mir_sntprintf & mir_snvtprintf renamed to mir_snwprintf & mir_snwprintf respectively
mir_sntprintf & mir_snvtprintf are now macros, as they should be from the very beginning
git-svn-id: http://svn.miranda-ng.org/main/trunk@5466 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'src/mir_core/memory.cpp')
-rw-r--r-- | src/mir_core/memory.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mir_core/memory.cpp b/src/mir_core/memory.cpp index 2f7467ccc4..ef3006aad3 100644 --- a/src/mir_core/memory.cpp +++ b/src/mir_core/memory.cpp @@ -208,7 +208,7 @@ MIR_CORE_DLL(int) mir_snprintf(char *buffer, size_t count, const char* fmt, ...) /******************************************************************************/
-MIR_CORE_DLL(int) mir_sntprintf(TCHAR *buffer, size_t count, const TCHAR* fmt, ...)
+MIR_CORE_DLL(int) mir_snwprintf(WCHAR *buffer, size_t count, const WCHAR* fmt, ...)
{
va_list va;
int len;
@@ -233,7 +233,7 @@ MIR_CORE_DLL(int) mir_vsnprintf(char *buffer, size_t count, const char* fmt, va_ /******************************************************************************/
-MIR_CORE_DLL(int) mir_vsntprintf(TCHAR *buffer, size_t count, const TCHAR* fmt, va_list va)
+MIR_CORE_DLL(int) mir_vsnwprintf(WCHAR *buffer, size_t count, const WCHAR* fmt, va_list va)
{
int len = _vsntprintf(buffer, count-1, fmt, va);
buffer[count-1] = 0;
|