├── .gitignore ├── AsyncSocket.cpp ├── AsyncSocket.h ├── ChangeLog.txt ├── CommentPrinter.cpp ├── CommentPrinter.h ├── CommentWindow.cpp ├── CommentWindow.h ├── Direct2DRenderer.cpp ├── Direct2DRenderer.h ├── Exports.def ├── JKIDNameTable.h ├── NetworkServiceIDTable.h ├── NicoJK.cpp ├── NicoJK.h ├── NicoJK.ini ├── NicoJK.rc ├── NicoJK.sln ├── NicoJK.vcxproj ├── NicoJK.vcxproj.filters ├── NicoJK.vcxproj.user ├── OsdCompositor.cpp ├── OsdCompositor.h ├── Readme.txt ├── TVTestPlugin.h ├── TextFileReader.cpp ├── TextFileReader.h ├── Util.cpp ├── Util.h ├── jkch.sh.txt ├── resource.h ├── stdafx.cpp └── stdafx.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutice/NicoJK/HEAD/.gitignore -------------------------------------------------------------------------------- /AsyncSocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutice/NicoJK/HEAD/AsyncSocket.cpp -------------------------------------------------------------------------------- /AsyncSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutice/NicoJK/HEAD/AsyncSocket.h -------------------------------------------------------------------------------- /ChangeLog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutice/NicoJK/HEAD/ChangeLog.txt -------------------------------------------------------------------------------- /CommentPrinter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutice/NicoJK/HEAD/CommentPrinter.cpp -------------------------------------------------------------------------------- /CommentPrinter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutice/NicoJK/HEAD/CommentPrinter.h -------------------------------------------------------------------------------- /CommentWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutice/NicoJK/HEAD/CommentWindow.cpp -------------------------------------------------------------------------------- /CommentWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutice/NicoJK/HEAD/CommentWindow.h -------------------------------------------------------------------------------- /Direct2DRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutice/NicoJK/HEAD/Direct2DRenderer.cpp -------------------------------------------------------------------------------- /Direct2DRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutice/NicoJK/HEAD/Direct2DRenderer.h -------------------------------------------------------------------------------- /Exports.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutice/NicoJK/HEAD/Exports.def -------------------------------------------------------------------------------- /JKIDNameTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutice/NicoJK/HEAD/JKIDNameTable.h -------------------------------------------------------------------------------- /NetworkServiceIDTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutice/NicoJK/HEAD/NetworkServiceIDTable.h -------------------------------------------------------------------------------- /NicoJK.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutice/NicoJK/HEAD/NicoJK.cpp -------------------------------------------------------------------------------- /NicoJK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutice/NicoJK/HEAD/NicoJK.h -------------------------------------------------------------------------------- /NicoJK.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutice/NicoJK/HEAD/NicoJK.ini -------------------------------------------------------------------------------- /NicoJK.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutice/NicoJK/HEAD/NicoJK.rc -------------------------------------------------------------------------------- /NicoJK.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutice/NicoJK/HEAD/NicoJK.sln -------------------------------------------------------------------------------- /NicoJK.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutice/NicoJK/HEAD/NicoJK.vcxproj -------------------------------------------------------------------------------- /NicoJK.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutice/NicoJK/HEAD/NicoJK.vcxproj.filters -------------------------------------------------------------------------------- /NicoJK.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutice/NicoJK/HEAD/NicoJK.vcxproj.user -------------------------------------------------------------------------------- /OsdCompositor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutice/NicoJK/HEAD/OsdCompositor.cpp -------------------------------------------------------------------------------- /OsdCompositor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutice/NicoJK/HEAD/OsdCompositor.h -------------------------------------------------------------------------------- /Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutice/NicoJK/HEAD/Readme.txt -------------------------------------------------------------------------------- /TVTestPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutice/NicoJK/HEAD/TVTestPlugin.h -------------------------------------------------------------------------------- /TextFileReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutice/NicoJK/HEAD/TextFileReader.cpp -------------------------------------------------------------------------------- /TextFileReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutice/NicoJK/HEAD/TextFileReader.h -------------------------------------------------------------------------------- /Util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutice/NicoJK/HEAD/Util.cpp -------------------------------------------------------------------------------- /Util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutice/NicoJK/HEAD/Util.h -------------------------------------------------------------------------------- /jkch.sh.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutice/NicoJK/HEAD/jkch.sh.txt -------------------------------------------------------------------------------- /resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutice/NicoJK/HEAD/resource.h -------------------------------------------------------------------------------- /stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutice/NicoJK/HEAD/stdafx.cpp -------------------------------------------------------------------------------- /stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutice/NicoJK/HEAD/stdafx.h --------------------------------------------------------------------------------