├── .gitignore ├── ChiitransLite.sln ├── ChiitransLite ├── App.config ├── ChiitransLite.csproj ├── ChiitransLite.exe.config ├── IHF.dll ├── IHF_DLL.dll ├── IHF_compat.dll ├── ITH_Engine.dll ├── ITH_TLS.dll ├── LICENSE ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── data │ ├── Conjugations.txt │ ├── JMdict.xml.url │ ├── Jmnedict.xml.url │ └── names.txt ├── ithwrapper.dll ├── ithwrapper_compat.dll ├── ohayo.ico ├── src │ ├── Program.cs │ ├── forms │ │ ├── AboutForm.Designer.cs │ │ ├── AboutForm.cs │ │ ├── AboutForm.resx │ │ ├── AtlasNotFoundForm.Designer.cs │ │ ├── AtlasNotFoundForm.cs │ │ ├── AtlasNotFoundForm.resx │ │ ├── BackgroundForm.Designer.cs │ │ ├── BackgroundForm.cs │ │ ├── BackgroundForm.resx │ │ ├── ClipboardMonitor.Designer.cs │ │ ├── ClipboardMonitor.cs │ │ ├── ContextLogForm.Designer.cs │ │ ├── ContextLogForm.cs │ │ ├── ContextLogForm.resx │ │ ├── ExtraTranslatorsForm.Designer.cs │ │ ├── ExtraTranslatorsForm.cs │ │ ├── ExtraTranslatorsForm.resx │ │ ├── FormUtil.cs │ │ ├── HintForm.Designer.cs │ │ ├── HintForm.cs │ │ ├── HintForm.resx │ │ ├── MainForm.Designer.cs │ │ ├── MainForm.cs │ │ ├── MainForm.resx │ │ ├── NamesForm.Designer.cs │ │ ├── NamesForm.cs │ │ ├── NamesForm.resx │ │ ├── NonJapaneseLocaleForm.Designer.cs │ │ ├── NonJapaneseLocaleForm.cs │ │ ├── NonJapaneseLocaleForm.resx │ │ ├── OptionsForm.Designer.cs │ │ ├── OptionsForm.cs │ │ ├── OptionsForm.resx │ │ ├── POFilesForm.Designer.cs │ │ ├── POFilesForm.cs │ │ ├── POFilesForm.resx │ │ ├── TranslationForm.Designer.cs │ │ ├── TranslationForm.cs │ │ ├── TranslationForm.resx │ │ ├── UpgradeIEForm.Designer.cs │ │ ├── UpgradeIEForm.cs │ │ ├── UpgradeIEForm.resx │ │ ├── UserHookForm.Designer.cs │ │ ├── UserHookForm.cs │ │ ├── UserHookForm.resx │ │ ├── UserNameForm.Designer.cs │ │ ├── UserNameForm.cs │ │ └── UserNameForm.resx │ ├── misc │ │ ├── BrowserInterop.cs │ │ ├── HiraganaConvertor.cs │ │ ├── HiraganaConvertorCyrillic.cs │ │ ├── IDictionaryExt.cs │ │ ├── Logger.cs │ │ ├── MyException.cs │ │ ├── NonJapaneseLocaleWatDo.cs │ │ ├── TextUtils.cs │ │ ├── Utils.cs │ │ ├── WebBrowserExt.cs │ │ ├── Winapi.cs │ │ └── WithInitialization.cs │ ├── ohayo_small.ico │ ├── settings │ │ ├── NameDictLoading.cs │ │ ├── OkuriganaType.cs │ │ ├── SessionSettings.cs │ │ ├── Settings.cs │ │ └── TranslationDisplay.cs │ ├── texthook │ │ ├── ContextFactory.cs │ │ ├── DefaultContextFactory.cs │ │ ├── HookParam.cs │ │ ├── TextHook.cs │ │ ├── TextHookContext.cs │ │ ├── TextHookInterop.cs │ │ ├── TextHookInteropCompat.cs │ │ ├── UserHook.cs │ │ └── ext │ │ │ ├── MyContext.cs │ │ │ └── MyContextFactory.cs │ └── translation │ │ ├── ReplacementScript.cs │ │ ├── TranslationResult.cs │ │ ├── TranslationService.cs │ │ ├── atlas │ │ ├── Atlas.cs │ │ └── AtlasInterop.cs │ │ ├── edict │ │ ├── DictionaryKey.cs │ │ ├── DictionaryKeyBuilder.cs │ │ ├── DictionarySense.cs │ │ ├── Edict.cs │ │ ├── EdictDictionary.cs │ │ ├── EdictEntry.cs │ │ ├── EdictEntryBuilder.cs │ │ ├── EdictMatch.cs │ │ ├── EdictMatchType.cs │ │ ├── EdictMatchWithType.cs │ │ ├── ParseOptions.cs │ │ ├── RatedEntry.cs │ │ ├── inflect │ │ │ ├── ConjugationsJson.cs │ │ │ ├── ConjugationsVariantJson.cs │ │ │ ├── InflectionState.cs │ │ │ ├── InflectionTrie.cs │ │ │ └── Inflector.cs │ │ └── parseresult │ │ │ ├── ComplexParseResult.cs │ │ │ ├── ParseResult.cs │ │ │ ├── UnparsedParseResult.cs │ │ │ └── WordParseResult.cs │ │ └── po │ │ ├── PoManager.cs │ │ └── PoTranslation.cs ├── tools │ ├── agth │ │ ├── agth.dll │ │ └── agth.exe │ └── le │ │ ├── LECommonLibrary.dll │ │ ├── LEConfig.xml │ │ ├── LEProc.exe │ │ ├── LoaderDll.dll │ │ └── LocaleEmulator.dll ├── vnrcli.dll ├── vnrclixp.dll ├── vnreng.dll ├── vnrengxp.dll └── www │ ├── hint.html │ ├── index.html │ ├── js │ ├── hint.coffee │ ├── hint.js │ ├── host.coffee │ ├── host.js │ ├── index.coffee │ ├── index.js │ ├── jquery-ui.js │ ├── jquery.js │ ├── options.coffee │ ├── options.js │ ├── translation.coffee │ ├── translation.js │ ├── translators.coffee │ ├── translators.js │ └── underscore.js │ ├── options.html │ ├── res │ ├── font │ │ └── fontello.eot │ ├── fontello.css │ ├── hint.css │ ├── hint.less │ ├── hint.min.css │ ├── images │ │ ├── animated-overlay.gif │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ ├── ui-icons_222222_256x240.png │ │ ├── ui-icons_2e83ff_256x240.png │ │ ├── ui-icons_454545_256x240.png │ │ ├── ui-icons_888888_256x240.png │ │ └── ui-icons_cd0a0a_256x240.png │ ├── index.css │ ├── index.less │ ├── index.min.css │ ├── jquery-ui.css │ ├── options.css │ ├── options.less │ ├── options.min.css │ ├── style.css │ ├── style.less │ ├── translation.css │ ├── translation.less │ └── translation.min.css │ ├── themes │ ├── HideFurigana.css │ ├── Neko.css │ ├── PlainText.css │ └── kuroneko.png │ └── translation.html ├── ChiitransLiteTests ├── ChiitransLiteTests.csproj ├── Properties │ └── AssemblyInfo.cs └── UnitTest1.cs ├── LICENSE ├── README.md ├── ithwrapper.sln └── ithwrapper ├── LICENSE ├── dllmain.cpp ├── ith ├── cli │ ├── avl_p.h │ ├── cli.h │ ├── cli.pri │ ├── cli.pro │ ├── cli_p.h │ ├── config.h │ ├── main.cc │ ├── pipe.cc │ └── texthook.cc ├── clixp │ ├── clixp.pri │ └── clixp.pro ├── common │ ├── common.pri │ ├── const.h │ ├── defs.h │ ├── except.h │ ├── growl.h │ ├── memory.h │ ├── string.h │ └── types.h ├── dllconfig.h ├── dllconfig.pri ├── eng │ ├── config.h │ ├── eng.pro │ ├── engine.cc │ ├── engine.h │ ├── engine_p.cc │ ├── engine_p.h │ ├── main.cc │ ├── util.cc │ └── util.h ├── engxp │ └── engxp.pro ├── ith.pro ├── srv │ ├── config.h │ ├── hookman.cc │ ├── hookman.h │ ├── hookman_p.h │ ├── main.cc │ ├── pipe.cc │ ├── settings.h │ ├── srv.h │ ├── srv.pri │ ├── srv.pro │ ├── srv_p.h │ ├── textthread.cc │ ├── textthread.h │ └── textthread_p.h └── sys │ ├── sys.cc │ ├── sys.h │ ├── sys.pri │ └── sys.pro ├── ithwrapper.cpp ├── ithwrapper.h ├── ithwrapper.vcxproj ├── ithwrapper.vcxproj.filters ├── lib ├── IHF.lib └── ntdll.lib ├── ntdll └── ntdll.h ├── stdafx.cpp ├── stdafx.h ├── sys.cc └── targetver.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/.gitignore -------------------------------------------------------------------------------- /ChiitransLite.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite.sln -------------------------------------------------------------------------------- /ChiitransLite/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/App.config -------------------------------------------------------------------------------- /ChiitransLite/ChiitransLite.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/ChiitransLite.csproj -------------------------------------------------------------------------------- /ChiitransLite/ChiitransLite.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/ChiitransLite.exe.config -------------------------------------------------------------------------------- /ChiitransLite/IHF.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/IHF.dll -------------------------------------------------------------------------------- /ChiitransLite/IHF_DLL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/IHF_DLL.dll -------------------------------------------------------------------------------- /ChiitransLite/IHF_compat.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/IHF_compat.dll -------------------------------------------------------------------------------- /ChiitransLite/ITH_Engine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/ITH_Engine.dll -------------------------------------------------------------------------------- /ChiitransLite/ITH_TLS.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/ITH_TLS.dll -------------------------------------------------------------------------------- /ChiitransLite/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/LICENSE -------------------------------------------------------------------------------- /ChiitransLite/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ChiitransLite/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /ChiitransLite/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/Properties/Resources.resx -------------------------------------------------------------------------------- /ChiitransLite/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /ChiitransLite/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/Properties/Settings.settings -------------------------------------------------------------------------------- /ChiitransLite/data/Conjugations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/data/Conjugations.txt -------------------------------------------------------------------------------- /ChiitransLite/data/JMdict.xml.url: -------------------------------------------------------------------------------- 1 | http://ftp.monash.edu.au/pub/nihongo/JMdict_e.gz -------------------------------------------------------------------------------- /ChiitransLite/data/Jmnedict.xml.url: -------------------------------------------------------------------------------- 1 | http://ftp.monash.edu.au/pub/nihongo/JMnedict.xml.gz -------------------------------------------------------------------------------- /ChiitransLite/data/names.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/data/names.txt -------------------------------------------------------------------------------- /ChiitransLite/ithwrapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/ithwrapper.dll -------------------------------------------------------------------------------- /ChiitransLite/ithwrapper_compat.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/ithwrapper_compat.dll -------------------------------------------------------------------------------- /ChiitransLite/ohayo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/ohayo.ico -------------------------------------------------------------------------------- /ChiitransLite/src/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/Program.cs -------------------------------------------------------------------------------- /ChiitransLite/src/forms/AboutForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/forms/AboutForm.Designer.cs -------------------------------------------------------------------------------- /ChiitransLite/src/forms/AboutForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/forms/AboutForm.cs -------------------------------------------------------------------------------- /ChiitransLite/src/forms/AboutForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/forms/AboutForm.resx -------------------------------------------------------------------------------- /ChiitransLite/src/forms/AtlasNotFoundForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/forms/AtlasNotFoundForm.Designer.cs -------------------------------------------------------------------------------- /ChiitransLite/src/forms/AtlasNotFoundForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/forms/AtlasNotFoundForm.cs -------------------------------------------------------------------------------- /ChiitransLite/src/forms/AtlasNotFoundForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/forms/AtlasNotFoundForm.resx -------------------------------------------------------------------------------- /ChiitransLite/src/forms/BackgroundForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/forms/BackgroundForm.Designer.cs -------------------------------------------------------------------------------- /ChiitransLite/src/forms/BackgroundForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/forms/BackgroundForm.cs -------------------------------------------------------------------------------- /ChiitransLite/src/forms/BackgroundForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/forms/BackgroundForm.resx -------------------------------------------------------------------------------- /ChiitransLite/src/forms/ClipboardMonitor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/forms/ClipboardMonitor.Designer.cs -------------------------------------------------------------------------------- /ChiitransLite/src/forms/ClipboardMonitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/forms/ClipboardMonitor.cs -------------------------------------------------------------------------------- /ChiitransLite/src/forms/ContextLogForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/forms/ContextLogForm.Designer.cs -------------------------------------------------------------------------------- /ChiitransLite/src/forms/ContextLogForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/forms/ContextLogForm.cs -------------------------------------------------------------------------------- /ChiitransLite/src/forms/ContextLogForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/forms/ContextLogForm.resx -------------------------------------------------------------------------------- /ChiitransLite/src/forms/ExtraTranslatorsForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/forms/ExtraTranslatorsForm.Designer.cs -------------------------------------------------------------------------------- /ChiitransLite/src/forms/ExtraTranslatorsForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/forms/ExtraTranslatorsForm.cs -------------------------------------------------------------------------------- /ChiitransLite/src/forms/ExtraTranslatorsForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/forms/ExtraTranslatorsForm.resx -------------------------------------------------------------------------------- /ChiitransLite/src/forms/FormUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/forms/FormUtil.cs -------------------------------------------------------------------------------- /ChiitransLite/src/forms/HintForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/forms/HintForm.Designer.cs -------------------------------------------------------------------------------- /ChiitransLite/src/forms/HintForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/forms/HintForm.cs -------------------------------------------------------------------------------- /ChiitransLite/src/forms/HintForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/forms/HintForm.resx -------------------------------------------------------------------------------- /ChiitransLite/src/forms/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/forms/MainForm.Designer.cs -------------------------------------------------------------------------------- /ChiitransLite/src/forms/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/forms/MainForm.cs -------------------------------------------------------------------------------- /ChiitransLite/src/forms/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/forms/MainForm.resx -------------------------------------------------------------------------------- /ChiitransLite/src/forms/NamesForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/forms/NamesForm.Designer.cs -------------------------------------------------------------------------------- /ChiitransLite/src/forms/NamesForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/forms/NamesForm.cs -------------------------------------------------------------------------------- /ChiitransLite/src/forms/NamesForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/forms/NamesForm.resx -------------------------------------------------------------------------------- /ChiitransLite/src/forms/NonJapaneseLocaleForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/forms/NonJapaneseLocaleForm.Designer.cs -------------------------------------------------------------------------------- /ChiitransLite/src/forms/NonJapaneseLocaleForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/forms/NonJapaneseLocaleForm.cs -------------------------------------------------------------------------------- /ChiitransLite/src/forms/NonJapaneseLocaleForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/forms/NonJapaneseLocaleForm.resx -------------------------------------------------------------------------------- /ChiitransLite/src/forms/OptionsForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/forms/OptionsForm.Designer.cs -------------------------------------------------------------------------------- /ChiitransLite/src/forms/OptionsForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/forms/OptionsForm.cs -------------------------------------------------------------------------------- /ChiitransLite/src/forms/OptionsForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/forms/OptionsForm.resx -------------------------------------------------------------------------------- /ChiitransLite/src/forms/POFilesForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/forms/POFilesForm.Designer.cs -------------------------------------------------------------------------------- /ChiitransLite/src/forms/POFilesForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/forms/POFilesForm.cs -------------------------------------------------------------------------------- /ChiitransLite/src/forms/POFilesForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/forms/POFilesForm.resx -------------------------------------------------------------------------------- /ChiitransLite/src/forms/TranslationForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/forms/TranslationForm.Designer.cs -------------------------------------------------------------------------------- /ChiitransLite/src/forms/TranslationForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/forms/TranslationForm.cs -------------------------------------------------------------------------------- /ChiitransLite/src/forms/TranslationForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/forms/TranslationForm.resx -------------------------------------------------------------------------------- /ChiitransLite/src/forms/UpgradeIEForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/forms/UpgradeIEForm.Designer.cs -------------------------------------------------------------------------------- /ChiitransLite/src/forms/UpgradeIEForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/forms/UpgradeIEForm.cs -------------------------------------------------------------------------------- /ChiitransLite/src/forms/UpgradeIEForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/forms/UpgradeIEForm.resx -------------------------------------------------------------------------------- /ChiitransLite/src/forms/UserHookForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/forms/UserHookForm.Designer.cs -------------------------------------------------------------------------------- /ChiitransLite/src/forms/UserHookForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/forms/UserHookForm.cs -------------------------------------------------------------------------------- /ChiitransLite/src/forms/UserHookForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/forms/UserHookForm.resx -------------------------------------------------------------------------------- /ChiitransLite/src/forms/UserNameForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/forms/UserNameForm.Designer.cs -------------------------------------------------------------------------------- /ChiitransLite/src/forms/UserNameForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/forms/UserNameForm.cs -------------------------------------------------------------------------------- /ChiitransLite/src/forms/UserNameForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/forms/UserNameForm.resx -------------------------------------------------------------------------------- /ChiitransLite/src/misc/BrowserInterop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/misc/BrowserInterop.cs -------------------------------------------------------------------------------- /ChiitransLite/src/misc/HiraganaConvertor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/misc/HiraganaConvertor.cs -------------------------------------------------------------------------------- /ChiitransLite/src/misc/HiraganaConvertorCyrillic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/misc/HiraganaConvertorCyrillic.cs -------------------------------------------------------------------------------- /ChiitransLite/src/misc/IDictionaryExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/misc/IDictionaryExt.cs -------------------------------------------------------------------------------- /ChiitransLite/src/misc/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/misc/Logger.cs -------------------------------------------------------------------------------- /ChiitransLite/src/misc/MyException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/misc/MyException.cs -------------------------------------------------------------------------------- /ChiitransLite/src/misc/NonJapaneseLocaleWatDo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/misc/NonJapaneseLocaleWatDo.cs -------------------------------------------------------------------------------- /ChiitransLite/src/misc/TextUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/misc/TextUtils.cs -------------------------------------------------------------------------------- /ChiitransLite/src/misc/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/misc/Utils.cs -------------------------------------------------------------------------------- /ChiitransLite/src/misc/WebBrowserExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/misc/WebBrowserExt.cs -------------------------------------------------------------------------------- /ChiitransLite/src/misc/Winapi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/misc/Winapi.cs -------------------------------------------------------------------------------- /ChiitransLite/src/misc/WithInitialization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/misc/WithInitialization.cs -------------------------------------------------------------------------------- /ChiitransLite/src/ohayo_small.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/ohayo_small.ico -------------------------------------------------------------------------------- /ChiitransLite/src/settings/NameDictLoading.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/settings/NameDictLoading.cs -------------------------------------------------------------------------------- /ChiitransLite/src/settings/OkuriganaType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/settings/OkuriganaType.cs -------------------------------------------------------------------------------- /ChiitransLite/src/settings/SessionSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/settings/SessionSettings.cs -------------------------------------------------------------------------------- /ChiitransLite/src/settings/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/settings/Settings.cs -------------------------------------------------------------------------------- /ChiitransLite/src/settings/TranslationDisplay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/settings/TranslationDisplay.cs -------------------------------------------------------------------------------- /ChiitransLite/src/texthook/ContextFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/texthook/ContextFactory.cs -------------------------------------------------------------------------------- /ChiitransLite/src/texthook/DefaultContextFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/texthook/DefaultContextFactory.cs -------------------------------------------------------------------------------- /ChiitransLite/src/texthook/HookParam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/texthook/HookParam.cs -------------------------------------------------------------------------------- /ChiitransLite/src/texthook/TextHook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/texthook/TextHook.cs -------------------------------------------------------------------------------- /ChiitransLite/src/texthook/TextHookContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/texthook/TextHookContext.cs -------------------------------------------------------------------------------- /ChiitransLite/src/texthook/TextHookInterop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/texthook/TextHookInterop.cs -------------------------------------------------------------------------------- /ChiitransLite/src/texthook/TextHookInteropCompat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/texthook/TextHookInteropCompat.cs -------------------------------------------------------------------------------- /ChiitransLite/src/texthook/UserHook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/texthook/UserHook.cs -------------------------------------------------------------------------------- /ChiitransLite/src/texthook/ext/MyContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/texthook/ext/MyContext.cs -------------------------------------------------------------------------------- /ChiitransLite/src/texthook/ext/MyContextFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/texthook/ext/MyContextFactory.cs -------------------------------------------------------------------------------- /ChiitransLite/src/translation/ReplacementScript.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/translation/ReplacementScript.cs -------------------------------------------------------------------------------- /ChiitransLite/src/translation/TranslationResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/translation/TranslationResult.cs -------------------------------------------------------------------------------- /ChiitransLite/src/translation/TranslationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/translation/TranslationService.cs -------------------------------------------------------------------------------- /ChiitransLite/src/translation/atlas/Atlas.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/translation/atlas/Atlas.cs -------------------------------------------------------------------------------- /ChiitransLite/src/translation/atlas/AtlasInterop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/translation/atlas/AtlasInterop.cs -------------------------------------------------------------------------------- /ChiitransLite/src/translation/edict/DictionaryKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/translation/edict/DictionaryKey.cs -------------------------------------------------------------------------------- /ChiitransLite/src/translation/edict/DictionaryKeyBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/translation/edict/DictionaryKeyBuilder.cs -------------------------------------------------------------------------------- /ChiitransLite/src/translation/edict/DictionarySense.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/translation/edict/DictionarySense.cs -------------------------------------------------------------------------------- /ChiitransLite/src/translation/edict/Edict.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/translation/edict/Edict.cs -------------------------------------------------------------------------------- /ChiitransLite/src/translation/edict/EdictDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/translation/edict/EdictDictionary.cs -------------------------------------------------------------------------------- /ChiitransLite/src/translation/edict/EdictEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/translation/edict/EdictEntry.cs -------------------------------------------------------------------------------- /ChiitransLite/src/translation/edict/EdictEntryBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/translation/edict/EdictEntryBuilder.cs -------------------------------------------------------------------------------- /ChiitransLite/src/translation/edict/EdictMatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/translation/edict/EdictMatch.cs -------------------------------------------------------------------------------- /ChiitransLite/src/translation/edict/EdictMatchType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/translation/edict/EdictMatchType.cs -------------------------------------------------------------------------------- /ChiitransLite/src/translation/edict/EdictMatchWithType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/translation/edict/EdictMatchWithType.cs -------------------------------------------------------------------------------- /ChiitransLite/src/translation/edict/ParseOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/translation/edict/ParseOptions.cs -------------------------------------------------------------------------------- /ChiitransLite/src/translation/edict/RatedEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/translation/edict/RatedEntry.cs -------------------------------------------------------------------------------- /ChiitransLite/src/translation/edict/inflect/ConjugationsJson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/translation/edict/inflect/ConjugationsJson.cs -------------------------------------------------------------------------------- /ChiitransLite/src/translation/edict/inflect/ConjugationsVariantJson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/translation/edict/inflect/ConjugationsVariantJson.cs -------------------------------------------------------------------------------- /ChiitransLite/src/translation/edict/inflect/InflectionState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/translation/edict/inflect/InflectionState.cs -------------------------------------------------------------------------------- /ChiitransLite/src/translation/edict/inflect/InflectionTrie.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/translation/edict/inflect/InflectionTrie.cs -------------------------------------------------------------------------------- /ChiitransLite/src/translation/edict/inflect/Inflector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/translation/edict/inflect/Inflector.cs -------------------------------------------------------------------------------- /ChiitransLite/src/translation/edict/parseresult/ComplexParseResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/translation/edict/parseresult/ComplexParseResult.cs -------------------------------------------------------------------------------- /ChiitransLite/src/translation/edict/parseresult/ParseResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/translation/edict/parseresult/ParseResult.cs -------------------------------------------------------------------------------- /ChiitransLite/src/translation/edict/parseresult/UnparsedParseResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/translation/edict/parseresult/UnparsedParseResult.cs -------------------------------------------------------------------------------- /ChiitransLite/src/translation/edict/parseresult/WordParseResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/translation/edict/parseresult/WordParseResult.cs -------------------------------------------------------------------------------- /ChiitransLite/src/translation/po/PoManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/translation/po/PoManager.cs -------------------------------------------------------------------------------- /ChiitransLite/src/translation/po/PoTranslation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/src/translation/po/PoTranslation.cs -------------------------------------------------------------------------------- /ChiitransLite/tools/agth/agth.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/tools/agth/agth.dll -------------------------------------------------------------------------------- /ChiitransLite/tools/agth/agth.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/tools/agth/agth.exe -------------------------------------------------------------------------------- /ChiitransLite/tools/le/LECommonLibrary.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/tools/le/LECommonLibrary.dll -------------------------------------------------------------------------------- /ChiitransLite/tools/le/LEConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/tools/le/LEConfig.xml -------------------------------------------------------------------------------- /ChiitransLite/tools/le/LEProc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/tools/le/LEProc.exe -------------------------------------------------------------------------------- /ChiitransLite/tools/le/LoaderDll.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/tools/le/LoaderDll.dll -------------------------------------------------------------------------------- /ChiitransLite/tools/le/LocaleEmulator.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/tools/le/LocaleEmulator.dll -------------------------------------------------------------------------------- /ChiitransLite/vnrcli.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/vnrcli.dll -------------------------------------------------------------------------------- /ChiitransLite/vnrclixp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/vnrclixp.dll -------------------------------------------------------------------------------- /ChiitransLite/vnreng.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/vnreng.dll -------------------------------------------------------------------------------- /ChiitransLite/vnrengxp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/vnrengxp.dll -------------------------------------------------------------------------------- /ChiitransLite/www/hint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/www/hint.html -------------------------------------------------------------------------------- /ChiitransLite/www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/www/index.html -------------------------------------------------------------------------------- /ChiitransLite/www/js/hint.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/www/js/hint.coffee -------------------------------------------------------------------------------- /ChiitransLite/www/js/hint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/www/js/hint.js -------------------------------------------------------------------------------- /ChiitransLite/www/js/host.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/www/js/host.coffee -------------------------------------------------------------------------------- /ChiitransLite/www/js/host.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/www/js/host.js -------------------------------------------------------------------------------- /ChiitransLite/www/js/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/www/js/index.coffee -------------------------------------------------------------------------------- /ChiitransLite/www/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/www/js/index.js -------------------------------------------------------------------------------- /ChiitransLite/www/js/jquery-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/www/js/jquery-ui.js -------------------------------------------------------------------------------- /ChiitransLite/www/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/www/js/jquery.js -------------------------------------------------------------------------------- /ChiitransLite/www/js/options.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/www/js/options.coffee -------------------------------------------------------------------------------- /ChiitransLite/www/js/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/www/js/options.js -------------------------------------------------------------------------------- /ChiitransLite/www/js/translation.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/www/js/translation.coffee -------------------------------------------------------------------------------- /ChiitransLite/www/js/translation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/www/js/translation.js -------------------------------------------------------------------------------- /ChiitransLite/www/js/translators.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/www/js/translators.coffee -------------------------------------------------------------------------------- /ChiitransLite/www/js/translators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/www/js/translators.js -------------------------------------------------------------------------------- /ChiitransLite/www/js/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/www/js/underscore.js -------------------------------------------------------------------------------- /ChiitransLite/www/options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/www/options.html -------------------------------------------------------------------------------- /ChiitransLite/www/res/font/fontello.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/www/res/font/fontello.eot -------------------------------------------------------------------------------- /ChiitransLite/www/res/fontello.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/www/res/fontello.css -------------------------------------------------------------------------------- /ChiitransLite/www/res/hint.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/www/res/hint.css -------------------------------------------------------------------------------- /ChiitransLite/www/res/hint.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/www/res/hint.less -------------------------------------------------------------------------------- /ChiitransLite/www/res/hint.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/www/res/hint.min.css -------------------------------------------------------------------------------- /ChiitransLite/www/res/images/animated-overlay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/www/res/images/animated-overlay.gif -------------------------------------------------------------------------------- /ChiitransLite/www/res/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/www/res/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /ChiitransLite/www/res/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/www/res/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /ChiitransLite/www/res/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/www/res/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /ChiitransLite/www/res/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/www/res/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /ChiitransLite/www/res/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/www/res/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /ChiitransLite/www/res/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/www/res/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /ChiitransLite/www/res/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/www/res/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /ChiitransLite/www/res/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/www/res/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /ChiitransLite/www/res/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/www/res/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /ChiitransLite/www/res/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/www/res/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /ChiitransLite/www/res/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/www/res/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /ChiitransLite/www/res/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/www/res/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /ChiitransLite/www/res/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/www/res/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /ChiitransLite/www/res/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/www/res/index.css -------------------------------------------------------------------------------- /ChiitransLite/www/res/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/www/res/index.less -------------------------------------------------------------------------------- /ChiitransLite/www/res/index.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/www/res/index.min.css -------------------------------------------------------------------------------- /ChiitransLite/www/res/jquery-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/www/res/jquery-ui.css -------------------------------------------------------------------------------- /ChiitransLite/www/res/options.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/www/res/options.css -------------------------------------------------------------------------------- /ChiitransLite/www/res/options.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/www/res/options.less -------------------------------------------------------------------------------- /ChiitransLite/www/res/options.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/www/res/options.min.css -------------------------------------------------------------------------------- /ChiitransLite/www/res/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/www/res/style.css -------------------------------------------------------------------------------- /ChiitransLite/www/res/style.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/www/res/style.less -------------------------------------------------------------------------------- /ChiitransLite/www/res/translation.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/www/res/translation.css -------------------------------------------------------------------------------- /ChiitransLite/www/res/translation.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/www/res/translation.less -------------------------------------------------------------------------------- /ChiitransLite/www/res/translation.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/www/res/translation.min.css -------------------------------------------------------------------------------- /ChiitransLite/www/themes/HideFurigana.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/www/themes/HideFurigana.css -------------------------------------------------------------------------------- /ChiitransLite/www/themes/Neko.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/www/themes/Neko.css -------------------------------------------------------------------------------- /ChiitransLite/www/themes/PlainText.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/www/themes/PlainText.css -------------------------------------------------------------------------------- /ChiitransLite/www/themes/kuroneko.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/www/themes/kuroneko.png -------------------------------------------------------------------------------- /ChiitransLite/www/translation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLite/www/translation.html -------------------------------------------------------------------------------- /ChiitransLiteTests/ChiitransLiteTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLiteTests/ChiitransLiteTests.csproj -------------------------------------------------------------------------------- /ChiitransLiteTests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLiteTests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ChiitransLiteTests/UnitTest1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ChiitransLiteTests/UnitTest1.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/README.md -------------------------------------------------------------------------------- /ithwrapper.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ithwrapper.sln -------------------------------------------------------------------------------- /ithwrapper/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ithwrapper/LICENSE -------------------------------------------------------------------------------- /ithwrapper/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ithwrapper/dllmain.cpp -------------------------------------------------------------------------------- /ithwrapper/ith/cli/avl_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ithwrapper/ith/cli/avl_p.h -------------------------------------------------------------------------------- /ithwrapper/ith/cli/cli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ithwrapper/ith/cli/cli.h -------------------------------------------------------------------------------- /ithwrapper/ith/cli/cli.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ithwrapper/ith/cli/cli.pri -------------------------------------------------------------------------------- /ithwrapper/ith/cli/cli.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ithwrapper/ith/cli/cli.pro -------------------------------------------------------------------------------- /ithwrapper/ith/cli/cli_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ithwrapper/ith/cli/cli_p.h -------------------------------------------------------------------------------- /ithwrapper/ith/cli/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ithwrapper/ith/cli/config.h -------------------------------------------------------------------------------- /ithwrapper/ith/cli/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ithwrapper/ith/cli/main.cc -------------------------------------------------------------------------------- /ithwrapper/ith/cli/pipe.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ithwrapper/ith/cli/pipe.cc -------------------------------------------------------------------------------- /ithwrapper/ith/cli/texthook.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ithwrapper/ith/cli/texthook.cc -------------------------------------------------------------------------------- /ithwrapper/ith/clixp/clixp.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ithwrapper/ith/clixp/clixp.pri -------------------------------------------------------------------------------- /ithwrapper/ith/clixp/clixp.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ithwrapper/ith/clixp/clixp.pro -------------------------------------------------------------------------------- /ithwrapper/ith/common/common.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ithwrapper/ith/common/common.pri -------------------------------------------------------------------------------- /ithwrapper/ith/common/const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ithwrapper/ith/common/const.h -------------------------------------------------------------------------------- /ithwrapper/ith/common/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ithwrapper/ith/common/defs.h -------------------------------------------------------------------------------- /ithwrapper/ith/common/except.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ithwrapper/ith/common/except.h -------------------------------------------------------------------------------- /ithwrapper/ith/common/growl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ithwrapper/ith/common/growl.h -------------------------------------------------------------------------------- /ithwrapper/ith/common/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ithwrapper/ith/common/memory.h -------------------------------------------------------------------------------- /ithwrapper/ith/common/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ithwrapper/ith/common/string.h -------------------------------------------------------------------------------- /ithwrapper/ith/common/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ithwrapper/ith/common/types.h -------------------------------------------------------------------------------- /ithwrapper/ith/dllconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ithwrapper/ith/dllconfig.h -------------------------------------------------------------------------------- /ithwrapper/ith/dllconfig.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ithwrapper/ith/dllconfig.pri -------------------------------------------------------------------------------- /ithwrapper/ith/eng/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ithwrapper/ith/eng/config.h -------------------------------------------------------------------------------- /ithwrapper/ith/eng/eng.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ithwrapper/ith/eng/eng.pro -------------------------------------------------------------------------------- /ithwrapper/ith/eng/engine.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ithwrapper/ith/eng/engine.cc -------------------------------------------------------------------------------- /ithwrapper/ith/eng/engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ithwrapper/ith/eng/engine.h -------------------------------------------------------------------------------- /ithwrapper/ith/eng/engine_p.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ithwrapper/ith/eng/engine_p.cc -------------------------------------------------------------------------------- /ithwrapper/ith/eng/engine_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ithwrapper/ith/eng/engine_p.h -------------------------------------------------------------------------------- /ithwrapper/ith/eng/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ithwrapper/ith/eng/main.cc -------------------------------------------------------------------------------- /ithwrapper/ith/eng/util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ithwrapper/ith/eng/util.cc -------------------------------------------------------------------------------- /ithwrapper/ith/eng/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ithwrapper/ith/eng/util.h -------------------------------------------------------------------------------- /ithwrapper/ith/engxp/engxp.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ithwrapper/ith/engxp/engxp.pro -------------------------------------------------------------------------------- /ithwrapper/ith/ith.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ithwrapper/ith/ith.pro -------------------------------------------------------------------------------- /ithwrapper/ith/srv/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ithwrapper/ith/srv/config.h -------------------------------------------------------------------------------- /ithwrapper/ith/srv/hookman.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ithwrapper/ith/srv/hookman.cc -------------------------------------------------------------------------------- /ithwrapper/ith/srv/hookman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ithwrapper/ith/srv/hookman.h -------------------------------------------------------------------------------- /ithwrapper/ith/srv/hookman_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ithwrapper/ith/srv/hookman_p.h -------------------------------------------------------------------------------- /ithwrapper/ith/srv/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ithwrapper/ith/srv/main.cc -------------------------------------------------------------------------------- /ithwrapper/ith/srv/pipe.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ithwrapper/ith/srv/pipe.cc -------------------------------------------------------------------------------- /ithwrapper/ith/srv/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ithwrapper/ith/srv/settings.h -------------------------------------------------------------------------------- /ithwrapper/ith/srv/srv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ithwrapper/ith/srv/srv.h -------------------------------------------------------------------------------- /ithwrapper/ith/srv/srv.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ithwrapper/ith/srv/srv.pri -------------------------------------------------------------------------------- /ithwrapper/ith/srv/srv.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ithwrapper/ith/srv/srv.pro -------------------------------------------------------------------------------- /ithwrapper/ith/srv/srv_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ithwrapper/ith/srv/srv_p.h -------------------------------------------------------------------------------- /ithwrapper/ith/srv/textthread.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ithwrapper/ith/srv/textthread.cc -------------------------------------------------------------------------------- /ithwrapper/ith/srv/textthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ithwrapper/ith/srv/textthread.h -------------------------------------------------------------------------------- /ithwrapper/ith/srv/textthread_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ithwrapper/ith/srv/textthread_p.h -------------------------------------------------------------------------------- /ithwrapper/ith/sys/sys.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ithwrapper/ith/sys/sys.cc -------------------------------------------------------------------------------- /ithwrapper/ith/sys/sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ithwrapper/ith/sys/sys.h -------------------------------------------------------------------------------- /ithwrapper/ith/sys/sys.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ithwrapper/ith/sys/sys.pri -------------------------------------------------------------------------------- /ithwrapper/ith/sys/sys.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ithwrapper/ith/sys/sys.pro -------------------------------------------------------------------------------- /ithwrapper/ithwrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ithwrapper/ithwrapper.cpp -------------------------------------------------------------------------------- /ithwrapper/ithwrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ithwrapper/ithwrapper.h -------------------------------------------------------------------------------- /ithwrapper/ithwrapper.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ithwrapper/ithwrapper.vcxproj -------------------------------------------------------------------------------- /ithwrapper/ithwrapper.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ithwrapper/ithwrapper.vcxproj.filters -------------------------------------------------------------------------------- /ithwrapper/lib/IHF.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ithwrapper/lib/IHF.lib -------------------------------------------------------------------------------- /ithwrapper/lib/ntdll.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ithwrapper/lib/ntdll.lib -------------------------------------------------------------------------------- /ithwrapper/ntdll/ntdll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ithwrapper/ntdll/ntdll.h -------------------------------------------------------------------------------- /ithwrapper/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ithwrapper/stdafx.cpp -------------------------------------------------------------------------------- /ithwrapper/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ithwrapper/stdafx.h -------------------------------------------------------------------------------- /ithwrapper/sys.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ithwrapper/sys.cc -------------------------------------------------------------------------------- /ithwrapper/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbft/chiitrans/HEAD/ithwrapper/targetver.h --------------------------------------------------------------------------------