Scroll to navigation

PathAppendA(3w) Wine API 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

Declared in "shlwapi.h".
Implemented in "dlls/shlwapi/path.c".
Debug channel "shell".
Oct 2012 Wine API