mirror of
https://github.com/reactos/reactos.git
synced 2024-11-18 21:13:52 +00:00
Don't redefine _tcscpy_s and _tsplitpath_s
svn path=/trunk/; revision=38209
This commit is contained in:
parent
e5a9f1615f
commit
103afbc4a7
1 changed files with 3 additions and 2 deletions
|
@ -191,11 +191,12 @@ BOOL exists_path(LPCTSTR path);
|
|||
#else // __STDC_WANT_SECURE_LIB__
|
||||
|
||||
#define strcpy_s(d, l, s) strcpy(d, s)
|
||||
#define _tcscpy_s(d, l, s) _tcscpy(d, s)
|
||||
#define wcscpy_s(d, l, s) wcscpy(d, s)
|
||||
#define wcsncpy_s(d, l, s, n) wcsncpy(d, s, n)
|
||||
#define _stprintf_s1(b, l, f, p1) _stprintf(b, f, p1)
|
||||
#define _stprintf_s2(b, l, f, p1,p2) _stprintf(b, f, p1,p2)
|
||||
#define _tsplitpath_s(f, d,dl, p,pl, n,nl, e,el) _tsplitpath(f, d, p, n, e)
|
||||
#define _wsplitpath_s(f, d,dl, p,pl, n,nl, e,el) _wsplitpath(f, d, p, n, e)
|
||||
#define _splitpath_s(f, d,dl, p,pl, n,nl, e,el) _splitpath(f, d, p, n, e)
|
||||
|
||||
#endif // __STDC_WANT_SECURE_LIB__
|
||||
|
||||
|
|
Loading…
Reference in a new issue