├── .gitignore ├── CCAMS.cpp ├── CCAMS.h ├── CCAMS.rc ├── CCAMS.vcxproj ├── CCAMS.vcxproj.filters ├── CCAMS └── ver.txt ├── CCMAS.sln ├── ESPlugin.cpp ├── ESPlugin.h ├── Helpers.cpp ├── Helpers.h ├── LICENSE ├── README.md ├── config.txt ├── config2.txt ├── generate_version_files.py ├── lib ├── EuroScopePlugIn.h ├── EuroScopePlugInDll.lib └── include │ └── EuroScopePlugIn.h ├── resource.h ├── stdafx.cpp ├── stdafx.h ├── targetver.h ├── vcpkg.json ├── version.h ├── version.txt ├── version_latest.json └── version_minimum.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kusterjs/CCAMS/HEAD/.gitignore -------------------------------------------------------------------------------- /CCAMS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kusterjs/CCAMS/HEAD/CCAMS.cpp -------------------------------------------------------------------------------- /CCAMS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kusterjs/CCAMS/HEAD/CCAMS.h -------------------------------------------------------------------------------- /CCAMS.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kusterjs/CCAMS/HEAD/CCAMS.rc -------------------------------------------------------------------------------- /CCAMS.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kusterjs/CCAMS/HEAD/CCAMS.vcxproj -------------------------------------------------------------------------------- /CCAMS.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kusterjs/CCAMS/HEAD/CCAMS.vcxproj.filters -------------------------------------------------------------------------------- /CCAMS/ver.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kusterjs/CCAMS/HEAD/CCAMS/ver.txt -------------------------------------------------------------------------------- /CCMAS.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kusterjs/CCAMS/HEAD/CCMAS.sln -------------------------------------------------------------------------------- /ESPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kusterjs/CCAMS/HEAD/ESPlugin.cpp -------------------------------------------------------------------------------- /ESPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kusterjs/CCAMS/HEAD/ESPlugin.h -------------------------------------------------------------------------------- /Helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kusterjs/CCAMS/HEAD/Helpers.cpp -------------------------------------------------------------------------------- /Helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kusterjs/CCAMS/HEAD/Helpers.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kusterjs/CCAMS/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kusterjs/CCAMS/HEAD/README.md -------------------------------------------------------------------------------- /config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kusterjs/CCAMS/HEAD/config.txt -------------------------------------------------------------------------------- /config2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kusterjs/CCAMS/HEAD/config2.txt -------------------------------------------------------------------------------- /generate_version_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kusterjs/CCAMS/HEAD/generate_version_files.py -------------------------------------------------------------------------------- /lib/EuroScopePlugIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kusterjs/CCAMS/HEAD/lib/EuroScopePlugIn.h -------------------------------------------------------------------------------- /lib/EuroScopePlugInDll.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kusterjs/CCAMS/HEAD/lib/EuroScopePlugInDll.lib -------------------------------------------------------------------------------- /lib/include/EuroScopePlugIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kusterjs/CCAMS/HEAD/lib/include/EuroScopePlugIn.h -------------------------------------------------------------------------------- /resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kusterjs/CCAMS/HEAD/resource.h -------------------------------------------------------------------------------- /stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kusterjs/CCAMS/HEAD/stdafx.cpp -------------------------------------------------------------------------------- /stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kusterjs/CCAMS/HEAD/stdafx.h -------------------------------------------------------------------------------- /targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kusterjs/CCAMS/HEAD/targetver.h -------------------------------------------------------------------------------- /vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kusterjs/CCAMS/HEAD/vcpkg.json -------------------------------------------------------------------------------- /version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kusterjs/CCAMS/HEAD/version.h -------------------------------------------------------------------------------- /version.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kusterjs/CCAMS/HEAD/version.txt -------------------------------------------------------------------------------- /version_latest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kusterjs/CCAMS/HEAD/version_latest.json -------------------------------------------------------------------------------- /version_minimum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kusterjs/CCAMS/HEAD/version_minimum.json --------------------------------------------------------------------------------