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 fails.

NOTES

lpszAppend must contain at least one backslash ('\') if not NULL. Because PathCombineA is used to join the paths, the resulting path is also canonicalized.

IMPLEMENTATION

Defined in "shlwapi.h".

Implemented in "dlls/shlwapi/path.c". source.winehq.org/source/dlls/shlwapi/path.c

Debug channel "shell".


Copyright © 2007 The Wine Project. All trademarks are the property of their respective owners. Visit WineHQ for license details. Generated Mar 2007.