Commit 388fe7e3 authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

shell32: Declare some functions static.

parent dfe3d5b8
...@@ -1158,7 +1158,7 @@ ISFHelper_fnAddFolder (ISFHelper * iface, HWND hwnd, LPCWSTR pwszName, ...@@ -1158,7 +1158,7 @@ ISFHelper_fnAddFolder (ISFHelper * iface, HWND hwnd, LPCWSTR pwszName,
* Builds a list of paths like the one used in SHFileOperation from a table of * Builds a list of paths like the one used in SHFileOperation from a table of
* PIDLs relative to the given base folder * PIDLs relative to the given base folder
*/ */
WCHAR *build_paths_list(LPCWSTR wszBasePath, int cidl, LPCITEMIDLIST *pidls) static WCHAR *build_paths_list(LPCWSTR wszBasePath, int cidl, LPCITEMIDLIST *pidls)
{ {
WCHAR *wszPathsList; WCHAR *wszPathsList;
WCHAR *wszListPos; WCHAR *wszListPos;
......
...@@ -295,7 +295,7 @@ static BOOL SHELL_ArgifyW(WCHAR* out, int len, const WCHAR* fmt, const WCHAR* lp ...@@ -295,7 +295,7 @@ static BOOL SHELL_ArgifyW(WCHAR* out, int len, const WCHAR* fmt, const WCHAR* lp
return found_p1; return found_p1;
} }
HRESULT SHELL_GetPathFromIDListForExecuteW(LPCITEMIDLIST pidl, LPWSTR pszPath, UINT uOutSize) static HRESULT SHELL_GetPathFromIDListForExecuteW(LPCITEMIDLIST pidl, LPWSTR pszPath, UINT uOutSize)
{ {
STRRET strret; STRRET strret;
IShellFolder* desktop; IShellFolder* desktop;
......
...@@ -662,7 +662,7 @@ static DWORD SHFindAttrW(LPCWSTR pName, BOOL fileOnly) ...@@ -662,7 +662,7 @@ static DWORD SHFindAttrW(LPCWSTR pName, BOOL fileOnly)
* otherwise the ASCII strings are copied into it and the buffer is increased * otherwise the ASCII strings are copied into it and the buffer is increased
* to point to the location after the final 0 termination char. * to point to the location after the final 0 termination char.
*/ */
DWORD SHNameTranslate(LPWSTR* wString, LPCWSTR* pWToFrom, BOOL more) static DWORD SHNameTranslate(LPWSTR* wString, LPCWSTR* pWToFrom, BOOL more)
{ {
DWORD size = 0, aSize = 0; DWORD size = 0, aSize = 0;
LPCSTR aString = (LPCSTR)*pWToFrom; LPCSTR aString = (LPCSTR)*pWToFrom;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment