 |
Shell_GetImageLists Add comment W32 Constants Translate this page |
 |
 |
|
Retrieves system image lists for large and small icons -- undocumented. |
 |
 |
| Code examples: |
 |
|
|
 |
 |
| 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. |
 |
 |
| My comment: |
 |
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
|
 |
 |
| Word Index links for the Shell_GetImageLists : |
 |
|
|
 |
 |
| Translate this page: |
 |
|
 |
 |
| • |
 |
| Created: | 2007-05-14 11:37:32 | | Modified: | 2007-05-14 11:45:49 | Visited in last 7 days: 14 |