Icon library
From Just Solve the File Format Problem
(Difference between revisions)
(Pretty much a rewrite) |
|||
Line 4: | Line 4: | ||
|extensions={{ext|icl}} | |extensions={{ext|icl}} | ||
}} | }} | ||
− | + | '''Icon library''' (.icl) is a format used on Microsoft Windows for storing multiple icons in one file. It is an [[New Executable|NE]] (or maybe [[Portable Executable|PE]]) "executable" file stripped down to the bare minimum needed to use it as an icon container. The individual icons are resources within the library file, in [[ICO]] format. | |
+ | |||
+ | == Discussion == | ||
+ | The .icl files we've examined are [[New Executable|NE]] files that contain icon resources, and that have nearly all the nonessential fields set to 0. One might expect the files to be labeled internally as [[Dynamic-link library (Windows)|DLL]]s, but that is not the case for some or all .icl files. They're just generic NE files. | ||
+ | |||
+ | The origins of the '''.icl''' file extension, and any other differences it may have from a typical resource-only [[Dynamic-link library (Windows)|.dll]] file, are unclear. | ||
== Tools == | == Tools == | ||
Line 16: | Line 21: | ||
== Links == | == Links == | ||
* [http://www.rw-designer.com/icon-library-icl Icon library (RW-Designer)] | * [http://www.rw-designer.com/icon-library-icl Icon library (RW-Designer)] | ||
+ | * [[Wikipedia:ICO (file format)#Icon library]] | ||
[[Category:Microsoft]] | [[Category:Microsoft]] |
Revision as of 20:53, 17 September 2016
Icon library (.icl) is a format used on Microsoft Windows for storing multiple icons in one file. It is an NE (or maybe PE) "executable" file stripped down to the bare minimum needed to use it as an icon container. The individual icons are resources within the library file, in ICO format.
Contents |
Discussion
The .icl files we've examined are NE files that contain icon resources, and that have nearly all the nonessential fields set to 0. One might expect the files to be labeled internally as DLLs, but that is not the case for some or all .icl files. They're just generic NE files.
The origins of the .icl file extension, and any other differences it may have from a typical resource-only .dll file, are unclear.