Searched refs:pszStart (Results 1 – 6 of 6) sorted by relevance
/reactos/base/applications/network/netsh/ |
H A D | helper.c | 115 PWSTR pszStart, pszEnd; in LoadHelperDll() local 136 pszStart = wcsrchr(pszDllName, L'\\'); in LoadHelperDll() 137 if (pszStart == NULL) in LoadHelperDll() 138 pszStart = pszDllName; in LoadHelperDll() 142 (wcslen(pszStart) + 1) * sizeof(WCHAR)); in LoadHelperDll() 149 wcscpy(pEntry->pszShortName, pszStart); in LoadHelperDll()
|
/reactos/dll/win32/shell32/ |
H A D | CQueryAssociations.cpp | 718 WCHAR *pszStart; in GetExecutable() local 740 pszStart = pszCommand + 1; in GetExecutable() 741 pszEnd = strchrW(pszStart, '"'); in GetExecutable() 746 *len = SearchPathW(NULL, pszStart, NULL, pathlen, path, NULL); in GetExecutable() 750 pszStart = pszCommand; in GetExecutable() 751 for (pszEnd = pszStart; (pszEnd = strchrW(pszEnd, ' ')); pszEnd++) in GetExecutable() 755 if ((*len = SearchPathW(NULL, pszStart, NULL, pathlen, path, NULL))) in GetExecutable() 763 *len = SearchPathW(NULL, pszStart, NULL, pathlen, path, NULL); in GetExecutable()
|
H A D | precomp.h | 240 Shell_ParseSpecialFolder(_In_ LPCWSTR pszStart, _Out_ LPWSTR *ppch, _Out_ INT *pcch);
|
/reactos/modules/rosapps/applications/devutils/createspec/ |
H A D | createspec.c | 754 PSTR pszStart = strrchr(argv[1], '\\'); in main() local 755 if (pszStart == 0) in main() 756 pszStart = argv[1]; in main() 758 strcpy_s(szSpecFile, sizeof(szSpecFile), pszStart); in main()
|
/reactos/dll/win32/shlwapi/ |
H A D | propbag.cpp | 767 static BOOL LooksLikeAnAlternateStream(LPCWSTR pszStart) in LooksLikeAnAlternateStream() argument 769 LPCWSTR pch = StrRChrW(pszStart, NULL, L'\\'); in LooksLikeAnAlternateStream() 771 pch = pszStart; in LooksLikeAnAlternateStream() 777 LPCWSTR pszStart, 829 LPCWSTR pszStart, in _GetSectionAndName() argument 835 LPCWSTR pchSep = StrChrW(pszStart, L'\\'); in _GetSectionAndName() 838 UINT cchSep = (UINT)(pchSep - pszStart + 1); in _GetSectionAndName() 839 StrCpyNW(pszSection, pszStart, min(cchSep, cchSectionMax)); in _GetSectionAndName() 847 StrCpyNW(pszName, pszStart, cchNameMax); in _GetSectionAndName() 851 ERR("%p: %s\n", this, debugstr_w(pszStart)); in _GetSectionAndName()
|
/reactos/dll/win32/shell32/wine/ |
H A D | shellpath.c | 1859 INT Shell_ParseSpecialFolder(_In_ LPCWSTR pszStart, _Out_ LPWSTR *ppch, _Out_ INT *pcch) in Shell_ParseSpecialFolder() argument 1864 pchBackslash = StrChrW(pszStart, L'\\'); in Shell_ParseSpecialFolder() 1868 *pcch = (pchBackslash - pszStart) + 1; in Shell_ParseSpecialFolder() 1869 StrCpyNW(szPath, pszStart, min(*pcch, _countof(szPath))); in Shell_ParseSpecialFolder() 1875 *pcch = lstrlenW(pszStart); in Shell_ParseSpecialFolder() 1876 pszPath = pszStart; in Shell_ParseSpecialFolder()
|