Skip to content

Commit 304e9f2

Browse files
committed
[WINE] Remove hacks for missing _swprintf / _vswprintf
1 parent 1b8f03d commit 304e9f2

1 file changed

Lines changed: 0 additions & 6 deletions

File tree

sdk/include/wine/unicode.h

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,6 @@
2424
#define WINE_UNICODE_INLINE static inline
2525
#endif
2626

27-
#if (_WIN32_WINNT < _WIN32_WINNT_VISTA) || (DLL_EXPORT_VERSION < _WIN32_WINNT_VISTA)
28-
/* msvcrt versions incompatibilities */
29-
#define _swprintf(s,f,...) _snwprintf((s),MAXLONG,(f),##__VA_ARGS__)
30-
#define _vswprintf(s,f,v) _vsnwprintf((s),MAXLONG,(f),(v))
31-
#endif
32-
3327
#define memicmpW(s1,s2,n) _wcsnicmp((s1),(s2),(n))
3428
#define strlenW(s) wcslen((s))
3529
#define strcpyW(d,s) wcscpy((d),(s))

0 commit comments

Comments
 (0)