Reputation: 515
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
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