PathAppendA.3w

Langue: en

Version: Jun 2009 (debian - 07/07/09)

Section: 3 (Bibliothèques de fonctions)

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 "dlls/shlwapi/path.c".

Debug channel "shell".