NAME

PathCombineA  (SHLWAPI.@)

SYNOPSIS

 LPSTR PathCombineA
 (
  LPSTR  lpszDest,
  LPCSTR lpszDir,
  LPCSTR lpszFile
 )

DESCRIPTION

Combine two paths together.

PARAMS

lpszDest [Out] Destination for combined path.
lpszDir [In] Directory path.
lpszFile [In] File path.

RETURNS

Success: The output path

Failure: NULL, if inputs are invalid.

NOTES

lpszDest should be at least MAX_PATH in size, and may point to the same memory location as lpszDir. The combined path is canonicalised.

IMPLEMENTATION

Defined in "shlwapi.h".

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

Debug channel "shell".


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