PathAppendA (SHLWAPI.@)
BOOL PathAppendA ( LPSTR lpszPath, LPCSTR lpszAppend )
Append one path to another.
lpszPath | [In/Out] | Initial part of path, and destination for output. |
lpszAppend | [In] | Path to append. |
Success: TRUE. lpszPath contains the newly created path.
Failure: FALSE, if either path is NULL, or PathCombineA fails.
lpszAppend must contain at least one backslash ('\') if not NULL. Because PathCombineA is used to join the paths, the resulting path is also canonicalized.
Defined in "shlwapi.h".
Implemented in "dlls/shlwapi/path.c". source.winehq.org/source/dlls/shlwapi/path.c
Debug channel "shell".
Copyright © 2008 The Wine Project. All trademarks are the property of their respective owners. Visit WineHQ for license details. Generated Jul 2008.