Searched refs:nIcons (Results 1 – 6 of 6) sorted by relevance
/reactos/win32ss/user/user32/misc/ |
H A D | exticon.c | 284 UINT nIcons, in ICO_ExtractIconExW() argument 464 if (nIcons == 0) in ICO_ExtractIconExW() 474 nIcons = iconDirCount - nIconIndex; in ICO_ExtractIconExW() 476 for (i = 0; i < nIcons; i++) in ICO_ExtractIconExW() 487 for (icon = 0; icon < nIcons; icon++) in ICO_ExtractIconExW() 706 if( nIcons > iconDirCount - nIconIndex ) in ICO_ExtractIconExW() 707 nIcons = iconDirCount - nIconIndex; in ICO_ExtractIconExW() 712 for (i=0; i < nIcons; i++,xresent++) in ICO_ExtractIconExW() 740 for (i=0; i<nIcons; i++) in ICO_ExtractIconExW() 921 UINT nIcons ) in PrivateExtractIconExW() argument [all …]
|
/reactos/modules/rostests/apitests/shell32/ |
H A D | ExtractIconEx.cpp | 15 UINT nIcons; member 112 …ok(nReturnedIcons == IconTests[i].nIcons, "ExtractIconExW(%u): Expects %u icons, got %u\n", i, Ico… in START_TEST() 119 …ok(nExtractedIcons == IconTests[i].nIcons, "ExtractIconExW(%u): Expects %u icons, got %u\n", i, Ic… in START_TEST()
|
/reactos/sdk/include/psdk/ |
H A D | shellapi.h | 468 _Out_writes_opt_(nIcons) HICON *phiconLarge, 469 _Out_writes_opt_(nIcons) HICON *phiconSmall, 470 _In_ UINT nIcons); 477 _Out_writes_opt_(nIcons) HICON *phiconLarge, 478 _Out_writes_opt_(nIcons) HICON *phiconSmall, 479 _In_ UINT nIcons);
|
H A D | winuser.h | 5170 _Out_writes_opt_(nIcons) HICON *phicon, 5171 _Out_writes_opt_(nIcons) UINT *piconid, 5172 _In_ UINT nIcons, 5182 _Out_writes_opt_(nIcons) HICON *phicon, 5183 _Out_writes_opt_(nIcons) UINT *piconid, 5184 _In_ UINT nIcons,
|
/reactos/dll/win32/shell32/dialogs/ |
H A D | dialogs.cpp | 64 INT nIcons; member 126 pIconContext->nIcons = ExtractIconExW(szExpandedPath, -1, NULL, NULL, 0); in DoLoadIcons() 127 pIconContext->phIcons = new HICON[pIconContext->nIcons]; in DoLoadIcons() 129 if (ExtractIconExW(szExpandedPath, 0, pIconContext->phIcons, NULL, pIconContext->nIcons)) in DoLoadIcons() 135 pIconContext->nIcons = 0; in DoLoadIcons() 141 pIconContext->nIcons = 1; in DoLoadIcons() 144 if (ExtractIconExW(szExpandedPath, 0, pIconContext->phIcons, NULL, pIconContext->nIcons)) in DoLoadIcons() 150 pIconContext->nIcons = 0; in DoLoadIcons() 158 if (pIconContext->nIcons == 0) in DoLoadIcons() 164 return (pIconContext->nIcons > 0); in DoLoadIcons()
|
/reactos/dll/win32/shell32/ |
H A D | iconcache.cpp | 849 …actIconExW(LPCWSTR lpszFile, INT nIconIndex, HICON * phiconLarge, HICON * phiconSmall, UINT nIcons) in ExtractIconExW() argument 866 TRACE("%s %i %p %p %i\n", debugstr_w(lpszFile), nIconIndex, phiconLarge, phiconSmall, nIcons); in ExtractIconExW() 867 ret = PrivateExtractIconExW(lpszFile, nIconIndex, phiconLarge, phiconSmall, nIcons); in ExtractIconExW() 885 …ractIconExA(LPCSTR lpszFile, INT nIconIndex, HICON * phiconLarge, HICON * phiconSmall, UINT nIcons) in ExtractIconExA() argument 891 TRACE("%s %i %p %p %i\n", lpszFile, nIconIndex, phiconLarge, phiconSmall, nIcons); in ExtractIconExA() 896 ret = ExtractIconExW(lpwstrFile, nIconIndex, phiconLarge, phiconSmall, nIcons); in ExtractIconExA()
|