├── .gitattributes ├── .gitignore ├── CK2JPS.sln ├── LICENSE ├── Plugin ├── ButtonAndTooltip.cpp ├── DateFormat.cpp ├── DecorativeLetterDialog.cpp ├── DecorativeLetterEndDialog.cpp ├── DecorativeLetterInheritDialog.cpp ├── FileSave.cpp ├── Font.cpp ├── IME.cpp ├── Input.cpp ├── MainText.cpp ├── MainTextLineBreak.cpp ├── MapAdj.cpp ├── MapAdj2.cpp ├── MapAdj3.cpp ├── MapJustify.cpp ├── NickNameFix.cpp ├── NoDynastyId.cpp ├── Plugin.vcxproj ├── Plugin.vcxproj.filters ├── TextOverflow.cpp ├── Unk3.cpp ├── Unk5.cpp ├── byte_pattern.cpp ├── byte_pattern.h ├── console_history.txt ├── dllmain.cpp ├── issue32.cpp ├── issue33.cpp ├── mapView.cpp ├── moddl.cpp ├── moddl.h ├── packages.config ├── stdinc.h └── version.cpp ├── README.md ├── VC-LTL helper for Visual Studio.props ├── d3d9 ├── d3d9.def ├── d3d9.vcxproj ├── d3d9.vcxproj.filters ├── dllmain.cpp ├── filedl.cpp ├── filedl.h └── mapView.cpp ├── include ├── injector │ ├── assembly.hpp │ ├── calling.hpp │ ├── gvm │ │ ├── gvm.hpp │ │ └── translator.hpp │ ├── hooking.hpp │ ├── injector.hpp │ └── utility.hpp └── utf8cpp │ ├── eu4utf8.h │ ├── eu4utf8 │ ├── checked.h │ ├── core.h │ └── unchecked.h │ ├── utf8.h │ └── utf8 │ ├── checked.h │ ├── core.h │ └── unchecked.h └── other ├── autoupdate.bat ├── autoupdate_test.bat ├── curl.exe └── plugin.ini /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matanki-saito/CK2dll/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matanki-saito/CK2dll/HEAD/.gitignore -------------------------------------------------------------------------------- /CK2JPS.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matanki-saito/CK2dll/HEAD/CK2JPS.sln -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matanki-saito/CK2dll/HEAD/LICENSE -------------------------------------------------------------------------------- /Plugin/ButtonAndTooltip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matanki-saito/CK2dll/HEAD/Plugin/ButtonAndTooltip.cpp -------------------------------------------------------------------------------- /Plugin/DateFormat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matanki-saito/CK2dll/HEAD/Plugin/DateFormat.cpp -------------------------------------------------------------------------------- /Plugin/DecorativeLetterDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matanki-saito/CK2dll/HEAD/Plugin/DecorativeLetterDialog.cpp -------------------------------------------------------------------------------- /Plugin/DecorativeLetterEndDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matanki-saito/CK2dll/HEAD/Plugin/DecorativeLetterEndDialog.cpp -------------------------------------------------------------------------------- /Plugin/DecorativeLetterInheritDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matanki-saito/CK2dll/HEAD/Plugin/DecorativeLetterInheritDialog.cpp -------------------------------------------------------------------------------- /Plugin/FileSave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matanki-saito/CK2dll/HEAD/Plugin/FileSave.cpp -------------------------------------------------------------------------------- /Plugin/Font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matanki-saito/CK2dll/HEAD/Plugin/Font.cpp -------------------------------------------------------------------------------- /Plugin/IME.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matanki-saito/CK2dll/HEAD/Plugin/IME.cpp -------------------------------------------------------------------------------- /Plugin/Input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matanki-saito/CK2dll/HEAD/Plugin/Input.cpp -------------------------------------------------------------------------------- /Plugin/MainText.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matanki-saito/CK2dll/HEAD/Plugin/MainText.cpp -------------------------------------------------------------------------------- /Plugin/MainTextLineBreak.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matanki-saito/CK2dll/HEAD/Plugin/MainTextLineBreak.cpp -------------------------------------------------------------------------------- /Plugin/MapAdj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matanki-saito/CK2dll/HEAD/Plugin/MapAdj.cpp -------------------------------------------------------------------------------- /Plugin/MapAdj2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matanki-saito/CK2dll/HEAD/Plugin/MapAdj2.cpp -------------------------------------------------------------------------------- /Plugin/MapAdj3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matanki-saito/CK2dll/HEAD/Plugin/MapAdj3.cpp -------------------------------------------------------------------------------- /Plugin/MapJustify.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matanki-saito/CK2dll/HEAD/Plugin/MapJustify.cpp -------------------------------------------------------------------------------- /Plugin/NickNameFix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matanki-saito/CK2dll/HEAD/Plugin/NickNameFix.cpp -------------------------------------------------------------------------------- /Plugin/NoDynastyId.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matanki-saito/CK2dll/HEAD/Plugin/NoDynastyId.cpp -------------------------------------------------------------------------------- /Plugin/Plugin.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matanki-saito/CK2dll/HEAD/Plugin/Plugin.vcxproj -------------------------------------------------------------------------------- /Plugin/Plugin.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matanki-saito/CK2dll/HEAD/Plugin/Plugin.vcxproj.filters -------------------------------------------------------------------------------- /Plugin/TextOverflow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matanki-saito/CK2dll/HEAD/Plugin/TextOverflow.cpp -------------------------------------------------------------------------------- /Plugin/Unk3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matanki-saito/CK2dll/HEAD/Plugin/Unk3.cpp -------------------------------------------------------------------------------- /Plugin/Unk5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matanki-saito/CK2dll/HEAD/Plugin/Unk5.cpp -------------------------------------------------------------------------------- /Plugin/byte_pattern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matanki-saito/CK2dll/HEAD/Plugin/byte_pattern.cpp -------------------------------------------------------------------------------- /Plugin/byte_pattern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matanki-saito/CK2dll/HEAD/Plugin/byte_pattern.h -------------------------------------------------------------------------------- /Plugin/console_history.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matanki-saito/CK2dll/HEAD/Plugin/console_history.txt -------------------------------------------------------------------------------- /Plugin/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matanki-saito/CK2dll/HEAD/Plugin/dllmain.cpp -------------------------------------------------------------------------------- /Plugin/issue32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matanki-saito/CK2dll/HEAD/Plugin/issue32.cpp -------------------------------------------------------------------------------- /Plugin/issue33.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matanki-saito/CK2dll/HEAD/Plugin/issue33.cpp -------------------------------------------------------------------------------- /Plugin/mapView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matanki-saito/CK2dll/HEAD/Plugin/mapView.cpp -------------------------------------------------------------------------------- /Plugin/moddl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matanki-saito/CK2dll/HEAD/Plugin/moddl.cpp -------------------------------------------------------------------------------- /Plugin/moddl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matanki-saito/CK2dll/HEAD/Plugin/moddl.h -------------------------------------------------------------------------------- /Plugin/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matanki-saito/CK2dll/HEAD/Plugin/packages.config -------------------------------------------------------------------------------- /Plugin/stdinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matanki-saito/CK2dll/HEAD/Plugin/stdinc.h -------------------------------------------------------------------------------- /Plugin/version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matanki-saito/CK2dll/HEAD/Plugin/version.cpp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matanki-saito/CK2dll/HEAD/README.md -------------------------------------------------------------------------------- /VC-LTL helper for Visual Studio.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matanki-saito/CK2dll/HEAD/VC-LTL helper for Visual Studio.props -------------------------------------------------------------------------------- /d3d9/d3d9.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matanki-saito/CK2dll/HEAD/d3d9/d3d9.def -------------------------------------------------------------------------------- /d3d9/d3d9.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matanki-saito/CK2dll/HEAD/d3d9/d3d9.vcxproj -------------------------------------------------------------------------------- /d3d9/d3d9.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matanki-saito/CK2dll/HEAD/d3d9/d3d9.vcxproj.filters -------------------------------------------------------------------------------- /d3d9/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matanki-saito/CK2dll/HEAD/d3d9/dllmain.cpp -------------------------------------------------------------------------------- /d3d9/filedl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matanki-saito/CK2dll/HEAD/d3d9/filedl.cpp -------------------------------------------------------------------------------- /d3d9/filedl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matanki-saito/CK2dll/HEAD/d3d9/filedl.h -------------------------------------------------------------------------------- /d3d9/mapView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matanki-saito/CK2dll/HEAD/d3d9/mapView.cpp -------------------------------------------------------------------------------- /include/injector/assembly.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matanki-saito/CK2dll/HEAD/include/injector/assembly.hpp -------------------------------------------------------------------------------- /include/injector/calling.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matanki-saito/CK2dll/HEAD/include/injector/calling.hpp -------------------------------------------------------------------------------- /include/injector/gvm/gvm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matanki-saito/CK2dll/HEAD/include/injector/gvm/gvm.hpp -------------------------------------------------------------------------------- /include/injector/gvm/translator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matanki-saito/CK2dll/HEAD/include/injector/gvm/translator.hpp -------------------------------------------------------------------------------- /include/injector/hooking.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matanki-saito/CK2dll/HEAD/include/injector/hooking.hpp -------------------------------------------------------------------------------- /include/injector/injector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matanki-saito/CK2dll/HEAD/include/injector/injector.hpp -------------------------------------------------------------------------------- /include/injector/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matanki-saito/CK2dll/HEAD/include/injector/utility.hpp -------------------------------------------------------------------------------- /include/utf8cpp/eu4utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matanki-saito/CK2dll/HEAD/include/utf8cpp/eu4utf8.h -------------------------------------------------------------------------------- /include/utf8cpp/eu4utf8/checked.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matanki-saito/CK2dll/HEAD/include/utf8cpp/eu4utf8/checked.h -------------------------------------------------------------------------------- /include/utf8cpp/eu4utf8/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matanki-saito/CK2dll/HEAD/include/utf8cpp/eu4utf8/core.h -------------------------------------------------------------------------------- /include/utf8cpp/eu4utf8/unchecked.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matanki-saito/CK2dll/HEAD/include/utf8cpp/eu4utf8/unchecked.h -------------------------------------------------------------------------------- /include/utf8cpp/utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matanki-saito/CK2dll/HEAD/include/utf8cpp/utf8.h -------------------------------------------------------------------------------- /include/utf8cpp/utf8/checked.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matanki-saito/CK2dll/HEAD/include/utf8cpp/utf8/checked.h -------------------------------------------------------------------------------- /include/utf8cpp/utf8/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matanki-saito/CK2dll/HEAD/include/utf8cpp/utf8/core.h -------------------------------------------------------------------------------- /include/utf8cpp/utf8/unchecked.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matanki-saito/CK2dll/HEAD/include/utf8cpp/utf8/unchecked.h -------------------------------------------------------------------------------- /other/autoupdate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matanki-saito/CK2dll/HEAD/other/autoupdate.bat -------------------------------------------------------------------------------- /other/autoupdate_test.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matanki-saito/CK2dll/HEAD/other/autoupdate_test.bat -------------------------------------------------------------------------------- /other/curl.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matanki-saito/CK2dll/HEAD/other/curl.exe -------------------------------------------------------------------------------- /other/plugin.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matanki-saito/CK2dll/HEAD/other/plugin.ini --------------------------------------------------------------------------------