RtlAppendAsciizToString(3w)
NAME
RtlAppendAsciizToString (NTDLL.@)
SYNOPSIS
NTSTATUS RtlAppendAsciizToString ( STRING* dest, LPCSTR src )
PARAMS
dest [In/Out] Buffered character string to which src is concatenated.
src [In] ' ' terminated character string to be concatenated.
DESCRIPTION
Concatenates a buffered character string and a ' ' terminated character
string.
RETURNS
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.
NOTES
if src is NULL dest is unchanged. dest is never ' ' terminated.
IMPLEMENTATION
Defined in "winternl.h".
Implemented in "build/buildd-wine-unstable_1.1.32-1+b1-amd64-KnxYu0/wine-unstable-1.1.32/build32/dlls/ntdll/rtlstr.c".
- Debug channel "ntdll".