Scroll to navigation

PathFindNextComponentA(3w) Wine API PathFindNextComponentA(3w)

NAME

PathFindNextComponentA (SHLWAPI.@)

SYNOPSIS

LPSTR PathFindNextComponentA
(
LPCSTR lpszPath
)
 

DESCRIPTION

Find the next component in a path.
 

PARAMS

lpszPath [In] Path to find next component in.
 

RETURNS

Success: A pointer to the next component, or the end of the string.
Failure: NULL, If lpszPath is invalid.
 

NOTES

A 'component' is either a backslash character () or UNC marker (\). Because of this, relative paths (e.g "c:foo") are regarded as having only one component.
 

IMPLEMENTATION

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