Home
last modified time | relevance | path

Searched refs:lpszAppend (Results 1 – 1 of 1) sorted by relevance

/reactos/dll/win32/shlwapi/
H A Dpath.c106 BOOL WINAPI PathAppendA (LPSTR lpszPath, LPCSTR lpszAppend) in PathAppendA() argument
110 if (lpszPath && lpszAppend) in PathAppendA()
112 if (!PathIsUNCA(lpszAppend)) in PathAppendA()
113 while (*lpszAppend == '\\') in PathAppendA()
114 lpszAppend++; in PathAppendA()
115 if (PathCombineA(lpszPath, lpszPath, lpszAppend)) in PathAppendA()
130 if (lpszPath && lpszAppend) in PathAppendW()
132 if (!PathIsUNCW(lpszAppend)) in PathAppendW()
133 while (*lpszAppend == '\\') in PathAppendW()
134 lpszAppend++; in PathAppendW()
[all …]