How to get the flags set during the creation of an imagelist ?

Hi!
I use this code to create the image list:


HIMAGELIST hImageList = ImageList_Create(16,16,ILC_MASK | ILC_COLOR32, 0, 1);


Then, in the code, I get hImageList and I want to get the flags (ILC_MASK | ILC_COLOR32)?
How must I do ?
Thanks you very much for your help
I'm not sure what you are trying to do. If you want the value of the flags
just insert the code:

int tempmask = ILC_MASK;
int tempcolor = ILC_COLOR32;

Then find a way to print them to the screen.

You may be able to search the Windows header files also.


Topic archived. No new replies allowed.