├── .gitignore ├── About.Designer.cs ├── About.cs ├── About.resx ├── HTMLBuilder.cs ├── HiiPackage.cs ├── HpkFile.cs ├── HpkParser.cs ├── IfrStructures.cs ├── IfrViewer.csproj ├── IfrViewer.csproj.user ├── IfrViewer.sln ├── Images ├── OutlineIcon.ico ├── icons8-outline-96.png └── icons8-outline-96_mod-icon.png ├── LICENSE ├── MainForm.Designer.cs ├── MainForm.cs ├── MainForm.resx ├── ParseLogical.cs ├── PrepareRelease.bat ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── README.md ├── THIRDPARTYLICENSEREADME └── test_files ├── BootManagerUiLib.uni ├── BootManagerUiLibStrDefs.hpk ├── BootManagerVfr.Vfr ├── BootManagerVfr.hpk ├── BootManagerVfr.i ├── BootManagerVfr.lst ├── edk2 ├── Guid │ └── HiiFormMapMethodGuid.h └── Uefi │ └── UefiInternalFormRepresentation.h └── vfrcomp.bat /.gitignore: -------------------------------------------------------------------------------- 1 | /.vs 2 | /bin 3 | /obj 4 | /*.sdf 5 | /FinalFiles 6 | -------------------------------------------------------------------------------- /About.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topeterk/IfrViewer/HEAD/About.Designer.cs -------------------------------------------------------------------------------- /About.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topeterk/IfrViewer/HEAD/About.cs -------------------------------------------------------------------------------- /About.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topeterk/IfrViewer/HEAD/About.resx -------------------------------------------------------------------------------- /HTMLBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topeterk/IfrViewer/HEAD/HTMLBuilder.cs -------------------------------------------------------------------------------- /HiiPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topeterk/IfrViewer/HEAD/HiiPackage.cs -------------------------------------------------------------------------------- /HpkFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topeterk/IfrViewer/HEAD/HpkFile.cs -------------------------------------------------------------------------------- /HpkParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topeterk/IfrViewer/HEAD/HpkParser.cs -------------------------------------------------------------------------------- /IfrStructures.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topeterk/IfrViewer/HEAD/IfrStructures.cs -------------------------------------------------------------------------------- /IfrViewer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topeterk/IfrViewer/HEAD/IfrViewer.csproj -------------------------------------------------------------------------------- /IfrViewer.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topeterk/IfrViewer/HEAD/IfrViewer.csproj.user -------------------------------------------------------------------------------- /IfrViewer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topeterk/IfrViewer/HEAD/IfrViewer.sln -------------------------------------------------------------------------------- /Images/OutlineIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topeterk/IfrViewer/HEAD/Images/OutlineIcon.ico -------------------------------------------------------------------------------- /Images/icons8-outline-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topeterk/IfrViewer/HEAD/Images/icons8-outline-96.png -------------------------------------------------------------------------------- /Images/icons8-outline-96_mod-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topeterk/IfrViewer/HEAD/Images/icons8-outline-96_mod-icon.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topeterk/IfrViewer/HEAD/LICENSE -------------------------------------------------------------------------------- /MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topeterk/IfrViewer/HEAD/MainForm.Designer.cs -------------------------------------------------------------------------------- /MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topeterk/IfrViewer/HEAD/MainForm.cs -------------------------------------------------------------------------------- /MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topeterk/IfrViewer/HEAD/MainForm.resx -------------------------------------------------------------------------------- /ParseLogical.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topeterk/IfrViewer/HEAD/ParseLogical.cs -------------------------------------------------------------------------------- /PrepareRelease.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topeterk/IfrViewer/HEAD/PrepareRelease.bat -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topeterk/IfrViewer/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topeterk/IfrViewer/HEAD/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topeterk/IfrViewer/HEAD/Properties/Resources.resx -------------------------------------------------------------------------------- /Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topeterk/IfrViewer/HEAD/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topeterk/IfrViewer/HEAD/Properties/Settings.settings -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topeterk/IfrViewer/HEAD/README.md -------------------------------------------------------------------------------- /THIRDPARTYLICENSEREADME: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topeterk/IfrViewer/HEAD/THIRDPARTYLICENSEREADME -------------------------------------------------------------------------------- /test_files/BootManagerUiLib.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topeterk/IfrViewer/HEAD/test_files/BootManagerUiLib.uni -------------------------------------------------------------------------------- /test_files/BootManagerUiLibStrDefs.hpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topeterk/IfrViewer/HEAD/test_files/BootManagerUiLibStrDefs.hpk -------------------------------------------------------------------------------- /test_files/BootManagerVfr.Vfr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topeterk/IfrViewer/HEAD/test_files/BootManagerVfr.Vfr -------------------------------------------------------------------------------- /test_files/BootManagerVfr.hpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topeterk/IfrViewer/HEAD/test_files/BootManagerVfr.hpk -------------------------------------------------------------------------------- /test_files/BootManagerVfr.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topeterk/IfrViewer/HEAD/test_files/BootManagerVfr.i -------------------------------------------------------------------------------- /test_files/BootManagerVfr.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topeterk/IfrViewer/HEAD/test_files/BootManagerVfr.lst -------------------------------------------------------------------------------- /test_files/edk2/Guid/HiiFormMapMethodGuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topeterk/IfrViewer/HEAD/test_files/edk2/Guid/HiiFormMapMethodGuid.h -------------------------------------------------------------------------------- /test_files/edk2/Uefi/UefiInternalFormRepresentation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topeterk/IfrViewer/HEAD/test_files/edk2/Uefi/UefiInternalFormRepresentation.h -------------------------------------------------------------------------------- /test_files/vfrcomp.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topeterk/IfrViewer/HEAD/test_files/vfrcomp.bat --------------------------------------------------------------------------------