Commit 3eab2ee5 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

shell32: Make SHILCreateFromPathA() static and remove WINAPI.

parent d9811e69
...@@ -381,7 +381,7 @@ HRESULT WINAPI ILSaveToStream (IStream * pStream, LPCITEMIDLIST pPidl) ...@@ -381,7 +381,7 @@ HRESULT WINAPI ILSaveToStream (IStream * pStream, LPCITEMIDLIST pPidl)
* NOTES * NOTES
* Wrapper for IShellFolder_ParseDisplayName(). * Wrapper for IShellFolder_ParseDisplayName().
*/ */
HRESULT WINAPI SHILCreateFromPathA(LPCSTR path, LPITEMIDLIST * ppidl, DWORD * attributes) static HRESULT SHILCreateFromPathA(LPCSTR path, LPITEMIDLIST * ppidl, DWORD * attributes)
{ {
WCHAR lpszDisplayName[MAX_PATH]; WCHAR lpszDisplayName[MAX_PATH];
......
...@@ -55,11 +55,6 @@ void WINAPI ILGlobalFree(LPITEMIDLIST pidl); ...@@ -55,11 +55,6 @@ void WINAPI ILGlobalFree(LPITEMIDLIST pidl);
LPITEMIDLIST WINAPI SHSimpleIDListFromPathA (LPCSTR lpszPath); LPITEMIDLIST WINAPI SHSimpleIDListFromPathA (LPCSTR lpszPath);
LPITEMIDLIST WINAPI SHSimpleIDListFromPathW (LPCWSTR lpszPath); LPITEMIDLIST WINAPI SHSimpleIDListFromPathW (LPCWSTR lpszPath);
HRESULT WINAPI SHILCreateFromPathA (
LPCSTR path,
LPITEMIDLIST * ppidl,
DWORD *attributes);
HRESULT WINAPI SHILCreateFromPathW ( HRESULT WINAPI SHILCreateFromPathW (
LPCWSTR path, LPCWSTR path,
LPITEMIDLIST * ppidl, LPITEMIDLIST * ppidl,
......
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