├── .gitignore ├── Extensions ├── AutoInstall.bat └── Template │ ├── .gitignore │ ├── Actions.cpp │ ├── Common.h │ ├── Conditions.cpp │ ├── Edittime.cpp │ ├── Expressions.cpp │ ├── Ext.def │ ├── Ext.json │ ├── Ext.rc │ ├── Extension.cpp │ ├── Extension.h │ ├── General.cpp │ ├── Icon.png │ ├── Runtime.cpp │ ├── Template.sln │ ├── Template.vcproj │ └── resource.h ├── Inc ├── BlitMac.h ├── CFCMacro.h ├── Ccx.h ├── Ccxhdr.h ├── CfcError.h ├── CfcFile.h ├── Cncf.h ├── Cncy.h ├── Cnpdll.h ├── D3dSurfInfo.h ├── EVTCCX.H ├── Edif.h ├── Fill.h ├── FilterMgr.h ├── GlobalPCH.h ├── ImageFlt.h ├── ImgFlt.h ├── ImgFltDefs.h ├── Mvt.h ├── ObjectSelection.h ├── PTYPE.H ├── Palet.h ├── PaletCpp.h ├── Patch.h ├── PictEdDefs.h ├── Props.h ├── SndDefs.h ├── SoundConverter.h ├── SoundError.h ├── SoundFilter.h ├── SoundFilterMgr.h ├── StdDefs.h ├── Surface.h ├── SurfaceDefs.h ├── TigsExt.hpp ├── WinMacro.h ├── cncr.h ├── colors.h └── json.h ├── Lib ├── Edif.Edittime.cpp ├── Edif.General.cpp ├── Edif.Runtime.cpp ├── Edif.cpp ├── ObjectSelection.cpp ├── json.c ├── mmfs2.lib ├── mmfs2hwa.lib └── mmfs2u.lib └── README /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClickteamLLC/windows-edif/HEAD/.gitignore -------------------------------------------------------------------------------- /Extensions/AutoInstall.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClickteamLLC/windows-edif/HEAD/Extensions/AutoInstall.bat -------------------------------------------------------------------------------- /Extensions/Template/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClickteamLLC/windows-edif/HEAD/Extensions/Template/.gitignore -------------------------------------------------------------------------------- /Extensions/Template/Actions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClickteamLLC/windows-edif/HEAD/Extensions/Template/Actions.cpp -------------------------------------------------------------------------------- /Extensions/Template/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClickteamLLC/windows-edif/HEAD/Extensions/Template/Common.h -------------------------------------------------------------------------------- /Extensions/Template/Conditions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClickteamLLC/windows-edif/HEAD/Extensions/Template/Conditions.cpp -------------------------------------------------------------------------------- /Extensions/Template/Edittime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClickteamLLC/windows-edif/HEAD/Extensions/Template/Edittime.cpp -------------------------------------------------------------------------------- /Extensions/Template/Expressions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClickteamLLC/windows-edif/HEAD/Extensions/Template/Expressions.cpp -------------------------------------------------------------------------------- /Extensions/Template/Ext.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClickteamLLC/windows-edif/HEAD/Extensions/Template/Ext.def -------------------------------------------------------------------------------- /Extensions/Template/Ext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClickteamLLC/windows-edif/HEAD/Extensions/Template/Ext.json -------------------------------------------------------------------------------- /Extensions/Template/Ext.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClickteamLLC/windows-edif/HEAD/Extensions/Template/Ext.rc -------------------------------------------------------------------------------- /Extensions/Template/Extension.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClickteamLLC/windows-edif/HEAD/Extensions/Template/Extension.cpp -------------------------------------------------------------------------------- /Extensions/Template/Extension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClickteamLLC/windows-edif/HEAD/Extensions/Template/Extension.h -------------------------------------------------------------------------------- /Extensions/Template/General.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClickteamLLC/windows-edif/HEAD/Extensions/Template/General.cpp -------------------------------------------------------------------------------- /Extensions/Template/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClickteamLLC/windows-edif/HEAD/Extensions/Template/Icon.png -------------------------------------------------------------------------------- /Extensions/Template/Runtime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClickteamLLC/windows-edif/HEAD/Extensions/Template/Runtime.cpp -------------------------------------------------------------------------------- /Extensions/Template/Template.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClickteamLLC/windows-edif/HEAD/Extensions/Template/Template.sln -------------------------------------------------------------------------------- /Extensions/Template/Template.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClickteamLLC/windows-edif/HEAD/Extensions/Template/Template.vcproj -------------------------------------------------------------------------------- /Extensions/Template/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClickteamLLC/windows-edif/HEAD/Extensions/Template/resource.h -------------------------------------------------------------------------------- /Inc/BlitMac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClickteamLLC/windows-edif/HEAD/Inc/BlitMac.h -------------------------------------------------------------------------------- /Inc/CFCMacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClickteamLLC/windows-edif/HEAD/Inc/CFCMacro.h -------------------------------------------------------------------------------- /Inc/Ccx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClickteamLLC/windows-edif/HEAD/Inc/Ccx.h -------------------------------------------------------------------------------- /Inc/Ccxhdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClickteamLLC/windows-edif/HEAD/Inc/Ccxhdr.h -------------------------------------------------------------------------------- /Inc/CfcError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClickteamLLC/windows-edif/HEAD/Inc/CfcError.h -------------------------------------------------------------------------------- /Inc/CfcFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClickteamLLC/windows-edif/HEAD/Inc/CfcFile.h -------------------------------------------------------------------------------- /Inc/Cncf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClickteamLLC/windows-edif/HEAD/Inc/Cncf.h -------------------------------------------------------------------------------- /Inc/Cncy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClickteamLLC/windows-edif/HEAD/Inc/Cncy.h -------------------------------------------------------------------------------- /Inc/Cnpdll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClickteamLLC/windows-edif/HEAD/Inc/Cnpdll.h -------------------------------------------------------------------------------- /Inc/D3dSurfInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClickteamLLC/windows-edif/HEAD/Inc/D3dSurfInfo.h -------------------------------------------------------------------------------- /Inc/EVTCCX.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClickteamLLC/windows-edif/HEAD/Inc/EVTCCX.H -------------------------------------------------------------------------------- /Inc/Edif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClickteamLLC/windows-edif/HEAD/Inc/Edif.h -------------------------------------------------------------------------------- /Inc/Fill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClickteamLLC/windows-edif/HEAD/Inc/Fill.h -------------------------------------------------------------------------------- /Inc/FilterMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClickteamLLC/windows-edif/HEAD/Inc/FilterMgr.h -------------------------------------------------------------------------------- /Inc/GlobalPCH.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Inc/ImageFlt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClickteamLLC/windows-edif/HEAD/Inc/ImageFlt.h -------------------------------------------------------------------------------- /Inc/ImgFlt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClickteamLLC/windows-edif/HEAD/Inc/ImgFlt.h -------------------------------------------------------------------------------- /Inc/ImgFltDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClickteamLLC/windows-edif/HEAD/Inc/ImgFltDefs.h -------------------------------------------------------------------------------- /Inc/Mvt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClickteamLLC/windows-edif/HEAD/Inc/Mvt.h -------------------------------------------------------------------------------- /Inc/ObjectSelection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClickteamLLC/windows-edif/HEAD/Inc/ObjectSelection.h -------------------------------------------------------------------------------- /Inc/PTYPE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClickteamLLC/windows-edif/HEAD/Inc/PTYPE.H -------------------------------------------------------------------------------- /Inc/Palet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClickteamLLC/windows-edif/HEAD/Inc/Palet.h -------------------------------------------------------------------------------- /Inc/PaletCpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClickteamLLC/windows-edif/HEAD/Inc/PaletCpp.h -------------------------------------------------------------------------------- /Inc/Patch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClickteamLLC/windows-edif/HEAD/Inc/Patch.h -------------------------------------------------------------------------------- /Inc/PictEdDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClickteamLLC/windows-edif/HEAD/Inc/PictEdDefs.h -------------------------------------------------------------------------------- /Inc/Props.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClickteamLLC/windows-edif/HEAD/Inc/Props.h -------------------------------------------------------------------------------- /Inc/SndDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClickteamLLC/windows-edif/HEAD/Inc/SndDefs.h -------------------------------------------------------------------------------- /Inc/SoundConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClickteamLLC/windows-edif/HEAD/Inc/SoundConverter.h -------------------------------------------------------------------------------- /Inc/SoundError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClickteamLLC/windows-edif/HEAD/Inc/SoundError.h -------------------------------------------------------------------------------- /Inc/SoundFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClickteamLLC/windows-edif/HEAD/Inc/SoundFilter.h -------------------------------------------------------------------------------- /Inc/SoundFilterMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClickteamLLC/windows-edif/HEAD/Inc/SoundFilterMgr.h -------------------------------------------------------------------------------- /Inc/StdDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClickteamLLC/windows-edif/HEAD/Inc/StdDefs.h -------------------------------------------------------------------------------- /Inc/Surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClickteamLLC/windows-edif/HEAD/Inc/Surface.h -------------------------------------------------------------------------------- /Inc/SurfaceDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClickteamLLC/windows-edif/HEAD/Inc/SurfaceDefs.h -------------------------------------------------------------------------------- /Inc/TigsExt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClickteamLLC/windows-edif/HEAD/Inc/TigsExt.hpp -------------------------------------------------------------------------------- /Inc/WinMacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClickteamLLC/windows-edif/HEAD/Inc/WinMacro.h -------------------------------------------------------------------------------- /Inc/cncr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClickteamLLC/windows-edif/HEAD/Inc/cncr.h -------------------------------------------------------------------------------- /Inc/colors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClickteamLLC/windows-edif/HEAD/Inc/colors.h -------------------------------------------------------------------------------- /Inc/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClickteamLLC/windows-edif/HEAD/Inc/json.h -------------------------------------------------------------------------------- /Lib/Edif.Edittime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClickteamLLC/windows-edif/HEAD/Lib/Edif.Edittime.cpp -------------------------------------------------------------------------------- /Lib/Edif.General.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClickteamLLC/windows-edif/HEAD/Lib/Edif.General.cpp -------------------------------------------------------------------------------- /Lib/Edif.Runtime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClickteamLLC/windows-edif/HEAD/Lib/Edif.Runtime.cpp -------------------------------------------------------------------------------- /Lib/Edif.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClickteamLLC/windows-edif/HEAD/Lib/Edif.cpp -------------------------------------------------------------------------------- /Lib/ObjectSelection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClickteamLLC/windows-edif/HEAD/Lib/ObjectSelection.cpp -------------------------------------------------------------------------------- /Lib/json.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClickteamLLC/windows-edif/HEAD/Lib/json.c -------------------------------------------------------------------------------- /Lib/mmfs2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClickteamLLC/windows-edif/HEAD/Lib/mmfs2.lib -------------------------------------------------------------------------------- /Lib/mmfs2hwa.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClickteamLLC/windows-edif/HEAD/Lib/mmfs2hwa.lib -------------------------------------------------------------------------------- /Lib/mmfs2u.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClickteamLLC/windows-edif/HEAD/Lib/mmfs2u.lib -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClickteamLLC/windows-edif/HEAD/README --------------------------------------------------------------------------------