shell32: Make SHILCreateFromPathA() static and remove WINAPI.
This commit is contained in:
parent
d9811e6927
commit
3eab2ee52f
|
@ -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);
|
||||||
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,
|
||||||
|
|
Loading…
Reference in New Issue