Group: Shell Functions - Library: shell32
BOOL Shell_GetImageLists(
HIMAGELIST *phiml,
HIMAGELIST *phimlSmall
);
DECLARE INTEGER Shell_GetImageLists IN shell32;
INTEGER @phiml,;
INTEGER @phimlSmall
phiml [in] Pointer to the handle of an image list which, on success, receives the system image list for large (32 x 32) icons.
phimlSmall [in] Pointer to the handle of an image list which, on success, receives the system image list for small (16 x 16) icons.
Returns TRUE on success.
This function is available through Microsoft Windows XP Service Pack 2 (SP2) and Windows Server 2003. It might be altered or unavailable in subsequent versions of Windows.
LOCAL hImg, hImgSmall
STORE 0 TO hImg, hImgSmall
? Shell_GetImageLists(@hImg, @hImgSmall)
? hImg, hImgSmall