PathAppendA(3w)
NAME
PathAppendA (SHLWAPI.@)
SYNOPSIS
BOOL PathAppendA ( LPSTR lpszPath, LPCSTR lpszAppend )
DESCRIPTION
Append one path to another.
PARAMS
lpszPath [In/Out] Initial part of path, and destination for output.
lpszAppend [In] Path to append.
RETURNS
Success: TRUE. lpszPath contains the newly created path.
Failure: FALSE, if either path is NULL, or PathCombineA(3w) fails.
NOTES
lpszAppend must contain at least one backslash ('') if not NULL.
Because PathCombineA(3w) is used to join the paths, the resulting path
is also canonicalized.
IMPLEMENTATION
Defined in "shlwapi.h".
Implemented in "build/buildd-wine-unstable_1.1.32-1+b1-amd64-KnxYu0/wine-unstable-1.1.32/build32/dlls/shlwapi/path.c".
- Debug channel "shell".