├── .gitignore ├── CodemastersBinImage.sln ├── CodemastersBinImage ├── App.config ├── BinImage.cs ├── CodemastersBinImage.csproj ├── Helpers.cs ├── PluginVideoSega.cs ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── WinImploder.cs ├── frmMain.Designer.cs ├── frmMain.cs ├── frmMain.resx ├── icon100x100.ico └── win_imploder.dll └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/CodemastersBinImage/HEAD/.gitignore -------------------------------------------------------------------------------- /CodemastersBinImage.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/CodemastersBinImage/HEAD/CodemastersBinImage.sln -------------------------------------------------------------------------------- /CodemastersBinImage/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/CodemastersBinImage/HEAD/CodemastersBinImage/App.config -------------------------------------------------------------------------------- /CodemastersBinImage/BinImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/CodemastersBinImage/HEAD/CodemastersBinImage/BinImage.cs -------------------------------------------------------------------------------- /CodemastersBinImage/CodemastersBinImage.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/CodemastersBinImage/HEAD/CodemastersBinImage/CodemastersBinImage.csproj -------------------------------------------------------------------------------- /CodemastersBinImage/Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/CodemastersBinImage/HEAD/CodemastersBinImage/Helpers.cs -------------------------------------------------------------------------------- /CodemastersBinImage/PluginVideoSega.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/CodemastersBinImage/HEAD/CodemastersBinImage/PluginVideoSega.cs -------------------------------------------------------------------------------- /CodemastersBinImage/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/CodemastersBinImage/HEAD/CodemastersBinImage/Program.cs -------------------------------------------------------------------------------- /CodemastersBinImage/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/CodemastersBinImage/HEAD/CodemastersBinImage/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CodemastersBinImage/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/CodemastersBinImage/HEAD/CodemastersBinImage/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /CodemastersBinImage/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/CodemastersBinImage/HEAD/CodemastersBinImage/Properties/Resources.resx -------------------------------------------------------------------------------- /CodemastersBinImage/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/CodemastersBinImage/HEAD/CodemastersBinImage/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /CodemastersBinImage/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/CodemastersBinImage/HEAD/CodemastersBinImage/Properties/Settings.settings -------------------------------------------------------------------------------- /CodemastersBinImage/WinImploder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/CodemastersBinImage/HEAD/CodemastersBinImage/WinImploder.cs -------------------------------------------------------------------------------- /CodemastersBinImage/frmMain.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/CodemastersBinImage/HEAD/CodemastersBinImage/frmMain.Designer.cs -------------------------------------------------------------------------------- /CodemastersBinImage/frmMain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/CodemastersBinImage/HEAD/CodemastersBinImage/frmMain.cs -------------------------------------------------------------------------------- /CodemastersBinImage/frmMain.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/CodemastersBinImage/HEAD/CodemastersBinImage/frmMain.resx -------------------------------------------------------------------------------- /CodemastersBinImage/icon100x100.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/CodemastersBinImage/HEAD/CodemastersBinImage/icon100x100.ico -------------------------------------------------------------------------------- /CodemastersBinImage/win_imploder.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/CodemastersBinImage/HEAD/CodemastersBinImage/win_imploder.dll -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/CodemastersBinImage/HEAD/README.md --------------------------------------------------------------------------------