shell32: HCR_GetDefaultIconFromGUIDW() is unused so remove it.
This commit is contained in:
parent
fc93ff351e
commit
0ecc22be61
|
@ -313,20 +313,6 @@ BOOL HCR_GetDefaultIconA(LPCSTR szClass, LPSTR szDest, DWORD len, int* picon_idx
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
BOOL HCR_GetDefaultIconFromGUIDW(REFIID riid, LPWSTR szDest, DWORD len, int* picon_idx)
|
|
||||||
{
|
|
||||||
HKEY hkey;
|
|
||||||
BOOL ret = FALSE;
|
|
||||||
|
|
||||||
if (HCR_RegOpenClassIDKey(riid, &hkey))
|
|
||||||
{
|
|
||||||
ret = HCR_RegGetDefaultIconW(hkey, szDest, len, picon_idx);
|
|
||||||
RegCloseKey(hkey);
|
|
||||||
}
|
|
||||||
TRACE("-- %s %i\n", debugstr_w(szDest), *picon_idx);
|
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
|
|
||||||
/***************************************************************************************
|
/***************************************************************************************
|
||||||
* HCR_GetClassName [internal]
|
* HCR_GetClassName [internal]
|
||||||
*
|
*
|
||||||
|
|
|
@ -60,7 +60,6 @@ BOOL HCR_MapTypeToValueW(LPCWSTR szExtension, LPWSTR szFileType, LONG len, BOOL
|
||||||
BOOL HCR_GetDefaultVerbW( HKEY hkeyClass, LPCWSTR szVerb, LPWSTR szDest, DWORD len );
|
BOOL HCR_GetDefaultVerbW( HKEY hkeyClass, LPCWSTR szVerb, LPWSTR szDest, DWORD len );
|
||||||
BOOL HCR_GetExecuteCommandW( HKEY hkeyClass, LPCWSTR szClass, LPCWSTR szVerb, LPWSTR szDest, DWORD len );
|
BOOL HCR_GetExecuteCommandW( HKEY hkeyClass, LPCWSTR szClass, LPCWSTR szVerb, LPWSTR szDest, DWORD len );
|
||||||
BOOL HCR_GetDefaultIconW(LPCWSTR szClass, LPWSTR szDest, DWORD len, int* picon_idx);
|
BOOL HCR_GetDefaultIconW(LPCWSTR szClass, LPWSTR szDest, DWORD len, int* picon_idx);
|
||||||
BOOL HCR_GetDefaultIconFromGUIDW(REFIID riid, LPWSTR szDest, DWORD len, int* picon_idx);
|
|
||||||
BOOL HCR_GetClassNameW(REFIID riid, LPWSTR szDest, DWORD len);
|
BOOL HCR_GetClassNameW(REFIID riid, LPWSTR szDest, DWORD len);
|
||||||
|
|
||||||
/* ANSI versions of above functions, supposed to go away as soon as they are not used anymore */
|
/* ANSI versions of above functions, supposed to go away as soon as they are not used anymore */
|
||||||
|
|
Loading…
Reference in New Issue