├── DataSource-1.1.2528 ├── BPMFMappings │ └── README.txt ├── SinicaCorpus │ └── README.txt └── YahooSearchTerms │ └── README.txt ├── LICENSE.txt ├── README.txt └── YahooKeyKey-Source-1.1.2528 ├── .gitignore ├── ACKNOWLEDGEMENTS ├── COPYING ├── DataTables ├── bopomofo-correction.cin ├── bopomofo-list.txt ├── bpmf-ext.cin ├── bpmf-punctuations.cin ├── bpmf-to-pinyin-normalized.txt ├── bpmf-to-pinyin-raw.txt ├── bpmf-to-pinyin-toneless-normalized.txt ├── bpmf-to-pinyin-toneless.txt ├── bpmf-to-pinyin.txt ├── bpmf.cin ├── cj-ext.cin ├── cj-punctuations-halfwidth.cin ├── cj-punctuations-mixedwidth.cin ├── ehq-symbols.cin └── simplex-ext.cin ├── Distributions └── Takao │ ├── CookedDatabase │ └── .gitignore │ ├── DataSource │ ├── .gitignore │ ├── Addendum │ │ ├── FrequentPhrases.txt │ │ ├── FriendPhrases-20080526.txt │ │ ├── FriendPhrases.txt │ │ ├── Keke-Addendum.txt │ │ ├── Yahoo.txt │ │ ├── Z-3Kingdom.txt │ │ ├── Z-ACG.txt │ │ ├── Z-Art.txt │ │ ├── Z-Classics.txt │ │ ├── Z-Food.txt │ │ ├── Z-History.txt │ │ ├── Z-IT.txt │ │ ├── Z-Japan.txt │ │ ├── Z-Media.txt │ │ ├── Z-Place.txt │ │ ├── Z-Politics.txt │ │ ├── Z-Religion.txt │ │ └── ZonblePhrases.txt │ └── Overrides │ │ ├── Emoticons.txt │ │ ├── Keke-AddBigram.txt │ │ ├── Keke-AddBpmf.txt │ │ ├── Keke-AddPinyin.txt │ │ ├── Keke-Removals.txt │ │ ├── Keke-ZDemoteLowest.txt │ │ ├── Keke-ZPromoteHighest.txt │ │ ├── Keke-ZZEnsureOrder.txt │ │ ├── ProperNameRemovals.txt │ │ ├── Signature.txt │ │ ├── SinicaCorpusOverrides.txt │ │ └── zonble-200903.txt │ ├── DatabaseCooker │ ├── .gitignore │ ├── AssociatedPhraseCooker.rb │ ├── Makefile │ ├── Makefile.SmartMandarin │ ├── Schema.sql │ ├── UpdateKeke.sh │ ├── generate-noise.rb │ └── insert-file-into-db.rb │ ├── Installer-OSX-DB │ ├── KeyKeyDB.pmproj │ ├── Resources │ │ ├── English.lproj │ │ │ └── License.rtf │ │ ├── postflight │ │ ├── preflight │ │ └── zh_TW.lproj │ │ │ └── License.rtf │ └── makedmg.py │ ├── Installer-OSX-ExtraModules │ ├── Artwork │ │ └── YahooDMG.icns │ ├── Modules.pmproj │ ├── Resources │ │ ├── English.lproj │ │ │ ├── License.rtf │ │ │ └── Welcome.rtf │ │ ├── postflight │ │ ├── preflight │ │ └── zh_TW.lproj │ │ │ ├── License.rtf │ │ │ └── Welcome.rtf │ ├── YKAFPhraseConverter.pmproj │ ├── YKAFWordCount.pmproj │ ├── YKReverseLookup.pmproj │ ├── makedmg.py │ └── strings │ │ ├── en.strings │ │ ├── zh_CN.strings │ │ └── zh_TW.strings │ ├── Installer-OSX-Help │ ├── English.lproj │ │ ├── InfoPlist.strings │ │ ├── MainMenu.xib │ │ ├── install.html │ │ └── preference.png │ ├── HelpController.h │ ├── HelpController.m │ ├── Info.plist │ ├── InstallHelp.xcodeproj │ │ ├── TemplateIcon.icns │ │ └── project.pbxproj │ ├── main.m │ ├── zh_CN.lproj │ │ ├── InfoPlist.strings │ │ ├── MainMenu.xib │ │ ├── install.html │ │ └── preference.png │ └── zh_TW.lproj │ │ ├── InfoPlist.strings │ │ ├── MainMenu.xib │ │ ├── install.html │ │ └── preference.png │ ├── Installer-OSX-IMK │ ├── Artwork │ │ ├── DmgBackground-org.jpg │ │ ├── DmgBackground.jpg │ │ ├── PackageInstaller.png │ │ └── YahooDMG.icns │ ├── KeyKey25.pmproj │ ├── Resources │ │ ├── English.lproj │ │ │ └── License.rtf │ │ ├── postflight │ │ ├── preflight │ │ └── zh_TW.lproj │ │ │ └── License.rtf │ ├── makedmg.pl │ ├── openUp.c │ └── strings │ │ ├── en.strings │ │ ├── zh_CN.strings │ │ └── zh_TW.strings │ ├── Installer-OSX-TSM │ ├── Artwork │ │ ├── DmgBackground.jpg │ │ ├── PackageInstaller.png │ │ └── YahooDMG.icns │ ├── KeyKey25.pmproj │ ├── Resources │ │ ├── English.lproj │ │ │ └── License.rtf │ │ ├── postflight │ │ ├── preflight │ │ └── zh_TW.lproj │ │ │ └── License.rtf │ ├── makedmg.pl │ ├── openUp.c │ └── strings │ │ ├── en.strings │ │ ├── zh_CN.strings │ │ └── zh_TW.strings │ ├── Installer-OSX-UI │ ├── English.lproj │ │ └── InfoPlist.strings │ ├── Info.plist │ ├── main.m │ ├── package.icns │ ├── zh_CN.lproj │ │ └── InfoPlist.strings │ └── zh_TW.lproj │ │ └── InfoPlist.strings │ ├── Installer-Windows │ ├── .gitignore │ ├── Bitmaps │ │ ├── New.ico │ │ ├── Up.ico │ │ ├── bannrbmp.bmp │ │ ├── dlgbmp.bmp │ │ ├── exclamic.ico │ │ └── info.ico │ ├── ExtraModules.sed │ ├── ExtraModules.wxs │ ├── Installer-PropertyInstallerWorking.wxs │ ├── Installer.sed │ ├── Installer.wixproj │ ├── Installer.wxs │ ├── Installer64.sed │ ├── Installer64.wixproj │ ├── Installer64.wxs │ ├── InstallerSilentModeDisallowed.wxs │ ├── License.rtf │ ├── SupplementInstaller.sed │ ├── extramod.proj │ ├── makedist.bat │ ├── makeextramod.bat │ ├── makesetup.bat │ ├── makesetup64.bat │ ├── makesupplement.bat │ ├── obfuscate.bat │ ├── runtime │ │ ├── wixca.dll │ │ └── wixui.wixlib │ ├── wixui_zh-cn.wxl │ └── wixui_zh-tw.wxl │ ├── Keyring │ ├── .gitignore │ ├── DevPublicKey.c │ ├── DevUserDBKeyPhrase.c │ ├── DevVendorDBKeyPhrase.c │ ├── ModuleDigestSharedSecret.h │ ├── ModulePublicKey.c │ └── SQLiteCryptoInit.cpp │ ├── OnlineData │ ├── CannedMessages.plist │ └── OneKey.plist │ ├── OnlineDataTemplates │ └── CannedMessages.plist │ ├── PrecompiledTools │ └── .gitignore │ ├── README.markdown │ ├── TrackerMaker │ └── TrackerMaker.h │ ├── TrackerSender │ └── OSX │ │ ├── TrackerSender.h │ │ └── TrackerSender.mm │ ├── VersionInfo │ ├── VersionInfo.plist │ └── VersionInfoDev.plist │ └── makeall-osx.sh ├── ExternalLibraries ├── DotMacKit.framework │ └── README.txt ├── PackageMaker.app │ └── README.txt ├── SQLite.vcproj ├── UnitTest++ │ ├── COPYING │ ├── Makefile │ ├── README │ ├── TestUnitTest++.vsnet2003.vcproj │ ├── TestUnitTest++.vsnet2005.vcproj │ ├── UnitTest++ │ ├── UnitTest++.vsnet2003.sln │ ├── UnitTest++.vsnet2003.vcproj │ ├── UnitTest++.vsnet2005.sln │ ├── UnitTest++.vsnet2005.vcproj │ ├── docs │ │ └── UnitTest++.html │ └── src │ │ ├── AssertException.cpp │ │ ├── AssertException.h │ │ ├── CheckMacros.h │ │ ├── Checks.cpp │ │ ├── Checks.h │ │ ├── Config.h │ │ ├── DeferredTestReporter.cpp │ │ ├── DeferredTestReporter.h │ │ ├── DeferredTestResult.cpp │ │ ├── DeferredTestResult.h │ │ ├── ExecuteTest.h │ │ ├── MemoryOutStream.cpp │ │ ├── MemoryOutStream.h │ │ ├── Posix │ │ ├── SignalTranslator.cpp │ │ ├── SignalTranslator.h │ │ ├── TimeHelpers.cpp │ │ └── TimeHelpers.h │ │ ├── ReportAssert.cpp │ │ ├── ReportAssert.h │ │ ├── Test.cpp │ │ ├── Test.h │ │ ├── TestDetails.cpp │ │ ├── TestDetails.h │ │ ├── TestList.cpp │ │ ├── TestList.h │ │ ├── TestMacros.h │ │ ├── TestReporter.cpp │ │ ├── TestReporter.h │ │ ├── TestReporterStdout.cpp │ │ ├── TestReporterStdout.h │ │ ├── TestResults.cpp │ │ ├── TestResults.h │ │ ├── TestRunner.cpp │ │ ├── TestRunner.h │ │ ├── TestSuite.h │ │ ├── TimeConstraint.cpp │ │ ├── TimeConstraint.h │ │ ├── TimeHelpers.h │ │ ├── UnitTest++.h │ │ ├── Win32 │ │ ├── TimeHelpers.cpp │ │ └── TimeHelpers.h │ │ ├── XmlTestReporter.cpp │ │ ├── XmlTestReporter.h │ │ └── tests │ │ ├── Main.cpp │ │ ├── RecordingReporter.h │ │ ├── TestAssertHandler.cpp │ │ ├── TestCheckMacros.cpp │ │ ├── TestChecks.cpp │ │ ├── TestDeferredTestReporter.cpp │ │ ├── TestMemoryOutStream.cpp │ │ ├── TestTest.cpp │ │ ├── TestTestList.cpp │ │ ├── TestTestMacros.cpp │ │ ├── TestTestResults.cpp │ │ ├── TestTestRunner.cpp │ │ ├── TestTestSuite.cpp │ │ ├── TestTimeConstraint.cpp │ │ ├── TestTimeConstraintMacro.cpp │ │ ├── TestUnitTest++.cpp │ │ └── TestXmlTestReporter.cpp ├── VERSIONS.txt ├── expat.vcproj ├── expat │ ├── COPYING │ ├── Changes │ ├── MANIFEST │ ├── Makefile.in │ ├── README │ ├── amiga │ │ ├── Makefile │ │ ├── README.txt │ │ ├── expat.xml │ │ ├── expat_lib.c │ │ ├── expat_vectors.c │ │ ├── include │ │ │ ├── inline4 │ │ │ │ └── expat.h │ │ │ ├── interfaces │ │ │ │ └── expat.h │ │ │ ├── libraries │ │ │ │ └── expat.h │ │ │ └── proto │ │ │ │ └── expat.h │ │ ├── launch.c │ │ └── stdlib.c │ ├── bcb5 │ │ ├── README.txt │ │ ├── all_projects.bpg │ │ ├── elements.bpf │ │ ├── elements.bpr │ │ ├── elements.mak │ │ ├── expat.bpf │ │ ├── expat.bpr │ │ ├── expat.mak │ │ ├── expat_static.bpf │ │ ├── expat_static.bpr │ │ ├── expat_static.mak │ │ ├── expatw.bpf │ │ ├── expatw.bpr │ │ ├── expatw.mak │ │ ├── expatw_static.bpf │ │ ├── expatw_static.bpr │ │ ├── expatw_static.mak │ │ ├── libexpat_mtd.def │ │ ├── libexpatw_mtd.def │ │ ├── makefile.mak │ │ ├── outline.bpf │ │ ├── outline.bpr │ │ ├── outline.mak │ │ ├── setup.bat │ │ ├── xmlwf.bpf │ │ ├── xmlwf.bpr │ │ └── xmlwf.mak │ ├── configure │ ├── configure.in │ ├── conftools │ │ ├── PrintPath │ │ ├── ac_c_bigendian_cross.m4 │ │ ├── config.guess │ │ ├── config.sub │ │ ├── expat.m4 │ │ ├── get-version.sh │ │ ├── install-sh │ │ ├── libtool.m4 │ │ ├── ltmain.sh │ │ └── mkinstalldirs │ ├── doc │ │ ├── expat.png │ │ ├── reference.html │ │ ├── style.css │ │ ├── valid-xhtml10.png │ │ ├── xmlwf.1 │ │ └── xmlwf.sgml │ ├── examples │ │ ├── elements.c │ │ ├── elements.dsp │ │ ├── outline.c │ │ └── outline.dsp │ ├── expat.dsw │ ├── expat_config.h.in │ ├── lib │ │ ├── Makefile.MPW │ │ ├── amigaconfig.h │ │ ├── ascii.h │ │ ├── asciitab.h │ │ ├── expat.dsp │ │ ├── expat.h │ │ ├── expat_external.h │ │ ├── expat_static.dsp │ │ ├── expatw.dsp │ │ ├── expatw_static.dsp │ │ ├── iasciitab.h │ │ ├── internal.h │ │ ├── latin1tab.h │ │ ├── libexpat.def │ │ ├── libexpatw.def │ │ ├── macconfig.h │ │ ├── nametab.h │ │ ├── utf8tab.h │ │ ├── winconfig.h │ │ ├── xmlparse.c │ │ ├── xmlrole.c │ │ ├── xmlrole.h │ │ ├── xmltok.c │ │ ├── xmltok.h │ │ ├── xmltok_impl.c │ │ ├── xmltok_impl.h │ │ └── xmltok_ns.c │ ├── tests │ │ ├── README.txt │ │ ├── benchmark │ │ │ ├── README.txt │ │ │ ├── benchmark.c │ │ │ ├── benchmark.dsp │ │ │ └── benchmark.dsw │ │ ├── chardata.c │ │ ├── chardata.h │ │ ├── minicheck.c │ │ ├── minicheck.h │ │ ├── runtests.c │ │ ├── runtestspp.cpp │ │ └── xmltest.sh │ ├── vms │ │ ├── README.vms │ │ ├── descrip.mms │ │ └── expat_config.h │ ├── win32 │ │ ├── MANIFEST.txt │ │ ├── README.txt │ │ └── expat.iss │ └── xmlwf │ │ ├── codepage.c │ │ ├── codepage.h │ │ ├── ct.c │ │ ├── filemap.h │ │ ├── readfilemap.c │ │ ├── unixfilemap.c │ │ ├── win32filemap.c │ │ ├── xmlfile.c │ │ ├── xmlfile.h │ │ ├── xmlmime.c │ │ ├── xmlmime.h │ │ ├── xmltchar.h │ │ ├── xmlurl.h │ │ ├── xmlwf.c │ │ ├── xmlwf.dsp │ │ └── xmlwin32url.cxx ├── openssl-win32-x86 │ ├── include │ │ └── openssl │ │ │ ├── aes.h │ │ │ ├── asn1.h │ │ │ ├── asn1_mac.h │ │ │ ├── asn1t.h │ │ │ ├── bio.h │ │ │ ├── blowfish.h │ │ │ ├── bn.h │ │ │ ├── buffer.h │ │ │ ├── cast.h │ │ │ ├── comp.h │ │ │ ├── conf.h │ │ │ ├── conf_api.h │ │ │ ├── crypto.h │ │ │ ├── des.h │ │ │ ├── des_old.h │ │ │ ├── dh.h │ │ │ ├── dsa.h │ │ │ ├── dso.h │ │ │ ├── dtls1.h │ │ │ ├── e_os2.h │ │ │ ├── ebcdic.h │ │ │ ├── ec.h │ │ │ ├── ecdh.h │ │ │ ├── ecdsa.h │ │ │ ├── engine.h │ │ │ ├── err.h │ │ │ ├── evp.h │ │ │ ├── hmac.h │ │ │ ├── idea.h │ │ │ ├── krb5_asn.h │ │ │ ├── kssl.h │ │ │ ├── lhash.h │ │ │ ├── md2.h │ │ │ ├── md4.h │ │ │ ├── md5.h │ │ │ ├── obj_mac.h │ │ │ ├── objects.h │ │ │ ├── ocsp.h │ │ │ ├── opensslconf.h │ │ │ ├── opensslv.h │ │ │ ├── ossl_typ.h │ │ │ ├── pem.h │ │ │ ├── pem2.h │ │ │ ├── pkcs12.h │ │ │ ├── pkcs7.h │ │ │ ├── pq_compat.h │ │ │ ├── pqueue.h │ │ │ ├── rand.h │ │ │ ├── rc2.h │ │ │ ├── rc4.h │ │ │ ├── ripemd.h │ │ │ ├── rsa.h │ │ │ ├── safestack.h │ │ │ ├── sha.h │ │ │ ├── ssl.h │ │ │ ├── ssl2.h │ │ │ ├── ssl23.h │ │ │ ├── ssl3.h │ │ │ ├── stack.h │ │ │ ├── store.h │ │ │ ├── symhacks.h │ │ │ ├── tls1.h │ │ │ ├── tmdiff.h │ │ │ ├── txt_db.h │ │ │ ├── ui.h │ │ │ ├── ui_compat.h │ │ │ ├── x509.h │ │ │ ├── x509_vfy.h │ │ │ └── x509v3.h │ └── lib │ │ └── libeay32.lib ├── sqlite-cerod-see │ └── README.txt ├── sqlite │ ├── sqlite3.c │ ├── sqlite3.h │ └── sqlite3ext.h └── zlib │ ├── ChangeLog │ ├── FAQ │ ├── INDEX │ ├── Makefile │ ├── Makefile.in │ ├── README │ ├── adler32.c │ ├── algorithm.txt │ ├── amiga │ ├── Makefile.pup │ └── Makefile.sas │ ├── as400 │ ├── bndsrc │ ├── compile.clp │ ├── readme.txt │ └── zlib.inc │ ├── compress.c │ ├── configure │ ├── contrib │ ├── README.contrib │ ├── ada │ │ ├── buffer_demo.adb │ │ ├── mtest.adb │ │ ├── read.adb │ │ ├── readme.txt │ │ ├── test.adb │ │ ├── zlib-streams.adb │ │ ├── zlib-streams.ads │ │ ├── zlib-thin.adb │ │ ├── zlib-thin.ads │ │ ├── zlib.adb │ │ ├── zlib.ads │ │ └── zlib.gpr │ ├── asm586 │ │ ├── README.586 │ │ └── match.S │ ├── asm686 │ │ ├── README.686 │ │ └── match.S │ ├── blast │ │ ├── Makefile │ │ ├── README │ │ ├── blast.c │ │ ├── blast.h │ │ ├── test.pk │ │ └── test.txt │ ├── delphi │ │ ├── ZLib.pas │ │ ├── ZLibConst.pas │ │ ├── readme.txt │ │ └── zlibd32.mak │ ├── dotzlib │ │ ├── DotZLib.build │ │ ├── DotZLib.chm │ │ ├── DotZLib.sln │ │ ├── DotZLib │ │ │ ├── AssemblyInfo.cs │ │ │ ├── ChecksumImpl.cs │ │ │ ├── CircularBuffer.cs │ │ │ ├── CodecBase.cs │ │ │ ├── Deflater.cs │ │ │ ├── DotZLib.cs │ │ │ ├── DotZLib.csproj │ │ │ ├── GZipStream.cs │ │ │ ├── Inflater.cs │ │ │ └── UnitTests.cs │ │ ├── LICENSE_1_0.txt │ │ └── readme.txt │ ├── infback9 │ │ ├── README │ │ ├── infback9.c │ │ ├── infback9.h │ │ ├── inffix9.h │ │ ├── inflate9.h │ │ ├── inftree9.c │ │ └── inftree9.h │ ├── inflate86 │ │ ├── inffas86.c │ │ └── inffast.S │ ├── iostream │ │ ├── test.cpp │ │ ├── zfstream.cpp │ │ └── zfstream.h │ ├── iostream2 │ │ ├── zstream.h │ │ └── zstream_test.cpp │ ├── iostream3 │ │ ├── README │ │ ├── TODO │ │ ├── test.cc │ │ ├── zfstream.cc │ │ └── zfstream.h │ ├── masm686 │ │ └── match.asm │ ├── masmx64 │ │ ├── bld_ml64.bat │ │ ├── gvmat64.asm │ │ ├── gvmat64.obj │ │ ├── inffas8664.c │ │ ├── inffasx64.asm │ │ ├── inffasx64.obj │ │ └── readme.txt │ ├── masmx86 │ │ ├── bld_ml32.bat │ │ ├── gvmat32.asm │ │ ├── gvmat32.obj │ │ ├── gvmat32c.c │ │ ├── inffas32.asm │ │ ├── inffas32.obj │ │ ├── mkasm.bat │ │ └── readme.txt │ ├── minizip │ │ ├── ChangeLogUnzip │ │ ├── Makefile │ │ ├── crypt.h │ │ ├── ioapi.c │ │ ├── ioapi.h │ │ ├── iowin32.c │ │ ├── iowin32.h │ │ ├── miniunz.c │ │ ├── minizip.c │ │ ├── mztools.c │ │ ├── mztools.h │ │ ├── unzip.c │ │ ├── unzip.h │ │ ├── zip.c │ │ └── zip.h │ ├── pascal │ │ ├── example.pas │ │ ├── readme.txt │ │ ├── zlibd32.mak │ │ └── zlibpas.pas │ ├── puff │ │ ├── Makefile │ │ ├── README │ │ ├── puff.c │ │ ├── puff.h │ │ └── zeros.raw │ ├── testzlib │ │ ├── testzlib.c │ │ └── testzlib.txt │ ├── untgz │ │ ├── Makefile │ │ ├── Makefile.msc │ │ └── untgz.c │ └── vstudio │ │ ├── readme.txt │ │ ├── vc7 │ │ ├── miniunz.vcproj │ │ ├── minizip.vcproj │ │ ├── testzlib.vcproj │ │ ├── zlib.rc │ │ ├── zlibstat.vcproj │ │ ├── zlibvc.def │ │ ├── zlibvc.sln │ │ └── zlibvc.vcproj │ │ └── vc8 │ │ ├── miniunz.vcproj │ │ ├── minizip.vcproj │ │ ├── testzlib.vcproj │ │ ├── testzlibdll.vcproj │ │ ├── zlib.rc │ │ ├── zlibstat.vcproj │ │ ├── zlibvc.def │ │ ├── zlibvc.sln │ │ └── zlibvc.vcproj │ ├── crc32.c │ ├── crc32.h │ ├── deflate.c │ ├── deflate.h │ ├── example.c │ ├── examples │ ├── README.examples │ ├── fitblk.c │ ├── gun.c │ ├── gzappend.c │ ├── gzjoin.c │ ├── gzlog.c │ ├── gzlog.h │ ├── zlib_how.html │ ├── zpipe.c │ └── zran.c │ ├── gzio.c │ ├── infback.c │ ├── inffast.c │ ├── inffast.h │ ├── inffixed.h │ ├── inflate.c │ ├── inflate.h │ ├── inftrees.c │ ├── inftrees.h │ ├── make_vms.com │ ├── minigzip.c │ ├── msdos │ ├── Makefile.bor │ ├── Makefile.dj2 │ ├── Makefile.emx │ ├── Makefile.msc │ └── Makefile.tc │ ├── old │ ├── Makefile.riscos │ ├── README │ ├── descrip.mms │ ├── os2 │ │ ├── Makefile.os2 │ │ └── zlib.def │ ├── visual-basic.txt │ └── zlib.html │ ├── projects │ ├── README.projects │ └── visualc6 │ │ ├── README.txt │ │ ├── example.dsp │ │ ├── minigzip.dsp │ │ ├── zlib.dsp │ │ └── zlib.dsw │ ├── qnx │ └── package.qpg │ ├── trees.c │ ├── trees.h │ ├── uncompr.c │ ├── win32 │ ├── DLL_FAQ.txt │ ├── Makefile.bor │ ├── Makefile.emx │ ├── Makefile.gcc │ ├── Makefile.msc │ ├── VisualC.txt │ ├── zlib.def │ └── zlib1.rc │ ├── zconf.h │ ├── zconf.in.h │ ├── zlib.3 │ ├── zlib.h │ ├── zutil.c │ └── zutil.h ├── Frameworks ├── CareService │ ├── CareService.vcproj │ ├── Headers │ │ ├── CareService.h │ │ ├── SystemInfo.h │ │ ├── UUIDHelper.h │ │ └── Version.h │ └── Source │ │ ├── OSX │ │ ├── SystemInfo.mm │ │ └── UUIDHelper.mm │ │ ├── Version.cpp │ │ └── Windows │ │ ├── SystemInfo.cpp │ │ └── UUIDHelper.cpp ├── Formosa │ ├── Headers │ │ └── Mandarin.h │ ├── Ruby │ │ └── native_bopomofo │ │ │ ├── .gitignore │ │ │ ├── extconf.rb │ │ │ └── native_bopomofo.cpp │ ├── Source │ │ └── Mandarin.cpp │ └── Tools │ │ ├── BPMFList.txt │ │ ├── BPMFPHTRoundtripTest.cpp │ │ ├── BPMFPinyinRoundtripTest.cpp │ │ ├── BPMFToPinyinRef.txt │ │ ├── ConvertBPMFCin.cpp │ │ ├── ConvertBPMFCinToPHT.cpp │ │ ├── PinyinList.txt │ │ ├── StandardLayoutToComposedBPMF.cpp │ │ ├── TestPHTConversion.cpp │ │ ├── TestPinyinConversion.cpp │ │ ├── UniqueBPMFList.txt │ │ ├── UniqueChardef.rb │ │ ├── UniquePinyinList.txt │ │ ├── bpmf-cin-to-pinyin-raw.sh │ │ ├── bpmf-pinyin-raw-to-toned.rb │ │ ├── bpmf-pinyin-raw-to-toneless.rb │ │ ├── convert-bpmf-cin.rb │ │ ├── pinyin-to-tongyong.rb │ │ ├── pinyin-u-normailize.rb │ │ ├── unique-pinyin.py │ │ └── unique.pl ├── Graphene │ ├── Headers │ │ ├── Graphene.h │ │ └── Lexer.h │ └── Tests │ │ ├── Bignum.h │ │ ├── BignumTest.cpp │ │ └── Makefile ├── LFExtensions │ ├── LFCrossDevelopmentTools.h │ ├── LFCrossDevelopmentTools.m │ ├── LFExtensions-Info.plist │ ├── LFUtilities.h │ ├── NSBezierPathAdditions.h │ └── NSBezierPathAdditions.m ├── LFWebAPIToolbox │ ├── .gitignore │ ├── Headers │ │ ├── LFHTTPRequest.h │ │ ├── LFWebAPIToolbox.h │ │ └── NSData+LFHTTPFormExtensions.h │ ├── LFWebAPIToolbox.xcodeproj │ │ └── project.pbxproj │ ├── README.txt │ ├── Resources │ │ ├── English.lproj │ │ │ └── InfoPlist.strings │ │ └── Info.plist │ └── Source │ │ ├── LFHTTPRequest.m │ │ ├── LFWebAPIToolbox_Prefix.pch │ │ └── NSData+LFHTTPFormExtensions.m ├── Manjusri │ ├── Headers │ │ ├── BPMFUserPhraseHelper.h │ │ ├── Graph.h │ │ ├── LMDBHelper.h │ │ ├── LanguageModel.h │ │ ├── MandarinAlias.h │ │ ├── Manjusri.h │ │ ├── Node.h │ │ ├── OVDependency.h │ │ ├── STLDependency.h │ │ └── StringVectorHelper.h │ ├── Source │ │ ├── BPMFUserPhraseHelper.cpp │ │ └── Node.cpp │ ├── Tests │ │ ├── Main.cpp │ │ ├── TestMajusri.cpp │ │ └── TestMandarin.cpp │ └── Tools │ │ ├── ManjusriBuilder.cpp │ │ ├── PhaseTool.cpp │ │ ├── combine-addendum.rb │ │ ├── extract-corpus.rb │ │ ├── filter-out-search-terms.rb │ │ ├── lm-bpmfmarker-plain.rb │ │ ├── lm-bpmfmarker.rb │ │ ├── mandarin_knowledge.rb │ │ └── prepare-sql.rb ├── Minotaur │ ├── Headers │ │ └── Minotaur.h │ ├── Source │ │ └── Minotaur.cpp │ ├── Tests │ │ ├── Makefile │ │ ├── PublicDecrypt.cpp │ │ └── ValidateFile.cpp │ └── Tools │ │ ├── ModuleSign.cpp │ │ ├── ModuleSign.vcproj │ │ ├── bin2c-obfuscate.rb │ │ ├── bin2c.rb │ │ ├── digestsign.rb │ │ └── plainsign.rb ├── OpenVanilla │ ├── Headers │ │ ├── OVAroundFilter.h │ │ ├── OVBase.h │ │ ├── OVBenchmark.h │ │ ├── OVCINDataTable.h │ │ ├── OVCINDatabaseService.h │ │ ├── OVCINToSQLiteConvertor.h │ │ ├── OVCandidateService.h │ │ ├── OVDatabaseService.h │ │ ├── OVDateTimeHelper.h │ │ ├── OVEncodingService.h │ │ ├── OVEventHandlingContext.h │ │ ├── OVException.h │ │ ├── OVFileHelper.h │ │ ├── OVFrameworkInfo.h │ │ ├── OVInputMethod.h │ │ ├── OVKey.h │ │ ├── OVKeyPreprocessor.h │ │ ├── OVKeyValueMap.h │ │ ├── OVLoaderBase.h │ │ ├── OVLoaderService.h │ │ ├── OVLocalization.h │ │ ├── OVModule.h │ │ ├── OVModulePackage.h │ │ ├── OVOutputFilter.h │ │ ├── OVPathInfo.h │ │ ├── OVSQLiteDatabaseService.h │ │ ├── OVSQLiteWrapper.h │ │ ├── OVStringHelper.h │ │ ├── OVTextBuffer.h │ │ ├── OVUTF8Helper.h │ │ ├── OVWildcard.h │ │ └── OpenVanilla.h │ ├── OpenVanilla-Info.plist │ ├── OpenVanilla.vcproj │ ├── Source │ │ └── OVFrameworkInfo.cpp │ ├── Tests │ │ ├── Main.cpp │ │ ├── Standalone │ │ │ └── TestOVCINDatabaseService.cpp │ │ ├── TestMain.cpp │ │ ├── TestOVCINDatabaseService.cpp │ │ ├── TestOVDateTimeHelper.cpp │ │ ├── TestOVFileHelper.cpp │ │ ├── TestOVFrameworkVersion.cpp │ │ ├── TestOVSQLiteDatabaseService.cpp │ │ ├── TestOVSQLiteWrapper.cpp │ │ ├── TestOVStringHelper.cpp │ │ ├── TestOVUTF8Helper.cpp │ │ ├── TestOVWildcard.cpp │ │ ├── TestOpenVanilla-Info.plist │ │ └── TestOpenVanilla.vcproj │ └── Tools │ │ ├── CIN2SQLite.cpp │ │ ├── OVCINToSQLiteConvertor.h │ │ └── cin-to-sqlite.rb └── PlainVanilla │ ├── Headers │ ├── PVBasicKeyValueMapImpl.h │ ├── PVBundleLoadingSystem.h │ ├── PVCandidate.h │ ├── PVContextSandwich.h │ ├── PVDLLLoadingSystem.h │ ├── PVKeyImpl.h │ ├── PVLoaderPolicy.h │ ├── PVLoaderService.h │ ├── PVLoaderSystem.h │ ├── PVModulePackageSystem.h │ ├── PVModuleSystem.h │ ├── PVPlistValue.h │ ├── PVPropertyList.h │ ├── PVTextBuffer.h │ └── PlainVanilla.h │ ├── PlainVanilla-Info.plist │ ├── PlainVanilla.vcproj │ ├── Source │ ├── Cocoa │ │ ├── PVBundleLoadingSystem.cpp │ │ └── PVPropertyList.mm │ ├── PVPropertyListExpat.cpp │ └── Win32 │ │ └── PVDLLLoadingSystem.cpp │ └── Tests │ ├── LoaderTestMain.cpp │ ├── LoaderTestMain.mm │ ├── TestPVExpatBasedPropertyListMain.cpp │ ├── TestPlainVanilla-Info.plist │ ├── TestPlainVanilla-ModulePackage-Info.plist │ ├── TestPlainVanilla.cpp │ ├── TestPlainVanilla.h │ ├── TestPlainVanilla.vcproj │ ├── TestPlainVanillaLoader-Info.plist │ ├── TestPlainVanillaLoader.cpp │ ├── TestPlainVanillaLoader.h │ ├── TestPlainVanillaLoader.vcproj │ ├── TestPlainVanillaModulePackageMain.cpp │ ├── UnitTestMain.cpp │ └── UnitTestMain.mm ├── HowToBuildDist.markdown ├── InternalDocuments ├── ManjusriProcess-Public.graffle └── ManjusriProcess.graffle ├── LithoglyphModules.xcodeproj └── project.pbxproj ├── Loaders ├── CrossPlatform │ ├── OVDistributionConfig.h │ ├── OVLoaderUserPersistence.cpp │ ├── OVLoaderUserPersistence.h │ └── OVLoaderUserPersistence.mm ├── OSX-IMK │ ├── CVAboutController.h │ ├── CVAboutController.mm │ ├── CVApplicationController.h │ ├── CVApplicationController.mm │ ├── CVBubbleTextView.h │ ├── CVBubbleTextView.m │ ├── CVBubbleTextWindow.h │ ├── CVBubbleTextWindow.m │ ├── CVButtonViewController.h │ ├── CVButtonViewController.mm │ ├── CVDictionaryController+Orz.h │ ├── CVDictionaryController+Orz.m │ ├── CVDictionaryController+Toolbar.m │ ├── CVDictionaryController.h │ ├── CVDictionaryController.mm │ ├── CVDictionaryWindow.h │ ├── CVDictionaryWindow.m │ ├── CVEncodingService.h │ ├── CVEncodingService.mm │ ├── CVFloatingBackground.h │ ├── CVFloatingBackground.m │ ├── CVFloatingTableView.h │ ├── CVFloatingTableView.m │ ├── CVFloatingWindow.h │ ├── CVFloatingWindow.mm │ ├── CVHorizontalCandidateCell.h │ ├── CVHorizontalCandidateCell.m │ ├── CVHorizontalCandidateControl.h │ ├── CVHorizontalCandidateControl.m │ ├── CVHorizontalCandidateController.h │ ├── CVHorizontalCandidateController.mm │ ├── CVInputMethodToggleCell.h │ ├── CVInputMethodToggleCell.m │ ├── CVInputMethodToggleControl.h │ ├── CVInputMethodToggleControl.m │ ├── CVInputMethodToggleWindowController.h │ ├── CVInputMethodToggleWindowController.mm │ ├── CVKeyboardHelper.h │ ├── CVKeyboardHelper.m │ ├── CVNotifyController.h │ ├── CVNotifyController.m │ ├── CVNotifyWindow.h │ ├── CVNotifyWindow.m │ ├── CVPlainTextCandidateController.h │ ├── CVPlainTextCandidateController.mm │ ├── CVSearchController.h │ ├── CVSearchController.m │ ├── CVSendKey.h │ ├── CVSendKey.m │ ├── CVSmileyViewController.h │ ├── CVSmileyViewController.mm │ ├── CVSymbolController.h │ ├── CVSymbolController.mm │ ├── CVTextDecoration.h │ ├── CVTextDecoration.m │ ├── CVToolTipController.h │ ├── CVToolTipController.m │ ├── CVVerticalCandidateController.h │ ├── CVVerticalCandidateController.mm │ ├── English.lproj │ │ ├── AboutWindow.xib │ │ ├── InfoPlist.strings │ │ └── Localizable.strings │ ├── Images │ │ ├── About.jpg │ │ ├── FontBigger.tiff │ │ ├── FontSmaller.tiff │ │ ├── OVInputMenu.icns │ │ ├── OpenVanilla.icns │ │ ├── Renaissance.icns │ │ ├── Yahoo.icns │ │ ├── Yahoo16.icns │ │ └── Yahoo32.icns │ ├── Interface │ │ ├── DictionaryWindow.xib │ │ ├── HorizontalCandidateWindow.xib │ │ ├── InputMethodToggleWindowController.xib │ │ ├── MainMenu.xib │ │ ├── NotifyWindow.xib │ │ ├── PlainTextCandidateWindow.xib │ │ ├── SearchWindow.xib │ │ ├── SmileyView.xib │ │ ├── SymbolWindow.xib │ │ ├── TooltipWindow.xib │ │ └── VerticalCandidateWindow.xib │ ├── NSColor+LFColorExtensions.h │ ├── NSColor+LFColorExtensions.mm │ ├── NSStringExtension.h │ ├── NSStringExtension.mm │ ├── OpenVanilla-IMK-Info.plist │ ├── OpenVanillaConfig.h │ ├── OpenVanillaController.h │ ├── OpenVanillaController.mm │ ├── OpenVanillaLoader.h │ ├── OpenVanillaLoader.mm │ ├── OpenVanillaService.h │ ├── Takao-Info.plist │ ├── TrompeLoeil │ │ ├── OVLibrary.h │ │ ├── OVUtility.h │ │ └── OpenVanilla.h │ ├── main.mm │ ├── zh_CN.lproj │ │ ├── AboutWindow.xib │ │ ├── InfoPlist.strings │ │ └── Localizable.strings │ └── zh_TW.lproj │ │ ├── AboutWindow.xib │ │ ├── InfoPlist.strings │ │ └── Localizable.strings ├── OSX-TSM │ ├── CTGradient │ │ ├── CTGradient.h │ │ └── CTGradient.m │ ├── Component.h │ ├── Component.icns │ ├── Component.m │ ├── Component.r │ ├── ComponentConfig.h │ ├── Context.h │ ├── Context.m │ ├── InputMethodKitTiger.h │ ├── InputMethodKitTiger.mm │ ├── TakaoComponent-Info.plist │ └── TakaoServer-Info.plist └── Windows-IMM │ ├── BaseIME │ ├── BIKeyInfo.h │ ├── BaseIME.cpp │ ├── BaseIME.def │ ├── BaseIME.h │ ├── BaseIME.ico │ ├── BaseIME.rc │ ├── BaseIME.vcproj │ ├── EmptyIMECallbacks.cpp │ ├── IMECandidatePanel.cpp │ ├── IMECandidatePanel.h │ ├── IMEClient.cpp │ ├── IMEClient.h │ ├── IMEHelper.cpp │ ├── IMEHelper.h │ ├── IMEInputBuffer.cpp │ ├── IMEInputBuffer.h │ ├── IMEStatusBar.cpp │ ├── IMEStatusBar.h │ ├── Resource.h │ ├── StatusBar.rc │ ├── Yahoo.ico │ └── Yahoo32.ico │ ├── BaseIMEConfig │ └── BIConfig.h │ ├── BaseIMERPC-x64 │ └── .gitignore │ ├── BaseIMERPC │ ├── .gitignore │ ├── BIClientRPCInterface.idl │ ├── BIServerRPCInterface.idl │ ├── BaseIMEClientRPCStub.vcproj │ ├── BaseIMERPCInterface.vcproj │ ├── BaseIMEServerRPCStub.vcproj │ └── Makefile │ ├── BaseIMEServer │ ├── AssemblyInfo.cpp │ ├── BaseIMEServer.cpp │ ├── BaseIMEServer.h │ ├── BaseIMEServer.ico │ ├── BaseIMEServer.rc │ ├── BaseIMEServer.snk │ ├── BaseIMEServer.vcproj │ ├── Main.cpp │ ├── ManagedConnector.cpp │ ├── ManagedConnector.h │ ├── RPCService.cpp │ ├── RemoteDataFetcher.h │ ├── RemoteDataFetcherDelegate.h │ ├── SharedUI.h │ ├── WVEncodingService.cpp │ ├── WVEncodingService.h │ ├── WVLoaderPolicy.h │ ├── WVLogEmitter.h │ └── YKSignedModuleLoadingSystem.h │ ├── BaseIMETool │ ├── BaseIMETool.cpp │ ├── BaseIMETool.manifest.xml │ ├── BaseIMETool.vcproj │ ├── SupplementTool.cpp │ └── SupplementTool.vcproj │ ├── BaseIMEUI │ ├── BIAboutForm.Designer.cs │ ├── BIAboutForm.cs │ ├── BIAboutForm.resx │ ├── BIAboutForm.zh-CN.resx │ ├── BIAboutForm.zh-TW.resx │ ├── BIAboutPanel.cs │ ├── BIAboutPanel.designer.cs │ ├── BIAboutPanel.resx │ ├── BIAboutPanel.zh-CN.resx │ ├── BIAboutPanel.zh-TW.resx │ ├── BICandidateForm.Designer.cs │ ├── BICandidateForm.cs │ ├── BICandidateForm.resx │ ├── BIDictionaryForm.Designer.cs │ ├── BIDictionaryForm.Golimar.cs │ ├── BIDictionaryForm.Orz.cs │ ├── BIDictionaryForm.cs │ ├── BIDictionaryForm.resx │ ├── BIDictionaryForm.zh-CN.resx │ ├── BIDictionaryForm.zh-TW.resx │ ├── BIForm.Designer.cs │ ├── BIForm.cs │ ├── BIInputBufferForm.Designer.cs │ ├── BIInputBufferForm.cs │ ├── BIInputBufferForm.resx │ ├── BIKeyboardForm.cs │ ├── BIKeyboardForm.designer.cs │ ├── BIKeyboardForm.resx │ ├── BINotifyForm.Designer.cs │ ├── BINotifyForm.cs │ ├── BINotifyForm.resx │ ├── BIServerConnector.cs │ ├── BISmileyPanel.Designer.cs │ ├── BISmileyPanel.cs │ ├── BISmileyPanel.resx │ ├── BISmileyPanel.zh-CN.resx │ ├── BISmileyPanel.zh-TW.resx │ ├── BIStatusBarForm.Designer.cs │ ├── BIStatusBarForm.Init.cs │ ├── BIStatusBarForm.Notify.cs │ ├── BIStatusBarForm.Paint.cs │ ├── BIStatusBarForm.Schedule.cs │ ├── BIStatusBarForm.Update.cs │ ├── BIStatusBarForm.cs │ ├── BIStatusBarForm.resx │ ├── BIStatusBarForm.zh-CN.resx │ ├── BIStatusBarForm.zh-TW.resx │ ├── BISymbolForm.Designer.cs │ ├── BISymbolForm.cs │ ├── BISymbolForm.resx │ ├── BISymbolForm.zh-CN.resx │ ├── BISymbolForm.zh-TW.resx │ ├── BIToolTipForm.Designer.cs │ ├── BIToolTipForm.cs │ ├── BaseIMEUI.csproj │ ├── BaseIMEUI.snk │ ├── Config.cs │ ├── CustomizedControls │ │ ├── BIButton.Designer.cs │ │ ├── BIButton.cs │ │ ├── BIContextMenuStrip.Designer.cs │ │ ├── BIContextMenuStrip.cs │ │ ├── BIKeyboardButton.cs │ │ ├── BIKeyboardButton.designer.cs │ │ ├── BIToolStrip.Designer.cs │ │ ├── BIToolStrip.cs │ │ ├── BIToolStripDropDown.Designer.cs │ │ └── BIToolStripDropDown.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Resources │ │ ├── barbg.bmp │ │ ├── barhead.bmp │ │ ├── bartail.bmp │ │ └── yahoo.png │ ├── StatusbarItems │ │ ├── blank.bmp │ │ ├── cangjie.bmp │ │ ├── chinese.bmp │ │ ├── config.bmp │ │ ├── english.bmp │ │ ├── fullwidth.bmp │ │ ├── generic.bmp │ │ ├── halfwidth.bmp │ │ ├── help.bmp │ │ ├── menuCheck.bmp │ │ ├── menuUncheck.bmp │ │ ├── phonetic.bmp │ │ ├── simplex.bmp │ │ ├── smart.bmp │ │ ├── symbolClose.bmp │ │ ├── symbolOpen.bmp │ │ ├── zh_CN.bmp │ │ └── zh_TW.bmp │ ├── Utilities.cs │ ├── Win32FontHelper.cs │ └── Win32FunctionHelper.cs │ ├── Keyring │ └── Keyring.vcproj │ ├── LFPlatform │ ├── Headers │ │ ├── LFPlatform.h │ │ ├── LogKit.h │ │ ├── ProcessHelper.h │ │ ├── RPCHelper.h │ │ └── RegistryHelper.h │ ├── LFPlatform.vcproj │ ├── LFPlatformTest.vcproj │ ├── Source │ │ ├── LogKit.cpp │ │ ├── ProcessHelper.cpp │ │ ├── RPCHelper.cpp │ │ └── RegistryHelper.cpp │ └── Tests │ │ └── TestLogKitMain.cpp │ ├── PreferencesMain │ ├── AssemblyInfo.cpp │ ├── PreferencesMain.cpp │ ├── PreferencesMain.vcproj │ ├── app.aps │ ├── app.ico │ ├── app.rc │ ├── resource.h │ ├── stdafx.cpp │ └── stdafx.h │ ├── QuickSetup │ ├── FileAsssociation │ │ ├── AssociationManager.cs │ │ ├── FileAssociationInfo.cs │ │ ├── ProgramAssociationInfo.cs │ │ ├── ProgramIcon.cs │ │ ├── ProgramVerb.cs │ │ ├── RegistryException.cs │ │ ├── RegistryWrapper.cs │ │ └── ShellNotification.cs │ ├── KeyKey.ico │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── QuickSetup.Designer.cs │ ├── QuickSetup.cs │ ├── QuickSetup.csproj │ ├── QuickSetup.csproj.user │ ├── QuickSetup.resx │ ├── QuickSetup.zh-CN.resx │ └── QuickSetup.zh-TW.resx │ ├── ServerShooter │ ├── ServerShooter.cpp │ └── ServerShooter.vcproj │ ├── ServiceUI │ ├── AssemblyInfo.cpp │ ├── ReadMe.txt │ ├── ServiceUI.cpp │ ├── ServiceUI.vcproj │ ├── app.ico │ ├── app.rc │ ├── resource.h │ ├── stdafx.cpp │ └── stdafx.h │ └── WinDDK │ └── immdev.h ├── MEMORYMANAGEMENT ├── MakeTakaoWin.bat ├── ModulePackages ├── BasicInputMethod │ └── OVIMBasicInputMethod.h ├── OVAFBopomofoCorrection │ ├── OVAFBopomofoCorrection.cpp │ ├── OVAFBopomofoCorrection.h │ ├── OVAFBopomofoCorrectionPackage.h │ └── PackageMain.cpp ├── OVAFEval │ ├── Evalgelion.h │ ├── OVAFEval-Info.plist │ ├── OVAFEval.cpp │ ├── OVAFEval.h │ ├── OVAFEvalPackage.h │ ├── OVAFEvalPackage.vcproj │ ├── PackageMain.cpp │ └── TestEvalgelion.cpp ├── OVAFHomophoneLookup │ ├── OVAFHomophone.cpp │ └── OVAFHomophone.h ├── OVAFPhraseConverter │ ├── English.lproj │ │ └── InfoPlist.strings │ ├── OVAFPhraseConverter.cpp │ ├── OVAFPhraseConverter.h │ ├── OVAFPhraseConverterConfig.h │ ├── OVAFPhraseConverterPackage.h │ ├── PackageMain.cpp │ ├── Phrases.cin │ ├── PhrasesRemoved.cin │ ├── PhrasesWikipedia.cin │ ├── PhrasesYahoo.cin │ ├── YKAFPhraseConverter-Info.plist │ ├── YKPhraseConverter-Windows.plist │ ├── YKPhraseConverter.vcproj │ ├── zh_CN.lproj │ │ └── InfoPlist.strings │ └── zh_TW.lproj │ │ └── InfoPlist.strings ├── OVAFReverseLookup │ ├── English.lproj │ │ └── InfoPlist.strings │ ├── OVAFReverseLookup.cpp │ ├── OVAFReverseLookup.h │ ├── OVAFReverseLookupConfig.h │ ├── OVAFReverseLookupPackage.cpp │ ├── OVAFReverseLookupPackage.h │ ├── PackageMain.cpp │ ├── YKReverseLookup-Info.plist │ ├── YKReverseLookup-Windows.plist │ ├── YKReverseLookup.vcproj │ ├── zh_CN.lproj │ │ └── InfoPlist.strings │ └── zh_TW.lproj │ │ └── InfoPlist.strings ├── OVAFSearch │ ├── OVAFSearch.cpp │ ├── OVAFSearch.h │ ├── OVAFSearchPackage-Info.plist │ ├── OVAFSearchPackage.h │ ├── OVAFSearchPackage.vcproj │ └── PackageMain.cpp ├── OVIMAlphanumeric │ ├── OVIMAlphanumeric.h │ ├── OVIMAlphanumericPackage-Info.plist │ ├── OVIMAlphanumericPackage.h │ ├── OVIMAlphanumericPackage.vcproj │ └── PackageMain.cpp ├── OVIMEsperanto │ ├── OVIMEsperanto.h │ ├── OVIMEsperantoPackage-Info.plist │ ├── OVIMEsperantoPackage.h │ └── PackageMain.cpp ├── OVIMGeneric │ ├── OVIMGeneric.cpp │ ├── OVIMGeneric.h │ ├── OVIMGenericConfig.h │ ├── OVIMGenericPackage-Info.plist │ ├── OVIMGenericPackage.cpp │ ├── OVIMGenericPackage.h │ ├── OVIMGenericPackage.vcproj │ └── PackageMain.cpp ├── OVIMMandarin │ ├── OVAFAssociatedPhrase.cpp │ ├── OVAFAssociatedPhrase.h │ ├── OVIMMandarinConfig.h │ ├── OVIMMandarinPackage-Info.plist │ ├── OVIMMandarinPackage.h │ ├── OVIMMandarinPackage.vcproj │ ├── OVIMSmartMandarin.cpp │ ├── OVIMSmartMandarin.h │ ├── OVIMTraditionalMandarin.cpp │ ├── OVIMTraditionalMandarin.h │ └── PackageMain.cpp ├── OVIMTibetan │ ├── OVIMTibetan.cpp │ ├── OVIMTibetan.h │ ├── OVIMTibetanData.h │ ├── OVIMTibetanPackage-Info.plist │ ├── OVIMTibetanPackage.h │ ├── OVIMTibetanPackage.vcproj │ └── PackageMain.cpp ├── OVIMUnicodeHEX │ ├── OVIMUnicodeHEX.h │ ├── OVIMUnicodeHEXPackage-Info.plist │ ├── OVIMUnicodeHEXPackage.h │ └── PackageMain.cpp ├── OVIMUppercase │ ├── OVIMUppercase.cpp │ ├── OVIMUppercase.h │ ├── OVIMUppercasePackage-Info.plist │ ├── OVIMUppercasePackage.h │ ├── OVIMUppercasePackage.vcproj │ └── PackageMain.cpp ├── OVOFAntiZhuyinwen │ ├── OVOFAntiZhuyinwen.cpp │ ├── OVOFAntiZhuyinwen.h │ ├── OVOFAntiZhuyinwen.vcproj │ ├── OVOFAntiZhuyinwenPackage-Info.plist │ ├── OVOFAntiZhuyinwenPackage.h │ └── PackageMain.cpp ├── OVOFEscape │ ├── OVOFEscape.cpp │ ├── OVOFEscape.h │ ├── OVOFEscapePackage-Info.plist │ ├── OVOFEscapePackage.h │ ├── OVOFEscapePackage.vcproj │ └── PackageMain.cpp ├── OVOFFullWidthCharacter │ ├── OVOFFullWidthCharacter.cpp │ ├── OVOFFullWidthCharacter.h │ ├── OVOFFullWidthCharacterPackage-Info.plist │ ├── OVOFFullWidthCharacterPackage.h │ ├── OVOFFullWidthCharacterPackage.vcproj │ └── PackageMain.cpp ├── OVOFHanConvert │ ├── OVOFHanConvert.cpp │ ├── OVOFHanConvert.h │ ├── OVOFHanConvertPackage-Info.plist │ ├── OVOFHanConvertPackage.h │ ├── OVOFHanConvertPackage.vcproj │ ├── PackageMain.cpp │ ├── TC2SC.cpp │ ├── VXHCSC2TCTable.c │ └── VXHCTC2SCTable.c ├── StaticPack │ ├── StaticPack.cpp │ ├── StaticPack.h │ └── StaticPack.vcproj ├── YKAFOneKey │ ├── PackageMain.cpp │ ├── YKAFOneKey.cpp │ ├── YKAFOneKey.h │ ├── YKAFOneKeyPackage-Info.plist │ └── YKAFOneKeyPackage.h ├── YKAFPhraseAware │ ├── PackageMain.cpp │ ├── YKAFPhraseAware.cpp │ ├── YKAFPhraseAware.h │ ├── YKAFPhraseAware.vcproj │ ├── YKAFPhraseAwarePackage-Info.plist │ └── YKAFPhraseAwarePackage.h └── YKAFWordCount │ ├── English.lproj │ └── InfoPlist.strings │ ├── PackageMain.cpp │ ├── YKAFWordCount-Windows.plist │ ├── YKAFWordCount.cpp │ ├── YKAFWordCount.h │ ├── YKAFWordCount.vcproj │ ├── YKAFWordCountPackage-Info.plist │ ├── YKAFWordCountPackage.h │ ├── zh_CN.lproj │ └── InfoPlist.strings │ └── zh_TW.lproj │ └── InfoPlist.strings ├── PreferenceApplications ├── DownloadUpdateOSX │ ├── DownloadController.h │ ├── DownloadController.m │ ├── DownloadUpdate.xcodeproj │ │ ├── TemplateIcon.icns │ │ └── project.pbxproj │ ├── English.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── MainMenu.nib │ │ │ ├── designable.nib │ │ │ └── keyedobjects.nib │ ├── Info.plist │ ├── main.m │ ├── zh_CN.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── MainMenu.nib │ │ │ ├── designable.nib │ │ │ └── keyedobjects.nib │ └── zh_TW.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── MainMenu.nib │ │ ├── designable.nib │ │ └── keyedobjects.nib ├── OSX │ ├── English.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ ├── MainMenu.xib │ │ ├── TakaoGenericSettings.xib │ │ ├── TakaoReverseLookup.xib │ │ └── TakaoWordCount.xib │ ├── Images │ │ ├── cangjie.tiff │ │ ├── general.tiff │ │ ├── generic.tiff │ │ ├── phonetic.tiff │ │ ├── phrase.tiff │ │ ├── playSound.tiff │ │ ├── plugin.tiff │ │ ├── simplex.tiff │ │ ├── stopSound.tiff │ │ └── update.tiff │ ├── Info.plist │ ├── TakaoCangjie.h │ ├── TakaoCangjie.m │ ├── TakaoGeneric.h │ ├── TakaoGeneric.m │ ├── TakaoGenericSettings.h │ ├── TakaoGenericSettings.m │ ├── TakaoGlobal.h │ ├── TakaoGlobal.m │ ├── TakaoHelper.h │ ├── TakaoHelper.m │ ├── TakaoKeyboardLayoutPopUpButton.h │ ├── TakaoKeyboardLayoutPopUpButton.m │ ├── TakaoLoadedModule.h │ ├── TakaoLoadedModule.m │ ├── TakaoPhonetic.h │ ├── TakaoPhonetic.m │ ├── TakaoPhrases.h │ ├── TakaoPhrases.m │ ├── TakaoPreference.h │ ├── TakaoPreference.m │ ├── TakaoPreference.xcodeproj │ │ └── project.pbxproj │ ├── TakaoPreference_Toolbar.m │ ├── TakaoReverseLookup.h │ ├── TakaoReverseLookup.m │ ├── TakaoSearch.h │ ├── TakaoSearch.m │ ├── TakaoSettings.h │ ├── TakaoSimplex.h │ ├── TakaoSimplex.m │ ├── TakaoSmartPhonetic.h │ ├── TakaoSmartPhonetic.m │ ├── TakaoUpdate.h │ ├── TakaoUpdate.m │ ├── TakaoWindow.h │ ├── TakaoWindow.m │ ├── TakaoWordCount.h │ ├── TakaoWordCount.m │ ├── main.m │ ├── zh_CN.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ ├── MainMenu.xib │ │ ├── TakaoGenericSettings.xib │ │ ├── TakaoReverseLookup.xib │ │ └── TakaoWordCount.xib │ └── zh_TW.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ ├── MainMenu.xib │ │ ├── TakaoGenericSettings.xib │ │ ├── TakaoReverseLookup.xib │ │ └── TakaoWordCount.xib └── Windows │ ├── FormAskDownload.Designer.cs │ ├── FormAskDownload.cs │ ├── FormAskDownload.resx │ ├── FormAskDownload.zh-CN.resx │ ├── FormAskDownload.zh-TW.resx │ ├── FormDownload.cs │ ├── FormDownload.designer.cs │ ├── FormDownload.resx │ ├── FormDownload.zh-CN.resx │ ├── FormDownload.zh-TW.resx │ ├── Icons │ ├── about.ico │ ├── cangjie.ico │ ├── general.ico │ ├── generic.ico │ ├── misc.ico │ ├── phrase.ico │ ├── simplex.ico │ ├── update.ico │ └── zhuyin.ico │ ├── PanelCangjie.Designer.cs │ ├── PanelCangjie.cs │ ├── PanelCangjie.resx │ ├── PanelCangjie.zh-CN.resx │ ├── PanelCangjie.zh-TW.resx │ ├── PanelGeneral.Designer.cs │ ├── PanelGeneral.cs │ ├── PanelGeneral.resx │ ├── PanelGeneral.zh-CN.resx │ ├── PanelGeneral.zh-TW.resx │ ├── PanelGeneric.Designer.cs │ ├── PanelGeneric.cs │ ├── PanelGeneric.resx │ ├── PanelGeneric.zh-CN.resx │ ├── PanelGeneric.zh-TW.resx │ ├── PanelGenericSettings.Designer.cs │ ├── PanelGenericSettings.cs │ ├── PanelGenericSettings.resx │ ├── PanelGenericSettings.zh-CN.resx │ ├── PanelGenericSettings.zh-TW.resx │ ├── PanelMisc.Designer.cs │ ├── PanelMisc.cs │ ├── PanelMisc.resx │ ├── PanelMisc.zh-CN.resx │ ├── PanelMisc.zh-TW.resx │ ├── PanelPhonetic.Designer.cs │ ├── PanelPhonetic.cs │ ├── PanelPhonetic.resx │ ├── PanelPhonetic.zh-CN.resx │ ├── PanelPhonetic.zh-TW.resx │ ├── PanelPhrases.Designer.cs │ ├── PanelPhrases.cs │ ├── PanelPhrases.resx │ ├── PanelPhrases.zh-CN.resx │ ├── PanelPhrases.zh-TW.resx │ ├── PanelSimplex.Designer.cs │ ├── PanelSimplex.cs │ ├── PanelSimplex.resx │ ├── PanelSimplex.zh-CN.resx │ ├── PanelSimplex.zh-TW.resx │ ├── PanelUpdate.Designer.cs │ ├── PanelUpdate.cs │ ├── PanelUpdate.resx │ ├── PanelUpdate.zh-CN.resx │ ├── PanelUpdate.zh-TW.resx │ ├── PreferenceConnector.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── Resources │ └── yahoo.bmp │ ├── TakaoHelper.cs │ ├── TakaoPreference.Designer.cs │ ├── TakaoPreference.cs │ ├── TakaoPreference.csproj │ ├── TakaoPreference.resx │ ├── TakaoPreference.snk │ ├── TakaoPreference.zh-CN.resx │ ├── TakaoPreference.zh-TW.resx │ └── UpdateHelper.cs ├── README.markdown ├── Studies ├── OVIMChewing │ ├── OVIMChewing.cpp │ ├── OVIMChewing.h │ ├── OVIMChewingPackage.h │ └── PackageMain.cpp ├── PinyinSegementor │ └── pinyin-segmentor.rb └── Win32RPCStudy │ ├── LIClientRPCInterface │ ├── LIClientRPCInterface.idl │ ├── LIClientRPCInterface.vcproj │ └── Makefile │ ├── LIRPCHelper │ ├── LIRPCHelper.cpp │ ├── LIRPCHelper.h │ ├── LIRPCHelper.vcproj │ ├── stdafx.cpp │ └── stdafx.h │ ├── LIServerRPCInterface │ ├── LIServerRPCInterface.idl │ ├── LIServerRPCInterface.vcproj │ └── Makefile │ ├── SampleClient │ ├── SampleClient.cpp │ ├── SampleClient.vcproj │ ├── stdafx.cpp │ └── stdafx.h │ ├── SampleServer │ ├── SampleServer.cpp │ ├── SampleServer.vcproj │ ├── stdafx.cpp │ └── stdafx.h │ └── Win32RPCStudy.sln ├── Takao.sln ├── Takao.xcodeproj └── project.pbxproj ├── Takao.xml ├── UPGRADING.txt ├── Utilities ├── CinInstaller │ └── Windows │ │ ├── AssemblyInfo.cpp │ │ ├── CinInstaller.cpp │ │ ├── CinInstaller.vcproj │ │ ├── ReadMe.txt │ │ ├── app.ico │ │ ├── app.rc │ │ ├── cin.ico │ │ ├── resource.h │ │ ├── stdafx.cpp │ │ └── stdafx.h ├── HomophoneFilter │ └── Windows │ │ ├── AssemblyInfo.cpp │ │ ├── HomophoneFilter.cpp │ │ ├── HomophoneFilter.vcproj │ │ ├── HomophoneForm.h │ │ ├── HomophoneForm.resx │ │ ├── ProgressForm.cpp │ │ ├── ProgressForm.h │ │ ├── ProgressForm.resx │ │ ├── ReadMe.txt │ │ ├── app.ico │ │ ├── app.rc │ │ ├── resource.h │ │ ├── stdafx.cpp │ │ └── stdafx.h ├── PhraseEditor │ ├── OSX │ │ ├── English.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ └── MainMenu.xib │ │ ├── Images │ │ │ ├── PhraseEditor.icns │ │ │ ├── add.png │ │ │ ├── addressBook.png │ │ │ ├── delete.png │ │ │ ├── editPhrase.png │ │ │ ├── editReading.png │ │ │ └── reload.png │ │ ├── Info.plist │ │ ├── PEController.h │ │ ├── PEController.m │ │ ├── PEDialogWindow.h │ │ ├── PEDialogWindow.m │ │ ├── PEMainWindow.h │ │ ├── PEMainWindow.m │ │ ├── PEPhraseTableView.h │ │ ├── PEPhraseTableView.m │ │ ├── PESettingTableView.h │ │ ├── PESettingTableView.m │ │ ├── main.m │ │ ├── zh_CN.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ └── MainMenu.xib │ │ └── zh_TW.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ └── MainMenu.xib │ └── Windows │ │ ├── AboutForm.h │ │ ├── AboutForm.resx │ │ ├── AboutForm.zh-CN.resx │ │ ├── AboutForm.zh-TW.resx │ │ ├── AssemblyInfo.cpp │ │ ├── EditorForm.h │ │ ├── EditorForm.resx │ │ ├── EditorForm.zh-CN.resx │ │ ├── EditorForm.zh-TW.resx │ │ ├── Images │ │ ├── add.ico │ │ ├── editPhrase.ico │ │ ├── editReading.ico │ │ └── remove.ico │ │ ├── PhraseDBService.h │ │ ├── PhraseEditor.cpp │ │ ├── PhraseEditor.vcproj │ │ ├── ReadMe.txt │ │ ├── ReadingForm.h │ │ ├── ReadingForm.resx │ │ ├── ReadingForm.zh-CN.resx │ │ ├── ReadingForm.zh-TW.resx │ │ ├── URLHandler.h │ │ ├── app.ico │ │ ├── app.rc │ │ ├── resource.h │ │ ├── stdafx.cpp │ │ └── stdafx.h ├── SelectionDiff.rb ├── SignatureMaker │ ├── English.lproj │ │ ├── InfoPlist.strings │ │ └── MainMenu.nib │ │ │ ├── designable.nib │ │ │ └── keyedobjects.nib │ ├── Info.plist │ ├── SignatureMaker.xcodeproj │ │ ├── TemplateIcon.icns │ │ └── project.pbxproj │ ├── SignatureMaker_Prefix.pch │ ├── ZBMakerController.h │ ├── ZBMakerController.m │ ├── ZBTargetView.h │ ├── ZBTargetView.m │ └── main.m ├── TextOverlay │ ├── TextOverlay.m │ ├── TextOverlay.xcodeproj │ │ └── project.pbxproj │ └── TextOverlay_Prefix.pch ├── VersionInfoMaker │ ├── CocoaInit.m │ └── Main.cpp ├── bundle-clean.rb ├── count-lines-of-code.sh ├── encodecstr.rb ├── readlog.rb ├── reform-auto-complete.pl ├── test-endpoint.py ├── uniq.pl ├── uuid.rb └── version-upper.rb ├── WebResources ├── enter.ai ├── enter.gif ├── loading.gif └── speak.gif └── YahooKeyKey-BuildDeploymentReleaseProcedure.txt /DataSource-1.1.2528/BPMFMappings/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/DataSource-1.1.2528/BPMFMappings/README.txt -------------------------------------------------------------------------------- /DataSource-1.1.2528/SinicaCorpus/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/DataSource-1.1.2528/SinicaCorpus/README.txt -------------------------------------------------------------------------------- /DataSource-1.1.2528/YahooSearchTerms/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/DataSource-1.1.2528/YahooSearchTerms/README.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/README.txt -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/.gitignore -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ACKNOWLEDGEMENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ACKNOWLEDGEMENTS -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/COPYING -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/DataTables/bopomofo-correction.cin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/DataTables/bopomofo-correction.cin -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/DataTables/bopomofo-list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/DataTables/bopomofo-list.txt -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/DataTables/bpmf-ext.cin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/DataTables/bpmf-ext.cin -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/DataTables/bpmf-punctuations.cin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/DataTables/bpmf-punctuations.cin -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/DataTables/bpmf-to-pinyin-normalized.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/DataTables/bpmf-to-pinyin-normalized.txt -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/DataTables/bpmf-to-pinyin-raw.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/DataTables/bpmf-to-pinyin-raw.txt -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/DataTables/bpmf-to-pinyin-toneless.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/DataTables/bpmf-to-pinyin-toneless.txt -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/DataTables/bpmf-to-pinyin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/DataTables/bpmf-to-pinyin.txt -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/DataTables/bpmf.cin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/DataTables/bpmf.cin -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/DataTables/cj-ext.cin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/DataTables/cj-ext.cin -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/DataTables/cj-punctuations-halfwidth.cin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/DataTables/cj-punctuations-halfwidth.cin -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/DataTables/cj-punctuations-mixedwidth.cin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/DataTables/cj-punctuations-mixedwidth.cin -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/DataTables/ehq-symbols.cin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/DataTables/ehq-symbols.cin -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/DataTables/simplex-ext.cin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/DataTables/simplex-ext.cin -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/CookedDatabase/.gitignore: -------------------------------------------------------------------------------- 1 | *.db 2 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/DataSource/.gitignore: -------------------------------------------------------------------------------- 1 | SinicaCorpus 2 | YahooSearchTerms 3 | BPMFMappings 4 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/DataSource/Overrides/Keke-AddPinyin.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/DatabaseCooker/.gitignore: -------------------------------------------------------------------------------- 1 | Intermediates 2 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/DatabaseCooker/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Distributions/Takao/DatabaseCooker/Makefile -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/DatabaseCooker/Schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Distributions/Takao/DatabaseCooker/Schema.sql -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-OSX-Help/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-OSX-Help/main.m -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-OSX-IMK/openUp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-OSX-IMK/openUp.c -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-OSX-TSM/openUp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-OSX-TSM/openUp.c -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-OSX-UI/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-OSX-UI/main.m -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-Windows/.gitignore: -------------------------------------------------------------------------------- 1 | *.wixobj 2 | setup* 3 | Binary 4 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/Keyring/.gitignore: -------------------------------------------------------------------------------- 1 | *.pem 2 | *.bin 3 | *.txt 4 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/Keyring/DevPublicKey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Distributions/Takao/Keyring/DevPublicKey.c -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/Keyring/ModulePublicKey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Distributions/Takao/Keyring/ModulePublicKey.c -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/OnlineData/OneKey.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Distributions/Takao/OnlineData/OneKey.plist -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/PrecompiledTools/.gitignore: -------------------------------------------------------------------------------- 1 | P* 2 | s* 3 | c* 4 | T* 5 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/README.markdown: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/makeall-osx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Distributions/Takao/makeall-osx.sh -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/PackageMaker.app/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/PackageMaker.app/README.txt -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/SQLite.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/SQLite.vcproj -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/UnitTest++/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/UnitTest++/COPYING -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/UnitTest++/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/UnitTest++/Makefile -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/UnitTest++/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/UnitTest++/README -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/UnitTest++/UnitTest++: -------------------------------------------------------------------------------- 1 | UnitTest++ -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/UnitTest++/src/CheckMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/UnitTest++/src/CheckMacros.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/UnitTest++/src/Checks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/UnitTest++/src/Checks.cpp -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/UnitTest++/src/Checks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/UnitTest++/src/Checks.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/UnitTest++/src/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/UnitTest++/src/Config.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/UnitTest++/src/ExecuteTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/UnitTest++/src/ExecuteTest.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/UnitTest++/src/Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/UnitTest++/src/Test.cpp -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/UnitTest++/src/Test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/UnitTest++/src/Test.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/UnitTest++/src/TestDetails.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/UnitTest++/src/TestDetails.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/UnitTest++/src/TestList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/UnitTest++/src/TestList.cpp -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/UnitTest++/src/TestList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/UnitTest++/src/TestList.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/UnitTest++/src/TestMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/UnitTest++/src/TestMacros.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/UnitTest++/src/TestResults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/UnitTest++/src/TestResults.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/UnitTest++/src/TestRunner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/UnitTest++/src/TestRunner.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/UnitTest++/src/TestSuite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/UnitTest++/src/TestSuite.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/UnitTest++/src/TimeHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/UnitTest++/src/TimeHelpers.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/UnitTest++/src/UnitTest++.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/UnitTest++/src/UnitTest++.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/VERSIONS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/VERSIONS.txt -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat.vcproj -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/COPYING -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/Changes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/Changes -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/MANIFEST -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/Makefile.in -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/README -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/amiga/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/amiga/Makefile -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/amiga/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/amiga/README.txt -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/amiga/expat.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/amiga/expat.xml -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/amiga/expat_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/amiga/expat_lib.c -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/amiga/expat_vectors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/amiga/expat_vectors.c -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/amiga/launch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/amiga/launch.c -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/amiga/stdlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/amiga/stdlib.c -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/bcb5/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/bcb5/README.txt -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/bcb5/all_projects.bpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/bcb5/all_projects.bpg -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/bcb5/elements.bpf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/bcb5/elements.bpf -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/bcb5/elements.bpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/bcb5/elements.bpr -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/bcb5/elements.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/bcb5/elements.mak -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/bcb5/expat.bpf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/bcb5/expat.bpf -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/bcb5/expat.bpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/bcb5/expat.bpr -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/bcb5/expat.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/bcb5/expat.mak -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/bcb5/expat_static.bpf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/bcb5/expat_static.bpf -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/bcb5/expat_static.bpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/bcb5/expat_static.bpr -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/bcb5/expat_static.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/bcb5/expat_static.mak -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/bcb5/expatw.bpf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/bcb5/expatw.bpf -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/bcb5/expatw.bpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/bcb5/expatw.bpr -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/bcb5/expatw.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/bcb5/expatw.mak -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/bcb5/expatw_static.bpf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/bcb5/expatw_static.bpf -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/bcb5/expatw_static.bpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/bcb5/expatw_static.bpr -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/bcb5/expatw_static.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/bcb5/expatw_static.mak -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/bcb5/libexpat_mtd.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/bcb5/libexpat_mtd.def -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/bcb5/libexpatw_mtd.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/bcb5/libexpatw_mtd.def -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/bcb5/makefile.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/bcb5/makefile.mak -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/bcb5/outline.bpf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/bcb5/outline.bpf -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/bcb5/outline.bpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/bcb5/outline.bpr -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/bcb5/outline.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/bcb5/outline.mak -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/bcb5/setup.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/bcb5/setup.bat -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/bcb5/xmlwf.bpf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/bcb5/xmlwf.bpf -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/bcb5/xmlwf.bpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/bcb5/xmlwf.bpr -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/bcb5/xmlwf.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/bcb5/xmlwf.mak -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/configure -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/configure.in -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/conftools/PrintPath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/conftools/PrintPath -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/conftools/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/conftools/config.guess -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/conftools/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/conftools/config.sub -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/conftools/expat.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/conftools/expat.m4 -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/conftools/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/conftools/install-sh -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/conftools/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/conftools/libtool.m4 -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/conftools/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/conftools/ltmain.sh -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/doc/expat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/doc/expat.png -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/doc/reference.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/doc/reference.html -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/doc/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/doc/style.css -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/doc/valid-xhtml10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/doc/valid-xhtml10.png -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/doc/xmlwf.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/doc/xmlwf.1 -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/doc/xmlwf.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/doc/xmlwf.sgml -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/examples/elements.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/examples/elements.c -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/examples/elements.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/examples/elements.dsp -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/examples/outline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/examples/outline.c -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/examples/outline.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/examples/outline.dsp -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/expat.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/expat.dsw -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/expat_config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/expat_config.h.in -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/lib/Makefile.MPW: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/lib/Makefile.MPW -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/lib/amigaconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/lib/amigaconfig.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/lib/ascii.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/lib/ascii.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/lib/asciitab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/lib/asciitab.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/lib/expat.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/lib/expat.dsp -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/lib/expat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/lib/expat.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/lib/expat_external.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/lib/expat_external.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/lib/expat_static.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/lib/expat_static.dsp -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/lib/expatw.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/lib/expatw.dsp -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/lib/expatw_static.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/lib/expatw_static.dsp -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/lib/iasciitab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/lib/iasciitab.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/lib/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/lib/internal.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/lib/latin1tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/lib/latin1tab.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/lib/libexpat.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/lib/libexpat.def -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/lib/libexpatw.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/lib/libexpatw.def -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/lib/macconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/lib/macconfig.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/lib/nametab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/lib/nametab.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/lib/utf8tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/lib/utf8tab.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/lib/winconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/lib/winconfig.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/lib/xmlparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/lib/xmlparse.c -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/lib/xmlrole.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/lib/xmlrole.c -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/lib/xmlrole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/lib/xmlrole.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/lib/xmltok.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/lib/xmltok.c -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/lib/xmltok.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/lib/xmltok.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/lib/xmltok_impl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/lib/xmltok_impl.c -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/lib/xmltok_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/lib/xmltok_impl.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/lib/xmltok_ns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/lib/xmltok_ns.c -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/tests/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/tests/README.txt -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/tests/chardata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/tests/chardata.c -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/tests/chardata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/tests/chardata.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/tests/minicheck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/tests/minicheck.c -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/tests/minicheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/tests/minicheck.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/tests/runtests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/tests/runtests.c -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/tests/runtestspp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/tests/runtestspp.cpp -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/tests/xmltest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/tests/xmltest.sh -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/vms/README.vms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/vms/README.vms -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/vms/descrip.mms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/vms/descrip.mms -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/vms/expat_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/vms/expat_config.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/win32/MANIFEST.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/win32/MANIFEST.txt -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/win32/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/win32/README.txt -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/win32/expat.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/win32/expat.iss -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/xmlwf/codepage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/xmlwf/codepage.c -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/xmlwf/codepage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/xmlwf/codepage.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/xmlwf/ct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/xmlwf/ct.c -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/xmlwf/filemap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/xmlwf/filemap.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/xmlwf/readfilemap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/xmlwf/readfilemap.c -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/xmlwf/unixfilemap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/xmlwf/unixfilemap.c -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/xmlwf/win32filemap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/xmlwf/win32filemap.c -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/xmlwf/xmlfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/xmlwf/xmlfile.c -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/xmlwf/xmlfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/xmlwf/xmlfile.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/xmlwf/xmlmime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/xmlwf/xmlmime.c -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/xmlwf/xmlmime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/xmlwf/xmlmime.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/xmlwf/xmltchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/xmlwf/xmltchar.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/xmlwf/xmlurl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/xmlwf/xmlurl.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/xmlwf/xmlwf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/xmlwf/xmlwf.c -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/xmlwf/xmlwf.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/xmlwf/xmlwf.dsp -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/xmlwf/xmlwin32url.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/xmlwf/xmlwin32url.cxx -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/sqlite-cerod-see/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/sqlite-cerod-see/README.txt -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/sqlite/sqlite3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/sqlite/sqlite3.c -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/sqlite/sqlite3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/sqlite/sqlite3.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/sqlite/sqlite3ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/sqlite/sqlite3ext.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/ChangeLog -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/FAQ -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/INDEX -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/Makefile -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/Makefile.in -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/README -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/adler32.c -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/algorithm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/algorithm.txt -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/amiga/Makefile.pup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/amiga/Makefile.pup -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/amiga/Makefile.sas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/amiga/Makefile.sas -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/as400/bndsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/as400/bndsrc -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/as400/compile.clp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/as400/compile.clp -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/as400/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/as400/readme.txt -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/as400/zlib.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/as400/zlib.inc -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/compress.c -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/configure -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/README.contrib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/README.contrib -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/ada/mtest.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/ada/mtest.adb -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/ada/read.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/ada/read.adb -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/ada/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/ada/readme.txt -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/ada/test.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/ada/test.adb -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/ada/zlib.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/ada/zlib.adb -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/ada/zlib.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/ada/zlib.ads -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/ada/zlib.gpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/ada/zlib.gpr -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/asm586/match.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/asm586/match.S -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/asm686/match.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/asm686/match.S -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/blast/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/blast/Makefile -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/blast/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/blast/README -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/blast/blast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/blast/blast.c -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/blast/blast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/blast/blast.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/blast/test.pk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/blast/test.pk -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/blast/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/blast/test.txt -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/delphi/ZLib.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/delphi/ZLib.pas -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/infback9/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/infback9/README -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/iostream3/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/iostream3/TODO -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/minizip/crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/minizip/crypt.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/minizip/ioapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/minizip/ioapi.c -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/minizip/ioapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/minizip/ioapi.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/minizip/unzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/minizip/unzip.c -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/minizip/unzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/minizip/unzip.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/minizip/zip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/minizip/zip.c -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/minizip/zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/minizip/zip.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/puff/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/puff/Makefile -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/puff/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/puff/README -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/puff/puff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/puff/puff.c -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/puff/puff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/puff/puff.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/puff/zeros.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/puff/zeros.raw -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/untgz/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/untgz/Makefile -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/untgz/untgz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/untgz/untgz.c -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/crc32.c -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/crc32.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/deflate.c -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/deflate.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/example.c -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/examples/fitblk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/examples/fitblk.c -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/examples/gun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/examples/gun.c -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/examples/gzappend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/examples/gzappend.c -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/examples/gzjoin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/examples/gzjoin.c -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/examples/gzlog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/examples/gzlog.c -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/examples/gzlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/examples/gzlog.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/examples/zlib_how.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/examples/zlib_how.html -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/examples/zpipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/examples/zpipe.c -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/examples/zran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/examples/zran.c -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/gzio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/gzio.c -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/infback.c -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/inffast.c -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/inffast.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/inffixed.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/inflate.c -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/inflate.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/inftrees.c -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/inftrees.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/make_vms.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/make_vms.com -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/minigzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/minigzip.c -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/msdos/Makefile.bor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/msdos/Makefile.bor -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/msdos/Makefile.dj2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/msdos/Makefile.dj2 -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/msdos/Makefile.emx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/msdos/Makefile.emx -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/msdos/Makefile.msc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/msdos/Makefile.msc -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/msdos/Makefile.tc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/msdos/Makefile.tc -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/old/Makefile.riscos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/old/Makefile.riscos -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/old/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/old/README -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/old/descrip.mms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/old/descrip.mms -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/old/os2/Makefile.os2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/old/os2/Makefile.os2 -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/old/os2/zlib.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/old/os2/zlib.def -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/old/visual-basic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/old/visual-basic.txt -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/old/zlib.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/old/zlib.html -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/qnx/package.qpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/qnx/package.qpg -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/trees.c -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/trees.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/uncompr.c -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/win32/DLL_FAQ.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/win32/DLL_FAQ.txt -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/win32/Makefile.bor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/win32/Makefile.bor -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/win32/Makefile.emx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/win32/Makefile.emx -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/win32/Makefile.gcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/win32/Makefile.gcc -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/win32/Makefile.msc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/win32/Makefile.msc -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/win32/VisualC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/win32/VisualC.txt -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/win32/zlib.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/win32/zlib.def -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/win32/zlib1.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/win32/zlib1.rc -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/zconf.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/zconf.in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/zconf.in.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/zlib.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/zlib.3 -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/zlib.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/zutil.c -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/zutil.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/CareService/CareService.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Frameworks/CareService/CareService.vcproj -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/CareService/Headers/CareService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Frameworks/CareService/Headers/CareService.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/CareService/Headers/SystemInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Frameworks/CareService/Headers/SystemInfo.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/CareService/Headers/UUIDHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Frameworks/CareService/Headers/UUIDHelper.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/CareService/Headers/Version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Frameworks/CareService/Headers/Version.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/CareService/Source/Version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Frameworks/CareService/Source/Version.cpp -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/Formosa/Headers/Mandarin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Frameworks/Formosa/Headers/Mandarin.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/Formosa/Source/Mandarin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Frameworks/Formosa/Source/Mandarin.cpp -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/Formosa/Tools/BPMFList.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Frameworks/Formosa/Tools/BPMFList.txt -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/Formosa/Tools/BPMFToPinyinRef.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Frameworks/Formosa/Tools/BPMFToPinyinRef.txt -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/Formosa/Tools/ConvertBPMFCin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Frameworks/Formosa/Tools/ConvertBPMFCin.cpp -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/Formosa/Tools/PinyinList.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Frameworks/Formosa/Tools/PinyinList.txt -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/Formosa/Tools/TestPHTConversion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Frameworks/Formosa/Tools/TestPHTConversion.cpp -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/Formosa/Tools/UniqueBPMFList.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Frameworks/Formosa/Tools/UniqueBPMFList.txt -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/Formosa/Tools/UniqueChardef.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Frameworks/Formosa/Tools/UniqueChardef.rb -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/Formosa/Tools/UniquePinyinList.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Frameworks/Formosa/Tools/UniquePinyinList.txt -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/Formosa/Tools/convert-bpmf-cin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Frameworks/Formosa/Tools/convert-bpmf-cin.rb -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/Formosa/Tools/pinyin-to-tongyong.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Frameworks/Formosa/Tools/pinyin-to-tongyong.rb -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/Formosa/Tools/unique-pinyin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Frameworks/Formosa/Tools/unique-pinyin.py -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/Formosa/Tools/unique.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Frameworks/Formosa/Tools/unique.pl -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/Graphene/Headers/Graphene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Frameworks/Graphene/Headers/Graphene.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/Graphene/Headers/Lexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Frameworks/Graphene/Headers/Lexer.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/Graphene/Tests/Bignum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Frameworks/Graphene/Tests/Bignum.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/Graphene/Tests/BignumTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Frameworks/Graphene/Tests/BignumTest.cpp -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/Graphene/Tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Frameworks/Graphene/Tests/Makefile -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/LFExtensions/LFUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Frameworks/LFExtensions/LFUtilities.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/LFWebAPIToolbox/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Frameworks/LFWebAPIToolbox/.gitignore -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/LFWebAPIToolbox/README.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2008 Lithoglyph Inc. 2 | 3 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/Manjusri/Headers/Graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Frameworks/Manjusri/Headers/Graph.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/Manjusri/Headers/LMDBHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Frameworks/Manjusri/Headers/LMDBHelper.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/Manjusri/Headers/LanguageModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Frameworks/Manjusri/Headers/LanguageModel.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/Manjusri/Headers/MandarinAlias.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Frameworks/Manjusri/Headers/MandarinAlias.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/Manjusri/Headers/Manjusri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Frameworks/Manjusri/Headers/Manjusri.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/Manjusri/Headers/Node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Frameworks/Manjusri/Headers/Node.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/Manjusri/Headers/OVDependency.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Frameworks/Manjusri/Headers/OVDependency.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/Manjusri/Headers/STLDependency.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Frameworks/Manjusri/Headers/STLDependency.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/Manjusri/Source/Node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Frameworks/Manjusri/Source/Node.cpp -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/Manjusri/Tests/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Frameworks/Manjusri/Tests/Main.cpp -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/Manjusri/Tests/TestMajusri.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Frameworks/Manjusri/Tests/TestMajusri.cpp -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/Manjusri/Tests/TestMandarin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Frameworks/Manjusri/Tests/TestMandarin.cpp -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/Manjusri/Tools/ManjusriBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Frameworks/Manjusri/Tools/ManjusriBuilder.cpp -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/Manjusri/Tools/PhaseTool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Frameworks/Manjusri/Tools/PhaseTool.cpp -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/Manjusri/Tools/combine-addendum.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Frameworks/Manjusri/Tools/combine-addendum.rb -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/Manjusri/Tools/extract-corpus.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Frameworks/Manjusri/Tools/extract-corpus.rb -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/Manjusri/Tools/lm-bpmfmarker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Frameworks/Manjusri/Tools/lm-bpmfmarker.rb -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/Manjusri/Tools/prepare-sql.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Frameworks/Manjusri/Tools/prepare-sql.rb -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/Minotaur/Headers/Minotaur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Frameworks/Minotaur/Headers/Minotaur.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/Minotaur/Source/Minotaur.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Frameworks/Minotaur/Source/Minotaur.cpp -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/Minotaur/Tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Frameworks/Minotaur/Tests/Makefile -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/Minotaur/Tests/PublicDecrypt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Frameworks/Minotaur/Tests/PublicDecrypt.cpp -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/Minotaur/Tests/ValidateFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Frameworks/Minotaur/Tests/ValidateFile.cpp -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/Minotaur/Tools/ModuleSign.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Frameworks/Minotaur/Tools/ModuleSign.cpp -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/Minotaur/Tools/ModuleSign.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Frameworks/Minotaur/Tools/ModuleSign.vcproj -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/Minotaur/Tools/bin2c-obfuscate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Frameworks/Minotaur/Tools/bin2c-obfuscate.rb -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/Minotaur/Tools/bin2c.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Frameworks/Minotaur/Tools/bin2c.rb -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/Minotaur/Tools/digestsign.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Frameworks/Minotaur/Tools/digestsign.rb -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/Minotaur/Tools/plainsign.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Frameworks/Minotaur/Tools/plainsign.rb -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/OpenVanilla/Headers/OVBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Frameworks/OpenVanilla/Headers/OVBase.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/OpenVanilla/Headers/OVBenchmark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Frameworks/OpenVanilla/Headers/OVBenchmark.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/OpenVanilla/Headers/OVException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Frameworks/OpenVanilla/Headers/OVException.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/OpenVanilla/Headers/OVFileHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Frameworks/OpenVanilla/Headers/OVFileHelper.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/OpenVanilla/Headers/OVInputMethod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Frameworks/OpenVanilla/Headers/OVInputMethod.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/OpenVanilla/Headers/OVKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Frameworks/OpenVanilla/Headers/OVKey.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/OpenVanilla/Headers/OVKeyValueMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Frameworks/OpenVanilla/Headers/OVKeyValueMap.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/OpenVanilla/Headers/OVLoaderBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Frameworks/OpenVanilla/Headers/OVLoaderBase.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/OpenVanilla/Headers/OVModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Frameworks/OpenVanilla/Headers/OVModule.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/OpenVanilla/Headers/OVPathInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Frameworks/OpenVanilla/Headers/OVPathInfo.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/OpenVanilla/Headers/OVTextBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Frameworks/OpenVanilla/Headers/OVTextBuffer.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/OpenVanilla/Headers/OVUTF8Helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Frameworks/OpenVanilla/Headers/OVUTF8Helper.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/OpenVanilla/Headers/OVWildcard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Frameworks/OpenVanilla/Headers/OVWildcard.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/OpenVanilla/Headers/OpenVanilla.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Frameworks/OpenVanilla/Headers/OpenVanilla.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/OpenVanilla/OpenVanilla-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Frameworks/OpenVanilla/OpenVanilla-Info.plist -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/OpenVanilla/OpenVanilla.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Frameworks/OpenVanilla/OpenVanilla.vcproj -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/OpenVanilla/Tests/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Frameworks/OpenVanilla/Tests/Main.cpp -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/OpenVanilla/Tests/TestMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Frameworks/OpenVanilla/Tests/TestMain.cpp -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/OpenVanilla/Tools/CIN2SQLite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Frameworks/OpenVanilla/Tools/CIN2SQLite.cpp -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/OpenVanilla/Tools/cin-to-sqlite.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Frameworks/OpenVanilla/Tools/cin-to-sqlite.rb -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/PlainVanilla/Headers/PVCandidate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Frameworks/PlainVanilla/Headers/PVCandidate.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/PlainVanilla/Headers/PVKeyImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Frameworks/PlainVanilla/Headers/PVKeyImpl.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/PlainVanilla/Headers/PVPlistValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Frameworks/PlainVanilla/Headers/PVPlistValue.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/PlainVanilla/Headers/PVTextBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Frameworks/PlainVanilla/Headers/PVTextBuffer.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/PlainVanilla/Headers/PlainVanilla.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Frameworks/PlainVanilla/Headers/PlainVanilla.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/PlainVanilla/PlainVanilla.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Frameworks/PlainVanilla/PlainVanilla.vcproj -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/PlainVanilla/Tests/UnitTestMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Frameworks/PlainVanilla/Tests/UnitTestMain.cpp -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/PlainVanilla/Tests/UnitTestMain.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Frameworks/PlainVanilla/Tests/UnitTestMain.mm -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/HowToBuildDist.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/HowToBuildDist.markdown -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/InternalDocuments/ManjusriProcess.graffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/InternalDocuments/ManjusriProcess.graffle -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/LithoglyphModules.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/LithoglyphModules.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/CrossPlatform/OVDistributionConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/CrossPlatform/OVDistributionConfig.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/CrossPlatform/OVLoaderUserPersistence.mm: -------------------------------------------------------------------------------- 1 | OVLoaderUserPersistence.cpp -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVAboutController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVAboutController.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVAboutController.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVAboutController.mm -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVApplicationController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVApplicationController.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVApplicationController.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVApplicationController.mm -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVBubbleTextView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVBubbleTextView.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVBubbleTextView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVBubbleTextView.m -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVBubbleTextWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVBubbleTextWindow.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVBubbleTextWindow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVBubbleTextWindow.m -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVButtonViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVButtonViewController.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVButtonViewController.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVButtonViewController.mm -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVDictionaryController+Orz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVDictionaryController+Orz.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVDictionaryController+Orz.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVDictionaryController+Orz.m -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVDictionaryController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVDictionaryController.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVDictionaryController.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVDictionaryController.mm -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVDictionaryWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVDictionaryWindow.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVDictionaryWindow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVDictionaryWindow.m -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVEncodingService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVEncodingService.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVEncodingService.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVEncodingService.mm -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVFloatingBackground.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVFloatingBackground.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVFloatingBackground.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVFloatingBackground.m -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVFloatingTableView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVFloatingTableView.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVFloatingTableView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVFloatingTableView.m -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVFloatingWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVFloatingWindow.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVFloatingWindow.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVFloatingWindow.mm -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVHorizontalCandidateCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVHorizontalCandidateCell.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVHorizontalCandidateCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVHorizontalCandidateCell.m -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVHorizontalCandidateControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVHorizontalCandidateControl.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVHorizontalCandidateControl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVHorizontalCandidateControl.m -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVInputMethodToggleCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVInputMethodToggleCell.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVInputMethodToggleCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVInputMethodToggleCell.m -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVInputMethodToggleControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVInputMethodToggleControl.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVInputMethodToggleControl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVInputMethodToggleControl.m -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVKeyboardHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVKeyboardHelper.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVKeyboardHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVKeyboardHelper.m -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVNotifyController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVNotifyController.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVNotifyController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVNotifyController.m -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVNotifyWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVNotifyWindow.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVNotifyWindow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVNotifyWindow.m -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVSearchController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVSearchController.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVSearchController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVSearchController.m -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVSendKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVSendKey.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVSendKey.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVSendKey.m -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVSmileyViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVSmileyViewController.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVSmileyViewController.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVSmileyViewController.mm -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVSymbolController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVSymbolController.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVSymbolController.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVSymbolController.mm -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVTextDecoration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVTextDecoration.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVTextDecoration.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVTextDecoration.m -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVToolTipController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVToolTipController.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVToolTipController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVToolTipController.m -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/English.lproj/AboutWindow.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/English.lproj/AboutWindow.xib -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/Images/About.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/Images/About.jpg -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/Images/FontBigger.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/Images/FontBigger.tiff -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/Images/FontSmaller.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/Images/FontSmaller.tiff -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/Images/OVInputMenu.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/Images/OVInputMenu.icns -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/Images/OpenVanilla.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/Images/OpenVanilla.icns -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/Images/Renaissance.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/Images/Renaissance.icns -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/Images/Yahoo.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/Images/Yahoo.icns -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/Images/Yahoo16.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/Images/Yahoo16.icns -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/Images/Yahoo32.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/Images/Yahoo32.icns -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/Interface/DictionaryWindow.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/Interface/DictionaryWindow.xib -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/Interface/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/Interface/MainMenu.xib -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/Interface/NotifyWindow.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/Interface/NotifyWindow.xib -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/Interface/SearchWindow.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/Interface/SearchWindow.xib -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/Interface/SmileyView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/Interface/SmileyView.xib -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/Interface/SymbolWindow.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/Interface/SymbolWindow.xib -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/Interface/TooltipWindow.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/Interface/TooltipWindow.xib -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/NSColor+LFColorExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/NSColor+LFColorExtensions.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/NSColor+LFColorExtensions.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/NSColor+LFColorExtensions.mm -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/NSStringExtension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/NSStringExtension.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/NSStringExtension.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/NSStringExtension.mm -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/OpenVanilla-IMK-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/OpenVanilla-IMK-Info.plist -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/OpenVanillaConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/OpenVanillaConfig.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/OpenVanillaController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/OpenVanillaController.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/OpenVanillaController.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/OpenVanillaController.mm -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/OpenVanillaLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/OpenVanillaLoader.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/OpenVanillaLoader.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/OpenVanillaLoader.mm -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/OpenVanillaService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/OpenVanillaService.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/Takao-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/Takao-Info.plist -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/TrompeLoeil/OVLibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/TrompeLoeil/OVLibrary.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/TrompeLoeil/OVUtility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/TrompeLoeil/OVUtility.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/TrompeLoeil/OpenVanilla.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/TrompeLoeil/OpenVanilla.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/main.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/main.mm -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/zh_CN.lproj/AboutWindow.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/zh_CN.lproj/AboutWindow.xib -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/zh_CN.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/zh_CN.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/zh_TW.lproj/AboutWindow.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/zh_TW.lproj/AboutWindow.xib -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/zh_TW.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/zh_TW.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-TSM/CTGradient/CTGradient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-TSM/CTGradient/CTGradient.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-TSM/CTGradient/CTGradient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-TSM/CTGradient/CTGradient.m -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-TSM/Component.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-TSM/Component.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-TSM/Component.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-TSM/Component.icns -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-TSM/Component.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-TSM/Component.m -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-TSM/Component.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-TSM/Component.r -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-TSM/ComponentConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-TSM/ComponentConfig.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-TSM/Context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-TSM/Context.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-TSM/Context.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-TSM/Context.m -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-TSM/InputMethodKitTiger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-TSM/InputMethodKitTiger.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-TSM/InputMethodKitTiger.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-TSM/InputMethodKitTiger.mm -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-TSM/TakaoComponent-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-TSM/TakaoComponent-Info.plist -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-TSM/TakaoServer-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-TSM/TakaoServer-Info.plist -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIME/BIKeyInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIME/BIKeyInfo.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIME/BaseIME.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIME/BaseIME.cpp -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIME/BaseIME.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIME/BaseIME.def -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIME/BaseIME.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIME/BaseIME.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIME/BaseIME.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIME/BaseIME.ico -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIME/BaseIME.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIME/BaseIME.rc -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIME/BaseIME.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIME/BaseIME.vcproj -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIME/IMEClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIME/IMEClient.cpp -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIME/IMEClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIME/IMEClient.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIME/IMEHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIME/IMEHelper.cpp -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIME/IMEHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIME/IMEHelper.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIME/IMEInputBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIME/IMEInputBuffer.cpp -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIME/IMEInputBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIME/IMEInputBuffer.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIME/IMEStatusBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIME/IMEStatusBar.cpp -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIME/IMEStatusBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIME/IMEStatusBar.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIME/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIME/Resource.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIME/StatusBar.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIME/StatusBar.rc -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIME/Yahoo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIME/Yahoo.ico -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIME/Yahoo32.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIME/Yahoo32.ico -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIMEConfig/BIConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIMEConfig/BIConfig.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIMERPC-x64/.gitignore: -------------------------------------------------------------------------------- 1 | *.h 2 | *.c 3 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIMERPC/.gitignore: -------------------------------------------------------------------------------- 1 | *.h 2 | *.c 3 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIMERPC/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIMERPC/Makefile -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIMEServer/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIMEServer/Main.cpp -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIMEServer/SharedUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIMEServer/SharedUI.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIMEUI/BIAboutForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIMEUI/BIAboutForm.cs -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIMEUI/BIAboutForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIMEUI/BIAboutForm.resx -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIMEUI/BIAboutPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIMEUI/BIAboutPanel.cs -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIMEUI/BIForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIMEUI/BIForm.cs -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIMEUI/BINotifyForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIMEUI/BINotifyForm.cs -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIMEUI/BISmileyPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIMEUI/BISmileyPanel.cs -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIMEUI/BISymbolForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIMEUI/BISymbolForm.cs -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIMEUI/BIToolTipForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIMEUI/BIToolTipForm.cs -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIMEUI/BaseIMEUI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIMEUI/BaseIMEUI.csproj -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIMEUI/BaseIMEUI.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIMEUI/BaseIMEUI.snk -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIMEUI/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIMEUI/Config.cs -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIMEUI/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIMEUI/Utilities.cs -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/Keyring/Keyring.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/Keyring/Keyring.vcproj -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/PreferencesMain/app.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/PreferencesMain/app.aps -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/PreferencesMain/app.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/PreferencesMain/app.ico -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/PreferencesMain/app.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/PreferencesMain/app.rc -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/PreferencesMain/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/PreferencesMain/resource.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/PreferencesMain/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/PreferencesMain/stdafx.cpp -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/PreferencesMain/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/PreferencesMain/stdafx.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/QuickSetup/KeyKey.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/QuickSetup/KeyKey.ico -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/QuickSetup/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/QuickSetup/Program.cs -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/QuickSetup/QuickSetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/QuickSetup/QuickSetup.cs -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/QuickSetup/QuickSetup.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/QuickSetup/QuickSetup.resx -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/ServiceUI/AssemblyInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/ServiceUI/AssemblyInfo.cpp -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/ServiceUI/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/ServiceUI/ReadMe.txt -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/ServiceUI/ServiceUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/ServiceUI/ServiceUI.cpp -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/ServiceUI/ServiceUI.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/ServiceUI/ServiceUI.vcproj -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/ServiceUI/app.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/ServiceUI/app.ico -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/ServiceUI/app.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/ServiceUI/app.rc -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/ServiceUI/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/ServiceUI/resource.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/ServiceUI/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/ServiceUI/stdafx.cpp -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/ServiceUI/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/ServiceUI/stdafx.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/WinDDK/immdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/WinDDK/immdev.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/MEMORYMANAGEMENT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/MEMORYMANAGEMENT -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/MakeTakaoWin.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/MakeTakaoWin.bat -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ModulePackages/OVAFEval/Evalgelion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ModulePackages/OVAFEval/Evalgelion.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ModulePackages/OVAFEval/OVAFEval-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ModulePackages/OVAFEval/OVAFEval-Info.plist -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ModulePackages/OVAFEval/OVAFEval.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ModulePackages/OVAFEval/OVAFEval.cpp -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ModulePackages/OVAFEval/OVAFEval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ModulePackages/OVAFEval/OVAFEval.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ModulePackages/OVAFEval/OVAFEvalPackage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ModulePackages/OVAFEval/OVAFEvalPackage.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ModulePackages/OVAFEval/OVAFEvalPackage.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ModulePackages/OVAFEval/OVAFEvalPackage.vcproj -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ModulePackages/OVAFEval/PackageMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ModulePackages/OVAFEval/PackageMain.cpp -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ModulePackages/OVAFEval/TestEvalgelion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ModulePackages/OVAFEval/TestEvalgelion.cpp -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ModulePackages/OVAFPhraseConverter/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | CFBundleDisplayName = "Simplified Chinese Phrase Converter"; 2 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ModulePackages/OVAFPhraseConverter/Phrases.cin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ModulePackages/OVAFPhraseConverter/Phrases.cin -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ModulePackages/OVAFPhraseConverter/zh_CN.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | CFBundleDisplayName = "简体中文常用词汇转换"; 2 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ModulePackages/OVAFPhraseConverter/zh_TW.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | CFBundleDisplayName = "簡體中文常用詞彙轉換"; -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ModulePackages/OVAFReverseLookup/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | CFBundleDisplayName = "Reverse Lookup"; 2 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ModulePackages/OVAFReverseLookup/zh_CN.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | CFBundleDisplayName = "字根反查模块"; 2 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ModulePackages/OVAFReverseLookup/zh_TW.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | CFBundleDisplayName = "字根反查模組"; 2 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ModulePackages/OVAFSearch/OVAFSearch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ModulePackages/OVAFSearch/OVAFSearch.cpp -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ModulePackages/OVAFSearch/OVAFSearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ModulePackages/OVAFSearch/OVAFSearch.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ModulePackages/OVAFSearch/OVAFSearchPackage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ModulePackages/OVAFSearch/OVAFSearchPackage.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ModulePackages/OVAFSearch/PackageMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ModulePackages/OVAFSearch/PackageMain.cpp -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ModulePackages/OVIMEsperanto/OVIMEsperanto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ModulePackages/OVIMEsperanto/OVIMEsperanto.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ModulePackages/OVIMEsperanto/PackageMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ModulePackages/OVIMEsperanto/PackageMain.cpp -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ModulePackages/OVIMGeneric/OVIMGeneric.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ModulePackages/OVIMGeneric/OVIMGeneric.cpp -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ModulePackages/OVIMGeneric/OVIMGeneric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ModulePackages/OVIMGeneric/OVIMGeneric.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ModulePackages/OVIMGeneric/OVIMGenericConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ModulePackages/OVIMGeneric/OVIMGenericConfig.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ModulePackages/OVIMGeneric/PackageMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ModulePackages/OVIMGeneric/PackageMain.cpp -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ModulePackages/OVIMMandarin/PackageMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ModulePackages/OVIMMandarin/PackageMain.cpp -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ModulePackages/OVIMTibetan/OVIMTibetan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ModulePackages/OVIMTibetan/OVIMTibetan.cpp -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ModulePackages/OVIMTibetan/OVIMTibetan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ModulePackages/OVIMTibetan/OVIMTibetan.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ModulePackages/OVIMTibetan/OVIMTibetanData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ModulePackages/OVIMTibetan/OVIMTibetanData.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ModulePackages/OVIMTibetan/PackageMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ModulePackages/OVIMTibetan/PackageMain.cpp -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ModulePackages/OVIMUnicodeHEX/OVIMUnicodeHEX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ModulePackages/OVIMUnicodeHEX/OVIMUnicodeHEX.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ModulePackages/OVIMUnicodeHEX/PackageMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ModulePackages/OVIMUnicodeHEX/PackageMain.cpp -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ModulePackages/OVIMUppercase/OVIMUppercase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ModulePackages/OVIMUppercase/OVIMUppercase.cpp -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ModulePackages/OVIMUppercase/OVIMUppercase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ModulePackages/OVIMUppercase/OVIMUppercase.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ModulePackages/OVIMUppercase/PackageMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ModulePackages/OVIMUppercase/PackageMain.cpp -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ModulePackages/OVOFEscape/OVOFEscape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ModulePackages/OVOFEscape/OVOFEscape.cpp -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ModulePackages/OVOFEscape/OVOFEscape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ModulePackages/OVOFEscape/OVOFEscape.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ModulePackages/OVOFEscape/OVOFEscapePackage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ModulePackages/OVOFEscape/OVOFEscapePackage.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ModulePackages/OVOFEscape/PackageMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ModulePackages/OVOFEscape/PackageMain.cpp -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ModulePackages/OVOFHanConvert/OVOFHanConvert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ModulePackages/OVOFHanConvert/OVOFHanConvert.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ModulePackages/OVOFHanConvert/PackageMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ModulePackages/OVOFHanConvert/PackageMain.cpp -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ModulePackages/OVOFHanConvert/TC2SC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ModulePackages/OVOFHanConvert/TC2SC.cpp -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ModulePackages/OVOFHanConvert/VXHCSC2TCTable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ModulePackages/OVOFHanConvert/VXHCSC2TCTable.c -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ModulePackages/OVOFHanConvert/VXHCTC2SCTable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ModulePackages/OVOFHanConvert/VXHCTC2SCTable.c -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ModulePackages/StaticPack/StaticPack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ModulePackages/StaticPack/StaticPack.cpp -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ModulePackages/StaticPack/StaticPack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ModulePackages/StaticPack/StaticPack.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ModulePackages/StaticPack/StaticPack.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ModulePackages/StaticPack/StaticPack.vcproj -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ModulePackages/YKAFOneKey/PackageMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ModulePackages/YKAFOneKey/PackageMain.cpp -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ModulePackages/YKAFOneKey/YKAFOneKey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ModulePackages/YKAFOneKey/YKAFOneKey.cpp -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ModulePackages/YKAFOneKey/YKAFOneKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ModulePackages/YKAFOneKey/YKAFOneKey.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ModulePackages/YKAFOneKey/YKAFOneKeyPackage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ModulePackages/YKAFOneKey/YKAFOneKeyPackage.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ModulePackages/YKAFPhraseAware/PackageMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ModulePackages/YKAFPhraseAware/PackageMain.cpp -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ModulePackages/YKAFWordCount/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | CFBundleDisplayName = "Word Count"; 2 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ModulePackages/YKAFWordCount/PackageMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ModulePackages/YKAFWordCount/PackageMain.cpp -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ModulePackages/YKAFWordCount/YKAFWordCount.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ModulePackages/YKAFWordCount/YKAFWordCount.cpp -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ModulePackages/YKAFWordCount/YKAFWordCount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ModulePackages/YKAFWordCount/YKAFWordCount.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ModulePackages/YKAFWordCount/zh_CN.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | CFBundleDisplayName = "字数统计模块"; 2 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ModulePackages/YKAFWordCount/zh_TW.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | CFBundleDisplayName = "字數統計模組"; -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/Images/cangjie.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/Images/cangjie.tiff -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/Images/general.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/Images/general.tiff -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/Images/generic.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/Images/generic.tiff -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/Images/phrase.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/Images/phrase.tiff -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/Images/plugin.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/Images/plugin.tiff -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/Images/simplex.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/Images/simplex.tiff -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/Images/update.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/Images/update.tiff -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/Info.plist -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/TakaoCangjie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/TakaoCangjie.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/TakaoCangjie.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/TakaoCangjie.m -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/TakaoGeneric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/TakaoGeneric.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/TakaoGeneric.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/TakaoGeneric.m -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/TakaoGlobal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/TakaoGlobal.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/TakaoGlobal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/TakaoGlobal.m -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/TakaoHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/TakaoHelper.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/TakaoHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/TakaoHelper.m -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/TakaoLoadedModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/TakaoLoadedModule.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/TakaoLoadedModule.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/TakaoLoadedModule.m -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/TakaoPhonetic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/TakaoPhonetic.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/TakaoPhonetic.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/TakaoPhonetic.m -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/TakaoPhrases.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/TakaoPhrases.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/TakaoPhrases.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/TakaoPhrases.m -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/TakaoPreference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/TakaoPreference.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/TakaoSearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/TakaoSearch.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/TakaoSearch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/TakaoSearch.m -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/TakaoSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/TakaoSettings.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/TakaoSimplex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/TakaoSimplex.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/TakaoSimplex.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/TakaoSimplex.m -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/TakaoUpdate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/TakaoUpdate.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/TakaoUpdate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/TakaoUpdate.m -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/TakaoWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/TakaoWindow.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/TakaoWindow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/TakaoWindow.m -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/TakaoWordCount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/TakaoWordCount.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/TakaoWordCount.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/TakaoWordCount.m -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/main.m -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/PreferenceApplications/Windows/PanelMisc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/PreferenceApplications/Windows/PanelMisc.cs -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/README.markdown: -------------------------------------------------------------------------------- 1 | Takao (Yahoo! KeyKey) 2 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Studies/OVIMChewing/OVIMChewing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Studies/OVIMChewing/OVIMChewing.cpp -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Studies/OVIMChewing/OVIMChewing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Studies/OVIMChewing/OVIMChewing.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Studies/OVIMChewing/OVIMChewingPackage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Studies/OVIMChewing/OVIMChewingPackage.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Studies/OVIMChewing/PackageMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Studies/OVIMChewing/PackageMain.cpp -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Studies/Win32RPCStudy/LIRPCHelper/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Studies/Win32RPCStudy/LIRPCHelper/stdafx.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Studies/Win32RPCStudy/SampleClient/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Studies/Win32RPCStudy/SampleClient/stdafx.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Studies/Win32RPCStudy/SampleServer/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Studies/Win32RPCStudy/SampleServer/stdafx.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Studies/Win32RPCStudy/Win32RPCStudy.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Studies/Win32RPCStudy/Win32RPCStudy.sln -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Takao.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Takao.sln -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Takao.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Takao.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Takao.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Takao.xml -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/UPGRADING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/UPGRADING.txt -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Utilities/CinInstaller/Windows/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Utilities/CinInstaller/Windows/ReadMe.txt -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Utilities/CinInstaller/Windows/app.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Utilities/CinInstaller/Windows/app.ico -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Utilities/CinInstaller/Windows/app.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Utilities/CinInstaller/Windows/app.rc -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Utilities/CinInstaller/Windows/cin.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Utilities/CinInstaller/Windows/cin.ico -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Utilities/CinInstaller/Windows/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Utilities/CinInstaller/Windows/resource.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Utilities/CinInstaller/Windows/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Utilities/CinInstaller/Windows/stdafx.cpp -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Utilities/CinInstaller/Windows/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Utilities/CinInstaller/Windows/stdafx.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Utilities/HomophoneFilter/Windows/app.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Utilities/HomophoneFilter/Windows/app.ico -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Utilities/HomophoneFilter/Windows/app.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Utilities/HomophoneFilter/Windows/app.rc -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Utilities/HomophoneFilter/Windows/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Utilities/HomophoneFilter/Windows/stdafx.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Utilities/PhraseEditor/OSX/Images/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Utilities/PhraseEditor/OSX/Images/add.png -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Utilities/PhraseEditor/OSX/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Utilities/PhraseEditor/OSX/Info.plist -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Utilities/PhraseEditor/OSX/PEController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Utilities/PhraseEditor/OSX/PEController.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Utilities/PhraseEditor/OSX/PEController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Utilities/PhraseEditor/OSX/PEController.m -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Utilities/PhraseEditor/OSX/PEDialogWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Utilities/PhraseEditor/OSX/PEDialogWindow.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Utilities/PhraseEditor/OSX/PEDialogWindow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Utilities/PhraseEditor/OSX/PEDialogWindow.m -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Utilities/PhraseEditor/OSX/PEMainWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Utilities/PhraseEditor/OSX/PEMainWindow.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Utilities/PhraseEditor/OSX/PEMainWindow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Utilities/PhraseEditor/OSX/PEMainWindow.m -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Utilities/PhraseEditor/OSX/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Utilities/PhraseEditor/OSX/main.m -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Utilities/PhraseEditor/Windows/AboutForm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Utilities/PhraseEditor/Windows/AboutForm.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Utilities/PhraseEditor/Windows/EditorForm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Utilities/PhraseEditor/Windows/EditorForm.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Utilities/PhraseEditor/Windows/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Utilities/PhraseEditor/Windows/ReadMe.txt -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Utilities/PhraseEditor/Windows/URLHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Utilities/PhraseEditor/Windows/URLHandler.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Utilities/PhraseEditor/Windows/app.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Utilities/PhraseEditor/Windows/app.ico -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Utilities/PhraseEditor/Windows/app.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Utilities/PhraseEditor/Windows/app.rc -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Utilities/PhraseEditor/Windows/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Utilities/PhraseEditor/Windows/resource.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Utilities/PhraseEditor/Windows/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Utilities/PhraseEditor/Windows/stdafx.cpp -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Utilities/PhraseEditor/Windows/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Utilities/PhraseEditor/Windows/stdafx.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Utilities/SelectionDiff.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Utilities/SelectionDiff.rb -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Utilities/SignatureMaker/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Utilities/SignatureMaker/Info.plist -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Utilities/SignatureMaker/ZBTargetView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Utilities/SignatureMaker/ZBTargetView.h -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Utilities/SignatureMaker/ZBTargetView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Utilities/SignatureMaker/ZBTargetView.m -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Utilities/SignatureMaker/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Utilities/SignatureMaker/main.m -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Utilities/TextOverlay/TextOverlay.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Utilities/TextOverlay/TextOverlay.m -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Utilities/VersionInfoMaker/CocoaInit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Utilities/VersionInfoMaker/CocoaInit.m -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Utilities/VersionInfoMaker/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Utilities/VersionInfoMaker/Main.cpp -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Utilities/bundle-clean.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Utilities/bundle-clean.rb -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Utilities/count-lines-of-code.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Utilities/count-lines-of-code.sh -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Utilities/encodecstr.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Utilities/encodecstr.rb -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Utilities/readlog.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Utilities/readlog.rb -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Utilities/reform-auto-complete.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Utilities/reform-auto-complete.pl -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Utilities/test-endpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Utilities/test-endpoint.py -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Utilities/uniq.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Utilities/uniq.pl -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Utilities/uuid.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Utilities/uuid.rb -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Utilities/version-upper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Utilities/version-upper.rb -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/WebResources/enter.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/WebResources/enter.ai -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/WebResources/enter.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/WebResources/enter.gif -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/WebResources/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/WebResources/loading.gif -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/WebResources/speak.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/WebResources/speak.gif --------------------------------------------------------------------------------