├── .editorconfig ├── .github └── workflows │ └── msbuild.yml ├── Directory.Build.props ├── LICENSE.md ├── Readme.md ├── WICExplorer.sln ├── WICExplorer.sln.DotSettings ├── cpp.hint ├── default.ruleset ├── default.ruleset.md ├── description.html ├── description ├── 32bebad4-50b0-464f-8383-7628cf4ca2a1Brand.css ├── Brand.css ├── Galleries.css └── Layout.css ├── generate-header-units ├── GenerateHeaderUnits.cpp ├── GenerateHeaderUnits.vcxproj ├── GenerateHeaderUnits.vcxproj.filters ├── Windows-import.h └── std.h ├── spelling.dic └── src ├── AboutDlg.cpp ├── AboutDlg.ixx ├── BitmapDataObject.cpp ├── BitmapDataObject.ixx ├── CodeGenerator.ixx ├── ComSmartPointers.h ├── Element.cpp ├── Element.ixx ├── EncoderSelectionDlg.cpp ├── EncoderSelectionDlg.ixx ├── ICodeGenerator.ixx ├── IOutputDevice.ixx ├── ImageTransencoder.cpp ├── ImageTransencoder.ixx ├── ImportMsXml2.h ├── Macros.h ├── MainFrame.cpp ├── MainFrame.h ├── MainTree.bmp ├── MetadataDictionary.xml ├── MetadataTranslator.cpp ├── MetadataTranslator.ixx ├── OutputDevice.cpp ├── OutputDevice.ixx ├── PropVariant.cpp ├── PropVariant.ixx ├── Stopwatch.ixx ├── Toolbar.bmp ├── Util.cpp ├── Util.ixx ├── ViewInstalledCodecsDlg.cpp ├── ViewInstalledCodecsDlg.ixx ├── WICExplorer.cpp ├── WICExplorer.ico ├── WICExplorer.rc ├── WICExplorer.vcxproj ├── WICExplorer.vcxproj.filters ├── app.manifest ├── msxml2.tlb └── resource.h /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbaderks/WICExplorer/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/msbuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbaderks/WICExplorer/HEAD/.github/workflows/msbuild.yml -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbaderks/WICExplorer/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbaderks/WICExplorer/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbaderks/WICExplorer/HEAD/Readme.md -------------------------------------------------------------------------------- /WICExplorer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbaderks/WICExplorer/HEAD/WICExplorer.sln -------------------------------------------------------------------------------- /WICExplorer.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbaderks/WICExplorer/HEAD/WICExplorer.sln.DotSettings -------------------------------------------------------------------------------- /cpp.hint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbaderks/WICExplorer/HEAD/cpp.hint -------------------------------------------------------------------------------- /default.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbaderks/WICExplorer/HEAD/default.ruleset -------------------------------------------------------------------------------- /default.ruleset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbaderks/WICExplorer/HEAD/default.ruleset.md -------------------------------------------------------------------------------- /description.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbaderks/WICExplorer/HEAD/description.html -------------------------------------------------------------------------------- /description/32bebad4-50b0-464f-8383-7628cf4ca2a1Brand.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbaderks/WICExplorer/HEAD/description/32bebad4-50b0-464f-8383-7628cf4ca2a1Brand.css -------------------------------------------------------------------------------- /description/Brand.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbaderks/WICExplorer/HEAD/description/Brand.css -------------------------------------------------------------------------------- /description/Galleries.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbaderks/WICExplorer/HEAD/description/Galleries.css -------------------------------------------------------------------------------- /description/Layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbaderks/WICExplorer/HEAD/description/Layout.css -------------------------------------------------------------------------------- /generate-header-units/GenerateHeaderUnits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbaderks/WICExplorer/HEAD/generate-header-units/GenerateHeaderUnits.cpp -------------------------------------------------------------------------------- /generate-header-units/GenerateHeaderUnits.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbaderks/WICExplorer/HEAD/generate-header-units/GenerateHeaderUnits.vcxproj -------------------------------------------------------------------------------- /generate-header-units/GenerateHeaderUnits.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbaderks/WICExplorer/HEAD/generate-header-units/GenerateHeaderUnits.vcxproj.filters -------------------------------------------------------------------------------- /generate-header-units/Windows-import.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbaderks/WICExplorer/HEAD/generate-header-units/Windows-import.h -------------------------------------------------------------------------------- /generate-header-units/std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbaderks/WICExplorer/HEAD/generate-header-units/std.h -------------------------------------------------------------------------------- /spelling.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbaderks/WICExplorer/HEAD/spelling.dic -------------------------------------------------------------------------------- /src/AboutDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbaderks/WICExplorer/HEAD/src/AboutDlg.cpp -------------------------------------------------------------------------------- /src/AboutDlg.ixx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbaderks/WICExplorer/HEAD/src/AboutDlg.ixx -------------------------------------------------------------------------------- /src/BitmapDataObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbaderks/WICExplorer/HEAD/src/BitmapDataObject.cpp -------------------------------------------------------------------------------- /src/BitmapDataObject.ixx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbaderks/WICExplorer/HEAD/src/BitmapDataObject.ixx -------------------------------------------------------------------------------- /src/CodeGenerator.ixx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbaderks/WICExplorer/HEAD/src/CodeGenerator.ixx -------------------------------------------------------------------------------- /src/ComSmartPointers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbaderks/WICExplorer/HEAD/src/ComSmartPointers.h -------------------------------------------------------------------------------- /src/Element.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbaderks/WICExplorer/HEAD/src/Element.cpp -------------------------------------------------------------------------------- /src/Element.ixx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbaderks/WICExplorer/HEAD/src/Element.ixx -------------------------------------------------------------------------------- /src/EncoderSelectionDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbaderks/WICExplorer/HEAD/src/EncoderSelectionDlg.cpp -------------------------------------------------------------------------------- /src/EncoderSelectionDlg.ixx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbaderks/WICExplorer/HEAD/src/EncoderSelectionDlg.ixx -------------------------------------------------------------------------------- /src/ICodeGenerator.ixx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbaderks/WICExplorer/HEAD/src/ICodeGenerator.ixx -------------------------------------------------------------------------------- /src/IOutputDevice.ixx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbaderks/WICExplorer/HEAD/src/IOutputDevice.ixx -------------------------------------------------------------------------------- /src/ImageTransencoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbaderks/WICExplorer/HEAD/src/ImageTransencoder.cpp -------------------------------------------------------------------------------- /src/ImageTransencoder.ixx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbaderks/WICExplorer/HEAD/src/ImageTransencoder.ixx -------------------------------------------------------------------------------- /src/ImportMsXml2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbaderks/WICExplorer/HEAD/src/ImportMsXml2.h -------------------------------------------------------------------------------- /src/Macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbaderks/WICExplorer/HEAD/src/Macros.h -------------------------------------------------------------------------------- /src/MainFrame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbaderks/WICExplorer/HEAD/src/MainFrame.cpp -------------------------------------------------------------------------------- /src/MainFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbaderks/WICExplorer/HEAD/src/MainFrame.h -------------------------------------------------------------------------------- /src/MainTree.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbaderks/WICExplorer/HEAD/src/MainTree.bmp -------------------------------------------------------------------------------- /src/MetadataDictionary.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbaderks/WICExplorer/HEAD/src/MetadataDictionary.xml -------------------------------------------------------------------------------- /src/MetadataTranslator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbaderks/WICExplorer/HEAD/src/MetadataTranslator.cpp -------------------------------------------------------------------------------- /src/MetadataTranslator.ixx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbaderks/WICExplorer/HEAD/src/MetadataTranslator.ixx -------------------------------------------------------------------------------- /src/OutputDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbaderks/WICExplorer/HEAD/src/OutputDevice.cpp -------------------------------------------------------------------------------- /src/OutputDevice.ixx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbaderks/WICExplorer/HEAD/src/OutputDevice.ixx -------------------------------------------------------------------------------- /src/PropVariant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbaderks/WICExplorer/HEAD/src/PropVariant.cpp -------------------------------------------------------------------------------- /src/PropVariant.ixx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbaderks/WICExplorer/HEAD/src/PropVariant.ixx -------------------------------------------------------------------------------- /src/Stopwatch.ixx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbaderks/WICExplorer/HEAD/src/Stopwatch.ixx -------------------------------------------------------------------------------- /src/Toolbar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbaderks/WICExplorer/HEAD/src/Toolbar.bmp -------------------------------------------------------------------------------- /src/Util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbaderks/WICExplorer/HEAD/src/Util.cpp -------------------------------------------------------------------------------- /src/Util.ixx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbaderks/WICExplorer/HEAD/src/Util.ixx -------------------------------------------------------------------------------- /src/ViewInstalledCodecsDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbaderks/WICExplorer/HEAD/src/ViewInstalledCodecsDlg.cpp -------------------------------------------------------------------------------- /src/ViewInstalledCodecsDlg.ixx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbaderks/WICExplorer/HEAD/src/ViewInstalledCodecsDlg.ixx -------------------------------------------------------------------------------- /src/WICExplorer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbaderks/WICExplorer/HEAD/src/WICExplorer.cpp -------------------------------------------------------------------------------- /src/WICExplorer.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbaderks/WICExplorer/HEAD/src/WICExplorer.ico -------------------------------------------------------------------------------- /src/WICExplorer.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbaderks/WICExplorer/HEAD/src/WICExplorer.rc -------------------------------------------------------------------------------- /src/WICExplorer.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbaderks/WICExplorer/HEAD/src/WICExplorer.vcxproj -------------------------------------------------------------------------------- /src/WICExplorer.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbaderks/WICExplorer/HEAD/src/WICExplorer.vcxproj.filters -------------------------------------------------------------------------------- /src/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbaderks/WICExplorer/HEAD/src/app.manifest -------------------------------------------------------------------------------- /src/msxml2.tlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbaderks/WICExplorer/HEAD/src/msxml2.tlb -------------------------------------------------------------------------------- /src/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbaderks/WICExplorer/HEAD/src/resource.h --------------------------------------------------------------------------------