mirror of
https://github.com/reactos/reactos.git
synced 2025-08-02 18:16:29 +00:00
* Sync to trunk HEAD (r53473).
svn path=/branches/shell32_new-bringup/; revision=53475
This commit is contained in:
commit
fc902e6f58
465 changed files with 372898 additions and 11548 deletions
|
@ -10,6 +10,7 @@
|
|||
#define _tcschr _wcschr
|
||||
#define _tcscmp _wcscmp
|
||||
#define _tcscpy _wcscpy
|
||||
#define tcscpy wcscpy
|
||||
#define _tcslen _wcslen
|
||||
#define _tcsncat _wcsncat
|
||||
#define _tcsncmp _wcsncmp
|
||||
|
@ -34,6 +35,7 @@
|
|||
#define _tcschr _strchr
|
||||
#define _tcscmp _strcmp
|
||||
#define _tcscpy _strcpy
|
||||
#define tcscpy strcpy
|
||||
#define _tcslen _strlen
|
||||
#define _tcsncat _strncat
|
||||
#define _tcsncmp _strncmp
|
||||
|
|
|
@ -7,9 +7,11 @@
|
|||
PUBLIC _tcscpy
|
||||
.code
|
||||
|
||||
_tcscpy:
|
||||
FUNC tcscpy
|
||||
FPO 0, 2, 2, 2, 0, FRAME_FPO
|
||||
push esi
|
||||
push edi
|
||||
|
||||
mov edi, [esp + 12]
|
||||
mov esi, [esp + 16]
|
||||
cld
|
||||
|
@ -25,6 +27,7 @@ _tcscpy:
|
|||
pop edi
|
||||
pop esi
|
||||
ret
|
||||
ENDFUNC tcscpy
|
||||
|
||||
END
|
||||
/* EOF */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue