barbaris
barbaris

Reputation: 515

Extract icon name from *.icl, *.dll

An icon library is file containing one or more icons and their names. To extract icon we use ExtractIcon function. What function to use to extract icon name?

Upvotes: 0

Views: 486

Answers (1)

Deanna
Deanna

Reputation: 24273

Assuming you mean the resource ID/name then you will need to enumerate them using the standard resource enumeration functions (EnumResourceTypes, EnumResourceNames, EnumResourceLanguages).

Upvotes: 1

Related Questions