mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 09:03:25 +00:00
Fix last things preventing me from compiling the tree:
vsnprintt -> _vsnprintf in the wine/unicode.h and in riched20 svn path=/trunk/; revision=24083
This commit is contained in:
parent
2140d54ca5
commit
3b58ac1932
2 changed files with 2 additions and 2 deletions
|
@ -116,7 +116,7 @@ ME_StreamOutPrint(ME_TextEditor *editor, const char *format, ...)
|
||||||
va_list valist;
|
va_list valist;
|
||||||
|
|
||||||
va_start(valist, format);
|
va_start(valist, format);
|
||||||
len = vsnprintf(string, sizeof(string), format, valist);
|
len = _vsnprintf(string, sizeof(string), format, valist);
|
||||||
va_end(valist);
|
va_end(valist);
|
||||||
|
|
||||||
return ME_StreamOutMove(editor, string, len);
|
return ME_StreamOutMove(editor, string, len);
|
||||||
|
|
|
@ -37,7 +37,7 @@
|
||||||
#define sprintfW swprintf
|
#define sprintfW swprintf
|
||||||
#define vsprintfW vswprintf
|
#define vsprintfW vswprintf
|
||||||
#define snprintfW _snwprintf
|
#define snprintfW _snwprintf
|
||||||
#define vsnprintfW vsnwprintf
|
#define vsnprintfW _vsnwprintf
|
||||||
|
|
||||||
#ifndef WINE_UNICODE_API
|
#ifndef WINE_UNICODE_API
|
||||||
#define WINE_UNICODE_API __attribute__((dllimport))
|
#define WINE_UNICODE_API __attribute__((dllimport))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue