RtlAppendAsciizToString (NTDLL.@)
NTSTATUS RtlAppendAsciizToString ( STRING* dest, LPCSTR src )
dest | [In/Out] | Buffered character string to which src is concatenated. |
src | [In] | '\0' terminated character string to be concatenated. |
Concatenates a buffered character string and a '\0' terminated character string.
Success: STATUS_SUCCESS. src is appended to dest.
Failure: STATUS_BUFFER_TOO_SMALL, if the buffer of dest is too small to hold the concatenated string.
if src is NULL dest is unchanged. dest is never '\0' terminated.
Declared in "include/winternl.h". gitlab.winehq.org/wine/wine/blob/master/include/winternl.h
Implemented in "dlls/ntdll/rtlstr.c". gitlab.winehq.org/wine/wine/blob/master/dlls/ntdll/rtlstr.c
Debug channel "ntdll".
Copyright © 2024 The Wine Project. All trademarks are the property of their respective owners. Visit WineHQ for license details. Generated Nov 2024.