Skip to content

Latest commit

 

History

History
59 lines (39 loc) · 1.23 KB

Shell_GetImageLists.md

File metadata and controls

59 lines (39 loc) · 1.23 KB

Home

Function name : Shell_GetImageLists

Group: Shell Functions - Library: shell32


Retrieves system image lists for large and small icons -- undocumented.


Declaration:

BOOL Shell_GetImageLists(
	HIMAGELIST *phiml,
	HIMAGELIST *phimlSmall
);  

FoxPro declaration:

DECLARE INTEGER Shell_GetImageLists IN shell32;
	INTEGER @phiml,;
	INTEGER @phimlSmall
  

Parameters:

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.


Return value:

Returns TRUE on success.


Comments:

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