mirror of
https://github.com/reactos/reactos.git
synced 2026-06-02 17:31:23 +08:00
[SHELL32][SDK] Implement ShortSizeFormatW (#5829)
- Implement ShortSizeFormatW. - Add ShortSizeFormatW prototype into <undocshell.h>. - Modify shell32.spec.
This commit is contained in:
committed by
GitHub
parent
81e936486e
commit
2ccdd87809
@@ -86,6 +86,19 @@ ExtractIconResInfoA(
|
||||
return ExtractIconResInfoW(hHandle, strFileNameW, wIndex, lpSize, lpIcon);
|
||||
}
|
||||
|
||||
/*************************************************************************
|
||||
* ShortSizeFormatW (SHELL32.204)
|
||||
*/
|
||||
EXTERN_C
|
||||
LPWSTR WINAPI
|
||||
ShortSizeFormatW(
|
||||
_In_ DWORD dwNumber,
|
||||
_Out_writes_(0x8FFF) LPWSTR pszBuffer)
|
||||
{
|
||||
TRACE("(%lu, %p)\n", dwNumber, pszBuffer);
|
||||
return StrFormatByteSizeW(dwNumber, pszBuffer, 0x8FFF);
|
||||
}
|
||||
|
||||
/*************************************************************************
|
||||
* SHOpenEffectiveToken (SHELL32.235)
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user