118 lines
2.5 KiB
C
118 lines
2.5 KiB
C
|
|
/*
|
|
#define DEFINE_UNICODE FALSE
|
|
#define _PATH_SEPARATOR_CHR '\\'
|
|
#define _PATH_SEPARATOR_STR "\\"
|
|
#define PATH_CCH_APPEND PathCchAppendA
|
|
*/
|
|
|
|
#if DEFINE_UNICODE
|
|
|
|
HRESULT PATH_CCH_APPEND(PWSTR pszPath, size_t cchPath, PCWSTR pszMore)
|
|
{
|
|
#ifdef _WIN32
|
|
BOOL pathBackslash;
|
|
BOOL moreBackslash;
|
|
size_t pszMoreLength;
|
|
size_t pszPathLength;
|
|
|
|
if (!pszPath)
|
|
return S_FALSE;
|
|
|
|
if (!pszMore)
|
|
return S_FALSE;
|
|
|
|
pszMoreLength = lstrlenW(pszMore);
|
|
pszPathLength = lstrlenW(pszPath);
|
|
|
|
pathBackslash = (pszPath[pszPathLength - 1] == _PATH_SEPARATOR_CHR) ? TRUE : FALSE;
|
|
moreBackslash = (pszMore[0] == _PATH_SEPARATOR_CHR) ? TRUE : FALSE;
|
|
|
|
if (pathBackslash && moreBackslash)
|
|
{
|
|
if ((pszPathLength + pszMoreLength - 1) < cchPath)
|
|
{
|
|
swprintf_s(&pszPath[pszPathLength], cchPath - pszPathLength, L"%s", &pszMore[1]);
|
|
return S_OK;
|
|
}
|
|
}
|
|
else if ((pathBackslash && !moreBackslash) || (!pathBackslash && moreBackslash))
|
|
{
|
|
if ((pszPathLength + pszMoreLength) < cchPath)
|
|
{
|
|
swprintf_s(&pszPath[pszPathLength], cchPath - pszPathLength, L"%s", pszMore);
|
|
return S_OK;
|
|
}
|
|
}
|
|
else if (!pathBackslash && !moreBackslash)
|
|
{
|
|
if ((pszPathLength + pszMoreLength + 1) < cchPath)
|
|
{
|
|
swprintf_s(&pszPath[pszPathLength], cchPath - pszPathLength, _PATH_SEPARATOR_STR L"%s", pszMore);
|
|
return S_OK;
|
|
}
|
|
}
|
|
#endif
|
|
|
|
return S_FALSE;
|
|
}
|
|
|
|
#else
|
|
|
|
HRESULT PATH_CCH_APPEND(PSTR pszPath, size_t cchPath, PCSTR pszMore)
|
|
{
|
|
BOOL pathBackslash;
|
|
BOOL moreBackslash;
|
|
size_t pszMoreLength;
|
|
size_t pszPathLength;
|
|
|
|
if (!pszPath)
|
|
return S_FALSE;
|
|
|
|
if (!pszMore)
|
|
return S_FALSE;
|
|
|
|
pszMoreLength = lstrlenA(pszMore);
|
|
pszPathLength = lstrlenA(pszPath);
|
|
|
|
pathBackslash = (pszPath[pszPathLength - 1] == _PATH_SEPARATOR_CHR) ? TRUE : FALSE;
|
|
moreBackslash = (pszMore[0] == _PATH_SEPARATOR_CHR) ? TRUE : FALSE;
|
|
|
|
if (pathBackslash && moreBackslash)
|
|
{
|
|
if ((pszPathLength + pszMoreLength - 1) < cchPath)
|
|
{
|
|
sprintf_s(&pszPath[pszPathLength], cchPath - pszPathLength, "%s", &pszMore[1]);
|
|
return S_OK;
|
|
}
|
|
}
|
|
else if ((pathBackslash && !moreBackslash) || (!pathBackslash && moreBackslash))
|
|
{
|
|
if ((pszPathLength + pszMoreLength) < cchPath)
|
|
{
|
|
sprintf_s(&pszPath[pszPathLength], cchPath - pszPathLength, "%s", pszMore);
|
|
return S_OK;
|
|
}
|
|
}
|
|
else if (!pathBackslash && !moreBackslash)
|
|
{
|
|
if ((pszPathLength + pszMoreLength + 1) < cchPath)
|
|
{
|
|
sprintf_s(&pszPath[pszPathLength], cchPath - pszPathLength, _PATH_SEPARATOR_STR "%s", pszMore);
|
|
return S_OK;
|
|
}
|
|
}
|
|
|
|
return S_FALSE;
|
|
}
|
|
|
|
#endif
|
|
|
|
/*
|
|
#undef DEFINE_UNICODE
|
|
#undef _PATH_SEPARATOR_CHR
|
|
#undef _PATH_SEPARATOR_STR
|
|
#undef PATH_CCH_APPEND
|
|
*/
|
|
|