├── .gitattributes ├── .gitignore ├── Images ├── Untitled-1.psd ├── about.bmp ├── about.psd ├── about2.psd ├── about_header.bmp ├── add.ico ├── array.ico ├── arrow_icon.ico ├── button.bmp ├── camera.ico ├── close.ico ├── closed.ico ├── custom.ico ├── enum.ico ├── exchange.ico ├── float.ico ├── general_class_VS.ico ├── general_interface_VS.ico ├── general_method_VS.ico ├── icon.bmp ├── icon.ico ├── icon.png ├── left.ico ├── matrix.ico ├── open.ico ├── pointer.ico ├── right.ico ├── signed.ico ├── speles_random_ico.ico ├── text.ico ├── unsigned.ico └── vector.ico ├── ReClass 2011.sln.old ├── ReClass 2011.suo.old ├── ReClass 2011 ├── ChildFrm.cpp ├── ChildFrm.h ├── ChildView.cpp ├── ChildView.h ├── Classes.h ├── Debug.h ├── DialogClasses.cpp ├── DialogClasses.h ├── DialogEdit.cpp ├── DialogEdit.h ├── DialogTypes.cpp ├── DialogTypes.h ├── MainFrm.cpp ├── MainFrm.h ├── Parser.h ├── ReClass 2011.cpp ├── ReClass 2011.h ├── ReClass 2011.rc ├── ReClass 2011.vcxproj ├── ReClass 2011.vcxproj.filters ├── ReadMe.txt ├── SDK.h ├── i_BeaEngine.cpp ├── i_sqlite.c ├── i_tinyxml.cpp ├── res │ ├── ReClass 2011.ico │ ├── ReClass2011.rc2 │ ├── Toolbar.bmp │ ├── Toolbar256.bmp │ ├── bitmap1.bmp │ ├── bmp00001.bmp │ ├── bmp00002.bmp │ ├── buttons.bmp │ ├── filelarge.bmp │ ├── filesmall.bmp │ ├── icon1.ico │ ├── main.bmp │ ├── output_wnd.ico │ ├── output_wnd_hc.ico │ ├── properties.bmp │ ├── properties_hc.bmp │ ├── properties_wnd.ico │ ├── properties_wnd_hc.ico │ ├── ribbon.mfcribbon-ms │ ├── toolbar1.bmp │ ├── writelarge.bmp │ └── writesmall.bmp ├── resource.h ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── ReClass.sln ├── SDK └── TestPlugin │ ├── TestPlugin.sln │ └── TestPlugin │ ├── ReadMe.txt │ ├── TestPlugin.cpp │ ├── TestPlugin.vcxproj │ ├── TestPlugin.vcxproj.filters │ ├── dllmain.cpp │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── SQLite ├── CppSQLite3.cpp ├── CppSQLite3.h ├── shell.c ├── sqlite3.c ├── sqlite3.h └── sqlite3ext.h ├── beaengine ├── beaengine │ ├── BeaEngine.h │ ├── basic_types.h │ ├── export.h │ └── macros.h └── beaengineSources │ ├── BeaEngine.c │ ├── CMakeLists.txt │ ├── COPYING.LESSER.txt │ ├── COPYING.txt │ ├── Includes │ ├── BeaEngineVersion.c │ ├── Routines_Disasm.c │ ├── Routines_ModRM.c │ ├── instr_set │ │ ├── Data_opcode.h │ │ ├── opcodes_AES.c │ │ ├── opcodes_A_M.c │ │ ├── opcodes_CLMUL.c │ │ ├── opcodes_FPU.c │ │ ├── opcodes_Grp1.c │ │ ├── opcodes_Grp12.c │ │ ├── opcodes_Grp13.c │ │ ├── opcodes_Grp14.c │ │ ├── opcodes_Grp15.c │ │ ├── opcodes_Grp16.c │ │ ├── opcodes_Grp2.c │ │ ├── opcodes_Grp3.c │ │ ├── opcodes_Grp4.c │ │ ├── opcodes_Grp5.c │ │ ├── opcodes_Grp6.c │ │ ├── opcodes_Grp7.c │ │ ├── opcodes_Grp8.c │ │ ├── opcodes_Grp9.c │ │ ├── opcodes_MMX.c │ │ ├── opcodes_N_Z.c │ │ ├── opcodes_SSE.c │ │ └── opcodes_prefixes.c │ ├── internal_datas.h │ └── protos.h │ └── README.txt ├── bf4_objects.reclass ├── changelog.txt ├── scintilla ├── License.txt ├── README ├── delbin.bat ├── delcvs.bat ├── doc │ ├── Design.html │ ├── Icons.html │ ├── Lexer.txt │ ├── SciBreak.jpg │ ├── SciCoding.html │ ├── SciRest.jpg │ ├── SciTEIco.png │ ├── SciWord.jpg │ ├── ScintillaDoc.html │ ├── ScintillaDownload.html │ ├── ScintillaHistory.html │ ├── ScintillaRelated.html │ ├── ScintillaToDo.html │ ├── ScintillaUsage.html │ ├── Steps.html │ └── index.html ├── gtk │ ├── Converter.h │ ├── PlatGTK.cxx │ ├── ScintillaGTK.cxx │ ├── deps.mak │ ├── makefile │ ├── scintilla-marshal.c │ ├── scintilla-marshal.h │ ├── scintilla-marshal.list │ └── scintilla.mak ├── include │ ├── Accessor.h │ ├── Face.py │ ├── HFacer.py │ ├── KeyWords.h │ ├── Platform.h │ ├── PropSet.h │ ├── SString.h │ ├── SciLexer.h │ ├── Scintilla.h │ ├── Scintilla.iface │ ├── ScintillaWidget.h │ └── WindowAccessor.h ├── src │ ├── AutoComplete.cxx │ ├── AutoComplete.h │ ├── CallTip.cxx │ ├── CallTip.h │ ├── CellBuffer.cxx │ ├── CellBuffer.h │ ├── CharClassify.cxx │ ├── CharClassify.h │ ├── ContractionState.cxx │ ├── ContractionState.h │ ├── Document.cxx │ ├── Document.h │ ├── DocumentAccessor.cxx │ ├── DocumentAccessor.h │ ├── Editor.cxx │ ├── Editor.h │ ├── ExternalLexer.cxx │ ├── ExternalLexer.h │ ├── Indicator.cxx │ ├── Indicator.h │ ├── KeyMap.cxx │ ├── KeyMap.h │ ├── KeyWords.cxx │ ├── LexAPDL.cxx │ ├── LexAU3.cxx │ ├── LexAVE.cxx │ ├── LexAda.cxx │ ├── LexAsm.cxx │ ├── LexAsn1.cxx │ ├── LexBaan.cxx │ ├── LexBash.cxx │ ├── LexBasic.cxx │ ├── LexBullant.cxx │ ├── LexCLW.cxx │ ├── LexCPP.cxx │ ├── LexCSS.cxx │ ├── LexCaml.cxx │ ├── LexConf.cxx │ ├── LexCrontab.cxx │ ├── LexCsound.cxx │ ├── LexEScript.cxx │ ├── LexEiffel.cxx │ ├── LexErlang.cxx │ ├── LexFlagship.cxx │ ├── LexForth.cxx │ ├── LexFortran.cxx │ ├── LexGen.py │ ├── LexGui4Cli.cxx │ ├── LexHTML.cxx │ ├── LexHaskell.cxx │ ├── LexInno.cxx │ ├── LexKix.cxx │ ├── LexLisp.cxx │ ├── LexLout.cxx │ ├── LexLua.cxx │ ├── LexMMIXAL.cxx │ ├── LexMPT.cxx │ ├── LexMSSQL.cxx │ ├── LexMatlab.cxx │ ├── LexMetapost.cxx │ ├── LexNsis.cxx │ ├── LexOpal.cxx │ ├── LexOthers.cxx │ ├── LexPB.cxx │ ├── LexPOV.cxx │ ├── LexPS.cxx │ ├── LexPascal.cxx │ ├── LexPerl.cxx │ ├── LexPython.cxx │ ├── LexRebol.cxx │ ├── LexRuby.cxx │ ├── LexSQL.cxx │ ├── LexScriptol.cxx │ ├── LexSmalltalk.cxx │ ├── LexSpecman.cxx │ ├── LexSpice.cxx │ ├── LexTADS3.cxx │ ├── LexTCL.cxx │ ├── LexTeX.cxx │ ├── LexVB.cxx │ ├── LexVHDL.cxx │ ├── LexVerilog.cxx │ ├── LexYAML.cxx │ ├── LineMarker.cxx │ ├── LineMarker.h │ ├── PropSet.cxx │ ├── RESearch.cxx │ ├── RESearch.h │ ├── SVector.h │ ├── SciTE.properties │ ├── ScintillaBase.cxx │ ├── ScintillaBase.h │ ├── Style.cxx │ ├── Style.h │ ├── StyleContext.cxx │ ├── StyleContext.h │ ├── UniConversion.cxx │ ├── UniConversion.h │ ├── ViewStyle.cxx │ ├── ViewStyle.h │ ├── WindowAccessor.cxx │ ├── XPM.cxx │ └── XPM.h ├── tgzsrc ├── vcbuild │ ├── SciLexer.dsp │ ├── SciLexer.vcxproj │ ├── SciLexer.vcxproj.filters │ ├── rsp_scintilla.txt │ └── rsp_scintillad.txt ├── version.txt ├── win32 │ ├── Margin.cur │ ├── PlatWin.cxx │ ├── PlatformRes.h │ ├── SciTE.properties │ ├── ScintRes.rc │ ├── Scintilla.def │ ├── ScintillaWin.cxx │ ├── deps.mak │ ├── makefile │ ├── scintilla.mak │ └── scintilla_vc6.mak └── zipsrc.bat └── tinyxml ├── Makefile ├── changes.txt ├── demotest.xml ├── docs ├── annotated.html ├── classTiXmlAttribute-members.html ├── classTiXmlAttribute.html ├── classTiXmlAttribute.png ├── classTiXmlBase-members.html ├── classTiXmlBase.html ├── classTiXmlBase.png ├── classTiXmlComment-members.html ├── classTiXmlComment.html ├── classTiXmlComment.png ├── classTiXmlDeclaration-members.html ├── classTiXmlDeclaration.html ├── classTiXmlDeclaration.png ├── classTiXmlDocument-members.html ├── classTiXmlDocument.html ├── classTiXmlDocument.png ├── classTiXmlElement-members.html ├── classTiXmlElement.html ├── classTiXmlElement.png ├── classTiXmlHandle-members.html ├── classTiXmlHandle.html ├── classTiXmlNode-members.html ├── classTiXmlNode.html ├── classTiXmlNode.png ├── classTiXmlPrinter-members.html ├── classTiXmlPrinter.html ├── classTiXmlPrinter.png ├── classTiXmlText-members.html ├── classTiXmlText.html ├── classTiXmlText.png ├── classTiXmlUnknown-members.html ├── classTiXmlUnknown.html ├── classTiXmlUnknown.png ├── classTiXmlVisitor-members.html ├── classTiXmlVisitor.html ├── classTiXmlVisitor.png ├── classes.html ├── deprecated.html ├── doxygen.css ├── doxygen.png ├── files.html ├── functions.html ├── functions_0x63.html ├── functions_0x64.html ├── functions_0x65.html ├── functions_0x66.html ├── functions_0x67.html ├── functions_0x69.html ├── functions_0x6c.html ├── functions_0x6e.html ├── functions_0x6f.html ├── functions_0x70.html ├── functions_0x71.html ├── functions_0x72.html ├── functions_0x73.html ├── functions_0x74.html ├── functions_0x75.html ├── functions_0x76.html ├── functions_enum.html ├── functions_func.html ├── functions_func_0x63.html ├── functions_func_0x64.html ├── functions_func_0x65.html ├── functions_func_0x66.html ├── functions_func_0x67.html ├── functions_func_0x69.html ├── functions_func_0x6c.html ├── functions_func_0x6e.html ├── functions_func_0x70.html ├── functions_func_0x71.html ├── functions_func_0x72.html ├── functions_func_0x73.html ├── functions_func_0x74.html ├── functions_func_0x75.html ├── functions_func_0x76.html ├── functions_rela.html ├── functions_vars.html ├── hierarchy.html ├── index.html ├── pages.html ├── tab_b.gif ├── tab_l.gif ├── tab_r.gif ├── tabs.css ├── tinystr_8h_source.html ├── tinyxml_8h_source.html └── tutorial0.html ├── echo.dsp ├── readme.txt ├── test5.xml ├── test6.xml ├── test7.xml ├── textfile.txt ├── tinyXmlTest.dsp ├── tinyXmlTest.vcproj ├── tinyXmlTest.vcxproj ├── tinyXmlTestSTL.dsp ├── tinyXmlTestSTL.vcproj ├── tinyXmlTestSTL.vcxproj ├── tinystr.cpp ├── tinystr.h ├── tinyxml.cpp ├── tinyxml.dsw ├── tinyxml.h ├── tinyxml.sln ├── tinyxmlSTL.dsp ├── tinyxmlSTL.vcproj ├── tinyxmlSTL.vcxproj ├── tinyxmlSTL.vcxproj.filters ├── tinyxml_lib.dsp ├── tinyxml_lib.vcproj ├── tinyxml_lib.vcxproj ├── tinyxml_lib.vcxproj.filters ├── tinyxmlerror.cpp ├── tinyxmlparser.cpp ├── utf8test.gif ├── utf8test.xml ├── utf8testout.xml ├── utf8testverify.xml └── xmltest.cpp /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/.gitignore -------------------------------------------------------------------------------- /Images/Untitled-1.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/Images/Untitled-1.psd -------------------------------------------------------------------------------- /Images/about.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/Images/about.bmp -------------------------------------------------------------------------------- /Images/about.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/Images/about.psd -------------------------------------------------------------------------------- /Images/about2.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/Images/about2.psd -------------------------------------------------------------------------------- /Images/about_header.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/Images/about_header.bmp -------------------------------------------------------------------------------- /Images/add.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/Images/add.ico -------------------------------------------------------------------------------- /Images/array.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/Images/array.ico -------------------------------------------------------------------------------- /Images/arrow_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/Images/arrow_icon.ico -------------------------------------------------------------------------------- /Images/button.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/Images/button.bmp -------------------------------------------------------------------------------- /Images/camera.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/Images/camera.ico -------------------------------------------------------------------------------- /Images/close.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/Images/close.ico -------------------------------------------------------------------------------- /Images/closed.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/Images/closed.ico -------------------------------------------------------------------------------- /Images/custom.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/Images/custom.ico -------------------------------------------------------------------------------- /Images/enum.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/Images/enum.ico -------------------------------------------------------------------------------- /Images/exchange.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/Images/exchange.ico -------------------------------------------------------------------------------- /Images/float.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/Images/float.ico -------------------------------------------------------------------------------- /Images/general_class_VS.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/Images/general_class_VS.ico -------------------------------------------------------------------------------- /Images/general_interface_VS.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/Images/general_interface_VS.ico -------------------------------------------------------------------------------- /Images/general_method_VS.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/Images/general_method_VS.ico -------------------------------------------------------------------------------- /Images/icon.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/Images/icon.bmp -------------------------------------------------------------------------------- /Images/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/Images/icon.ico -------------------------------------------------------------------------------- /Images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/Images/icon.png -------------------------------------------------------------------------------- /Images/left.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/Images/left.ico -------------------------------------------------------------------------------- /Images/matrix.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/Images/matrix.ico -------------------------------------------------------------------------------- /Images/open.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/Images/open.ico -------------------------------------------------------------------------------- /Images/pointer.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/Images/pointer.ico -------------------------------------------------------------------------------- /Images/right.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/Images/right.ico -------------------------------------------------------------------------------- /Images/signed.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/Images/signed.ico -------------------------------------------------------------------------------- /Images/speles_random_ico.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/Images/speles_random_ico.ico -------------------------------------------------------------------------------- /Images/text.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/Images/text.ico -------------------------------------------------------------------------------- /Images/unsigned.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/Images/unsigned.ico -------------------------------------------------------------------------------- /Images/vector.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/Images/vector.ico -------------------------------------------------------------------------------- /ReClass 2011.sln.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/ReClass 2011.sln.old -------------------------------------------------------------------------------- /ReClass 2011.suo.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/ReClass 2011.suo.old -------------------------------------------------------------------------------- /ReClass 2011/ChildFrm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/ReClass 2011/ChildFrm.cpp -------------------------------------------------------------------------------- /ReClass 2011/ChildFrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/ReClass 2011/ChildFrm.h -------------------------------------------------------------------------------- /ReClass 2011/ChildView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/ReClass 2011/ChildView.cpp -------------------------------------------------------------------------------- /ReClass 2011/ChildView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/ReClass 2011/ChildView.h -------------------------------------------------------------------------------- /ReClass 2011/Classes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/ReClass 2011/Classes.h -------------------------------------------------------------------------------- /ReClass 2011/Debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/ReClass 2011/Debug.h -------------------------------------------------------------------------------- /ReClass 2011/DialogClasses.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/ReClass 2011/DialogClasses.cpp -------------------------------------------------------------------------------- /ReClass 2011/DialogClasses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/ReClass 2011/DialogClasses.h -------------------------------------------------------------------------------- /ReClass 2011/DialogEdit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/ReClass 2011/DialogEdit.cpp -------------------------------------------------------------------------------- /ReClass 2011/DialogEdit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/ReClass 2011/DialogEdit.h -------------------------------------------------------------------------------- /ReClass 2011/DialogTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/ReClass 2011/DialogTypes.cpp -------------------------------------------------------------------------------- /ReClass 2011/DialogTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/ReClass 2011/DialogTypes.h -------------------------------------------------------------------------------- /ReClass 2011/MainFrm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/ReClass 2011/MainFrm.cpp -------------------------------------------------------------------------------- /ReClass 2011/MainFrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/ReClass 2011/MainFrm.h -------------------------------------------------------------------------------- /ReClass 2011/Parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/ReClass 2011/Parser.h -------------------------------------------------------------------------------- /ReClass 2011/ReClass 2011.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/ReClass 2011/ReClass 2011.cpp -------------------------------------------------------------------------------- /ReClass 2011/ReClass 2011.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/ReClass 2011/ReClass 2011.h -------------------------------------------------------------------------------- /ReClass 2011/ReClass 2011.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/ReClass 2011/ReClass 2011.rc -------------------------------------------------------------------------------- /ReClass 2011/ReClass 2011.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/ReClass 2011/ReClass 2011.vcxproj -------------------------------------------------------------------------------- /ReClass 2011/ReClass 2011.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/ReClass 2011/ReClass 2011.vcxproj.filters -------------------------------------------------------------------------------- /ReClass 2011/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/ReClass 2011/ReadMe.txt -------------------------------------------------------------------------------- /ReClass 2011/SDK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/ReClass 2011/SDK.h -------------------------------------------------------------------------------- /ReClass 2011/i_BeaEngine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/ReClass 2011/i_BeaEngine.cpp -------------------------------------------------------------------------------- /ReClass 2011/i_sqlite.c: -------------------------------------------------------------------------------- 1 | 2 | #include "../SQLite/sqlite3.c" 3 | 4 | -------------------------------------------------------------------------------- /ReClass 2011/i_tinyxml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/ReClass 2011/i_tinyxml.cpp -------------------------------------------------------------------------------- /ReClass 2011/res/ReClass 2011.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/ReClass 2011/res/ReClass 2011.ico -------------------------------------------------------------------------------- /ReClass 2011/res/ReClass2011.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/ReClass 2011/res/ReClass2011.rc2 -------------------------------------------------------------------------------- /ReClass 2011/res/Toolbar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/ReClass 2011/res/Toolbar.bmp -------------------------------------------------------------------------------- /ReClass 2011/res/Toolbar256.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/ReClass 2011/res/Toolbar256.bmp -------------------------------------------------------------------------------- /ReClass 2011/res/bitmap1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/ReClass 2011/res/bitmap1.bmp -------------------------------------------------------------------------------- /ReClass 2011/res/bmp00001.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/ReClass 2011/res/bmp00001.bmp -------------------------------------------------------------------------------- /ReClass 2011/res/bmp00002.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/ReClass 2011/res/bmp00002.bmp -------------------------------------------------------------------------------- /ReClass 2011/res/buttons.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/ReClass 2011/res/buttons.bmp -------------------------------------------------------------------------------- /ReClass 2011/res/filelarge.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/ReClass 2011/res/filelarge.bmp -------------------------------------------------------------------------------- /ReClass 2011/res/filesmall.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/ReClass 2011/res/filesmall.bmp -------------------------------------------------------------------------------- /ReClass 2011/res/icon1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/ReClass 2011/res/icon1.ico -------------------------------------------------------------------------------- /ReClass 2011/res/main.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/ReClass 2011/res/main.bmp -------------------------------------------------------------------------------- /ReClass 2011/res/output_wnd.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/ReClass 2011/res/output_wnd.ico -------------------------------------------------------------------------------- /ReClass 2011/res/output_wnd_hc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/ReClass 2011/res/output_wnd_hc.ico -------------------------------------------------------------------------------- /ReClass 2011/res/properties.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/ReClass 2011/res/properties.bmp -------------------------------------------------------------------------------- /ReClass 2011/res/properties_hc.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/ReClass 2011/res/properties_hc.bmp -------------------------------------------------------------------------------- /ReClass 2011/res/properties_wnd.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/ReClass 2011/res/properties_wnd.ico -------------------------------------------------------------------------------- /ReClass 2011/res/properties_wnd_hc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/ReClass 2011/res/properties_wnd_hc.ico -------------------------------------------------------------------------------- /ReClass 2011/res/ribbon.mfcribbon-ms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/ReClass 2011/res/ribbon.mfcribbon-ms -------------------------------------------------------------------------------- /ReClass 2011/res/toolbar1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/ReClass 2011/res/toolbar1.bmp -------------------------------------------------------------------------------- /ReClass 2011/res/writelarge.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/ReClass 2011/res/writelarge.bmp -------------------------------------------------------------------------------- /ReClass 2011/res/writesmall.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/ReClass 2011/res/writesmall.bmp -------------------------------------------------------------------------------- /ReClass 2011/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/ReClass 2011/resource.h -------------------------------------------------------------------------------- /ReClass 2011/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/ReClass 2011/stdafx.cpp -------------------------------------------------------------------------------- /ReClass 2011/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/ReClass 2011/stdafx.h -------------------------------------------------------------------------------- /ReClass 2011/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/ReClass 2011/targetver.h -------------------------------------------------------------------------------- /ReClass.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/ReClass.sln -------------------------------------------------------------------------------- /SDK/TestPlugin/TestPlugin.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/SDK/TestPlugin/TestPlugin.sln -------------------------------------------------------------------------------- /SDK/TestPlugin/TestPlugin/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/SDK/TestPlugin/TestPlugin/ReadMe.txt -------------------------------------------------------------------------------- /SDK/TestPlugin/TestPlugin/TestPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/SDK/TestPlugin/TestPlugin/TestPlugin.cpp -------------------------------------------------------------------------------- /SDK/TestPlugin/TestPlugin/TestPlugin.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/SDK/TestPlugin/TestPlugin/TestPlugin.vcxproj -------------------------------------------------------------------------------- /SDK/TestPlugin/TestPlugin/TestPlugin.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/SDK/TestPlugin/TestPlugin/TestPlugin.vcxproj.filters -------------------------------------------------------------------------------- /SDK/TestPlugin/TestPlugin/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/SDK/TestPlugin/TestPlugin/dllmain.cpp -------------------------------------------------------------------------------- /SDK/TestPlugin/TestPlugin/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/SDK/TestPlugin/TestPlugin/stdafx.cpp -------------------------------------------------------------------------------- /SDK/TestPlugin/TestPlugin/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/SDK/TestPlugin/TestPlugin/stdafx.h -------------------------------------------------------------------------------- /SDK/TestPlugin/TestPlugin/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/SDK/TestPlugin/TestPlugin/targetver.h -------------------------------------------------------------------------------- /SQLite/CppSQLite3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/SQLite/CppSQLite3.cpp -------------------------------------------------------------------------------- /SQLite/CppSQLite3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/SQLite/CppSQLite3.h -------------------------------------------------------------------------------- /SQLite/shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/SQLite/shell.c -------------------------------------------------------------------------------- /SQLite/sqlite3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/SQLite/sqlite3.c -------------------------------------------------------------------------------- /SQLite/sqlite3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/SQLite/sqlite3.h -------------------------------------------------------------------------------- /SQLite/sqlite3ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/SQLite/sqlite3ext.h -------------------------------------------------------------------------------- /beaengine/beaengine/BeaEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/beaengine/beaengine/BeaEngine.h -------------------------------------------------------------------------------- /beaengine/beaengine/basic_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/beaengine/beaengine/basic_types.h -------------------------------------------------------------------------------- /beaengine/beaengine/export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/beaengine/beaengine/export.h -------------------------------------------------------------------------------- /beaengine/beaengine/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/beaengine/beaengine/macros.h -------------------------------------------------------------------------------- /beaengine/beaengineSources/BeaEngine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/beaengine/beaengineSources/BeaEngine.c -------------------------------------------------------------------------------- /beaengine/beaengineSources/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/beaengine/beaengineSources/CMakeLists.txt -------------------------------------------------------------------------------- /beaengine/beaengineSources/COPYING.LESSER.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/beaengine/beaengineSources/COPYING.LESSER.txt -------------------------------------------------------------------------------- /beaengine/beaengineSources/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/beaengine/beaengineSources/COPYING.txt -------------------------------------------------------------------------------- /beaengine/beaengineSources/Includes/BeaEngineVersion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/beaengine/beaengineSources/Includes/BeaEngineVersion.c -------------------------------------------------------------------------------- /beaengine/beaengineSources/Includes/Routines_Disasm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/beaengine/beaengineSources/Includes/Routines_Disasm.c -------------------------------------------------------------------------------- /beaengine/beaengineSources/Includes/Routines_ModRM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/beaengine/beaengineSources/Includes/Routines_ModRM.c -------------------------------------------------------------------------------- /beaengine/beaengineSources/Includes/instr_set/Data_opcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/beaengine/beaengineSources/Includes/instr_set/Data_opcode.h -------------------------------------------------------------------------------- /beaengine/beaengineSources/Includes/instr_set/opcodes_AES.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/beaengine/beaengineSources/Includes/instr_set/opcodes_AES.c -------------------------------------------------------------------------------- /beaengine/beaengineSources/Includes/instr_set/opcodes_A_M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/beaengine/beaengineSources/Includes/instr_set/opcodes_A_M.c -------------------------------------------------------------------------------- /beaengine/beaengineSources/Includes/instr_set/opcodes_CLMUL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/beaengine/beaengineSources/Includes/instr_set/opcodes_CLMUL.c -------------------------------------------------------------------------------- /beaengine/beaengineSources/Includes/instr_set/opcodes_FPU.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/beaengine/beaengineSources/Includes/instr_set/opcodes_FPU.c -------------------------------------------------------------------------------- /beaengine/beaengineSources/Includes/instr_set/opcodes_Grp1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/beaengine/beaengineSources/Includes/instr_set/opcodes_Grp1.c -------------------------------------------------------------------------------- /beaengine/beaengineSources/Includes/instr_set/opcodes_Grp12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/beaengine/beaengineSources/Includes/instr_set/opcodes_Grp12.c -------------------------------------------------------------------------------- /beaengine/beaengineSources/Includes/instr_set/opcodes_Grp13.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/beaengine/beaengineSources/Includes/instr_set/opcodes_Grp13.c -------------------------------------------------------------------------------- /beaengine/beaengineSources/Includes/instr_set/opcodes_Grp14.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/beaengine/beaengineSources/Includes/instr_set/opcodes_Grp14.c -------------------------------------------------------------------------------- /beaengine/beaengineSources/Includes/instr_set/opcodes_Grp15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/beaengine/beaengineSources/Includes/instr_set/opcodes_Grp15.c -------------------------------------------------------------------------------- /beaengine/beaengineSources/Includes/instr_set/opcodes_Grp16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/beaengine/beaengineSources/Includes/instr_set/opcodes_Grp16.c -------------------------------------------------------------------------------- /beaengine/beaengineSources/Includes/instr_set/opcodes_Grp2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/beaengine/beaengineSources/Includes/instr_set/opcodes_Grp2.c -------------------------------------------------------------------------------- /beaengine/beaengineSources/Includes/instr_set/opcodes_Grp3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/beaengine/beaengineSources/Includes/instr_set/opcodes_Grp3.c -------------------------------------------------------------------------------- /beaengine/beaengineSources/Includes/instr_set/opcodes_Grp4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/beaengine/beaengineSources/Includes/instr_set/opcodes_Grp4.c -------------------------------------------------------------------------------- /beaengine/beaengineSources/Includes/instr_set/opcodes_Grp5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/beaengine/beaengineSources/Includes/instr_set/opcodes_Grp5.c -------------------------------------------------------------------------------- /beaengine/beaengineSources/Includes/instr_set/opcodes_Grp6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/beaengine/beaengineSources/Includes/instr_set/opcodes_Grp6.c -------------------------------------------------------------------------------- /beaengine/beaengineSources/Includes/instr_set/opcodes_Grp7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/beaengine/beaengineSources/Includes/instr_set/opcodes_Grp7.c -------------------------------------------------------------------------------- /beaengine/beaengineSources/Includes/instr_set/opcodes_Grp8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/beaengine/beaengineSources/Includes/instr_set/opcodes_Grp8.c -------------------------------------------------------------------------------- /beaengine/beaengineSources/Includes/instr_set/opcodes_Grp9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/beaengine/beaengineSources/Includes/instr_set/opcodes_Grp9.c -------------------------------------------------------------------------------- /beaengine/beaengineSources/Includes/instr_set/opcodes_MMX.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/beaengine/beaengineSources/Includes/instr_set/opcodes_MMX.c -------------------------------------------------------------------------------- /beaengine/beaengineSources/Includes/instr_set/opcodes_N_Z.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/beaengine/beaengineSources/Includes/instr_set/opcodes_N_Z.c -------------------------------------------------------------------------------- /beaengine/beaengineSources/Includes/instr_set/opcodes_SSE.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/beaengine/beaengineSources/Includes/instr_set/opcodes_SSE.c -------------------------------------------------------------------------------- /beaengine/beaengineSources/Includes/instr_set/opcodes_prefixes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/beaengine/beaengineSources/Includes/instr_set/opcodes_prefixes.c -------------------------------------------------------------------------------- /beaengine/beaengineSources/Includes/internal_datas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/beaengine/beaengineSources/Includes/internal_datas.h -------------------------------------------------------------------------------- /beaengine/beaengineSources/Includes/protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/beaengine/beaengineSources/Includes/protos.h -------------------------------------------------------------------------------- /beaengine/beaengineSources/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/beaengine/beaengineSources/README.txt -------------------------------------------------------------------------------- /bf4_objects.reclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/bf4_objects.reclass -------------------------------------------------------------------------------- /changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/changelog.txt -------------------------------------------------------------------------------- /scintilla/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/License.txt -------------------------------------------------------------------------------- /scintilla/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/README -------------------------------------------------------------------------------- /scintilla/delbin.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/delbin.bat -------------------------------------------------------------------------------- /scintilla/delcvs.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/delcvs.bat -------------------------------------------------------------------------------- /scintilla/doc/Design.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/doc/Design.html -------------------------------------------------------------------------------- /scintilla/doc/Icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/doc/Icons.html -------------------------------------------------------------------------------- /scintilla/doc/Lexer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/doc/Lexer.txt -------------------------------------------------------------------------------- /scintilla/doc/SciBreak.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/doc/SciBreak.jpg -------------------------------------------------------------------------------- /scintilla/doc/SciCoding.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/doc/SciCoding.html -------------------------------------------------------------------------------- /scintilla/doc/SciRest.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/doc/SciRest.jpg -------------------------------------------------------------------------------- /scintilla/doc/SciTEIco.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/doc/SciTEIco.png -------------------------------------------------------------------------------- /scintilla/doc/SciWord.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/doc/SciWord.jpg -------------------------------------------------------------------------------- /scintilla/doc/ScintillaDoc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/doc/ScintillaDoc.html -------------------------------------------------------------------------------- /scintilla/doc/ScintillaDownload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/doc/ScintillaDownload.html -------------------------------------------------------------------------------- /scintilla/doc/ScintillaHistory.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/doc/ScintillaHistory.html -------------------------------------------------------------------------------- /scintilla/doc/ScintillaRelated.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/doc/ScintillaRelated.html -------------------------------------------------------------------------------- /scintilla/doc/ScintillaToDo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/doc/ScintillaToDo.html -------------------------------------------------------------------------------- /scintilla/doc/ScintillaUsage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/doc/ScintillaUsage.html -------------------------------------------------------------------------------- /scintilla/doc/Steps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/doc/Steps.html -------------------------------------------------------------------------------- /scintilla/doc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/doc/index.html -------------------------------------------------------------------------------- /scintilla/gtk/Converter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/gtk/Converter.h -------------------------------------------------------------------------------- /scintilla/gtk/PlatGTK.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/gtk/PlatGTK.cxx -------------------------------------------------------------------------------- /scintilla/gtk/ScintillaGTK.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/gtk/ScintillaGTK.cxx -------------------------------------------------------------------------------- /scintilla/gtk/deps.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/gtk/deps.mak -------------------------------------------------------------------------------- /scintilla/gtk/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/gtk/makefile -------------------------------------------------------------------------------- /scintilla/gtk/scintilla-marshal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/gtk/scintilla-marshal.c -------------------------------------------------------------------------------- /scintilla/gtk/scintilla-marshal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/gtk/scintilla-marshal.h -------------------------------------------------------------------------------- /scintilla/gtk/scintilla-marshal.list: -------------------------------------------------------------------------------- 1 | NONE:INT,POINTER 2 | -------------------------------------------------------------------------------- /scintilla/gtk/scintilla.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/gtk/scintilla.mak -------------------------------------------------------------------------------- /scintilla/include/Accessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/include/Accessor.h -------------------------------------------------------------------------------- /scintilla/include/Face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/include/Face.py -------------------------------------------------------------------------------- /scintilla/include/HFacer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/include/HFacer.py -------------------------------------------------------------------------------- /scintilla/include/KeyWords.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/include/KeyWords.h -------------------------------------------------------------------------------- /scintilla/include/Platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/include/Platform.h -------------------------------------------------------------------------------- /scintilla/include/PropSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/include/PropSet.h -------------------------------------------------------------------------------- /scintilla/include/SString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/include/SString.h -------------------------------------------------------------------------------- /scintilla/include/SciLexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/include/SciLexer.h -------------------------------------------------------------------------------- /scintilla/include/Scintilla.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/include/Scintilla.h -------------------------------------------------------------------------------- /scintilla/include/Scintilla.iface: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/include/Scintilla.iface -------------------------------------------------------------------------------- /scintilla/include/ScintillaWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/include/ScintillaWidget.h -------------------------------------------------------------------------------- /scintilla/include/WindowAccessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/include/WindowAccessor.h -------------------------------------------------------------------------------- /scintilla/src/AutoComplete.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/AutoComplete.cxx -------------------------------------------------------------------------------- /scintilla/src/AutoComplete.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/AutoComplete.h -------------------------------------------------------------------------------- /scintilla/src/CallTip.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/CallTip.cxx -------------------------------------------------------------------------------- /scintilla/src/CallTip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/CallTip.h -------------------------------------------------------------------------------- /scintilla/src/CellBuffer.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/CellBuffer.cxx -------------------------------------------------------------------------------- /scintilla/src/CellBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/CellBuffer.h -------------------------------------------------------------------------------- /scintilla/src/CharClassify.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/CharClassify.cxx -------------------------------------------------------------------------------- /scintilla/src/CharClassify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/CharClassify.h -------------------------------------------------------------------------------- /scintilla/src/ContractionState.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/ContractionState.cxx -------------------------------------------------------------------------------- /scintilla/src/ContractionState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/ContractionState.h -------------------------------------------------------------------------------- /scintilla/src/Document.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/Document.cxx -------------------------------------------------------------------------------- /scintilla/src/Document.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/Document.h -------------------------------------------------------------------------------- /scintilla/src/DocumentAccessor.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/DocumentAccessor.cxx -------------------------------------------------------------------------------- /scintilla/src/DocumentAccessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/DocumentAccessor.h -------------------------------------------------------------------------------- /scintilla/src/Editor.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/Editor.cxx -------------------------------------------------------------------------------- /scintilla/src/Editor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/Editor.h -------------------------------------------------------------------------------- /scintilla/src/ExternalLexer.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/ExternalLexer.cxx -------------------------------------------------------------------------------- /scintilla/src/ExternalLexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/ExternalLexer.h -------------------------------------------------------------------------------- /scintilla/src/Indicator.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/Indicator.cxx -------------------------------------------------------------------------------- /scintilla/src/Indicator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/Indicator.h -------------------------------------------------------------------------------- /scintilla/src/KeyMap.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/KeyMap.cxx -------------------------------------------------------------------------------- /scintilla/src/KeyMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/KeyMap.h -------------------------------------------------------------------------------- /scintilla/src/KeyWords.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/KeyWords.cxx -------------------------------------------------------------------------------- /scintilla/src/LexAPDL.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/LexAPDL.cxx -------------------------------------------------------------------------------- /scintilla/src/LexAU3.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/LexAU3.cxx -------------------------------------------------------------------------------- /scintilla/src/LexAVE.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/LexAVE.cxx -------------------------------------------------------------------------------- /scintilla/src/LexAda.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/LexAda.cxx -------------------------------------------------------------------------------- /scintilla/src/LexAsm.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/LexAsm.cxx -------------------------------------------------------------------------------- /scintilla/src/LexAsn1.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/LexAsn1.cxx -------------------------------------------------------------------------------- /scintilla/src/LexBaan.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/LexBaan.cxx -------------------------------------------------------------------------------- /scintilla/src/LexBash.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/LexBash.cxx -------------------------------------------------------------------------------- /scintilla/src/LexBasic.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/LexBasic.cxx -------------------------------------------------------------------------------- /scintilla/src/LexBullant.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/LexBullant.cxx -------------------------------------------------------------------------------- /scintilla/src/LexCLW.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/LexCLW.cxx -------------------------------------------------------------------------------- /scintilla/src/LexCPP.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/LexCPP.cxx -------------------------------------------------------------------------------- /scintilla/src/LexCSS.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/LexCSS.cxx -------------------------------------------------------------------------------- /scintilla/src/LexCaml.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/LexCaml.cxx -------------------------------------------------------------------------------- /scintilla/src/LexConf.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/LexConf.cxx -------------------------------------------------------------------------------- /scintilla/src/LexCrontab.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/LexCrontab.cxx -------------------------------------------------------------------------------- /scintilla/src/LexCsound.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/LexCsound.cxx -------------------------------------------------------------------------------- /scintilla/src/LexEScript.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/LexEScript.cxx -------------------------------------------------------------------------------- /scintilla/src/LexEiffel.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/LexEiffel.cxx -------------------------------------------------------------------------------- /scintilla/src/LexErlang.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/LexErlang.cxx -------------------------------------------------------------------------------- /scintilla/src/LexFlagship.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/LexFlagship.cxx -------------------------------------------------------------------------------- /scintilla/src/LexForth.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/LexForth.cxx -------------------------------------------------------------------------------- /scintilla/src/LexFortran.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/LexFortran.cxx -------------------------------------------------------------------------------- /scintilla/src/LexGen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/LexGen.py -------------------------------------------------------------------------------- /scintilla/src/LexGui4Cli.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/LexGui4Cli.cxx -------------------------------------------------------------------------------- /scintilla/src/LexHTML.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/LexHTML.cxx -------------------------------------------------------------------------------- /scintilla/src/LexHaskell.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/LexHaskell.cxx -------------------------------------------------------------------------------- /scintilla/src/LexInno.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/LexInno.cxx -------------------------------------------------------------------------------- /scintilla/src/LexKix.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/LexKix.cxx -------------------------------------------------------------------------------- /scintilla/src/LexLisp.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/LexLisp.cxx -------------------------------------------------------------------------------- /scintilla/src/LexLout.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/LexLout.cxx -------------------------------------------------------------------------------- /scintilla/src/LexLua.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/LexLua.cxx -------------------------------------------------------------------------------- /scintilla/src/LexMMIXAL.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/LexMMIXAL.cxx -------------------------------------------------------------------------------- /scintilla/src/LexMPT.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/LexMPT.cxx -------------------------------------------------------------------------------- /scintilla/src/LexMSSQL.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/LexMSSQL.cxx -------------------------------------------------------------------------------- /scintilla/src/LexMatlab.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/LexMatlab.cxx -------------------------------------------------------------------------------- /scintilla/src/LexMetapost.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/LexMetapost.cxx -------------------------------------------------------------------------------- /scintilla/src/LexNsis.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/LexNsis.cxx -------------------------------------------------------------------------------- /scintilla/src/LexOpal.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/LexOpal.cxx -------------------------------------------------------------------------------- /scintilla/src/LexOthers.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/LexOthers.cxx -------------------------------------------------------------------------------- /scintilla/src/LexPB.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/LexPB.cxx -------------------------------------------------------------------------------- /scintilla/src/LexPOV.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/LexPOV.cxx -------------------------------------------------------------------------------- /scintilla/src/LexPS.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/LexPS.cxx -------------------------------------------------------------------------------- /scintilla/src/LexPascal.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/LexPascal.cxx -------------------------------------------------------------------------------- /scintilla/src/LexPerl.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/LexPerl.cxx -------------------------------------------------------------------------------- /scintilla/src/LexPython.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/LexPython.cxx -------------------------------------------------------------------------------- /scintilla/src/LexRebol.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/LexRebol.cxx -------------------------------------------------------------------------------- /scintilla/src/LexRuby.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/LexRuby.cxx -------------------------------------------------------------------------------- /scintilla/src/LexSQL.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/LexSQL.cxx -------------------------------------------------------------------------------- /scintilla/src/LexScriptol.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/LexScriptol.cxx -------------------------------------------------------------------------------- /scintilla/src/LexSmalltalk.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/LexSmalltalk.cxx -------------------------------------------------------------------------------- /scintilla/src/LexSpecman.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/LexSpecman.cxx -------------------------------------------------------------------------------- /scintilla/src/LexSpice.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/LexSpice.cxx -------------------------------------------------------------------------------- /scintilla/src/LexTADS3.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/LexTADS3.cxx -------------------------------------------------------------------------------- /scintilla/src/LexTCL.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/LexTCL.cxx -------------------------------------------------------------------------------- /scintilla/src/LexTeX.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/LexTeX.cxx -------------------------------------------------------------------------------- /scintilla/src/LexVB.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/LexVB.cxx -------------------------------------------------------------------------------- /scintilla/src/LexVHDL.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/LexVHDL.cxx -------------------------------------------------------------------------------- /scintilla/src/LexVerilog.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/LexVerilog.cxx -------------------------------------------------------------------------------- /scintilla/src/LexYAML.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/LexYAML.cxx -------------------------------------------------------------------------------- /scintilla/src/LineMarker.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/LineMarker.cxx -------------------------------------------------------------------------------- /scintilla/src/LineMarker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/LineMarker.h -------------------------------------------------------------------------------- /scintilla/src/PropSet.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/PropSet.cxx -------------------------------------------------------------------------------- /scintilla/src/RESearch.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/RESearch.cxx -------------------------------------------------------------------------------- /scintilla/src/RESearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/RESearch.h -------------------------------------------------------------------------------- /scintilla/src/SVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/SVector.h -------------------------------------------------------------------------------- /scintilla/src/SciTE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/SciTE.properties -------------------------------------------------------------------------------- /scintilla/src/ScintillaBase.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/ScintillaBase.cxx -------------------------------------------------------------------------------- /scintilla/src/ScintillaBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/ScintillaBase.h -------------------------------------------------------------------------------- /scintilla/src/Style.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/Style.cxx -------------------------------------------------------------------------------- /scintilla/src/Style.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/Style.h -------------------------------------------------------------------------------- /scintilla/src/StyleContext.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/StyleContext.cxx -------------------------------------------------------------------------------- /scintilla/src/StyleContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/StyleContext.h -------------------------------------------------------------------------------- /scintilla/src/UniConversion.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/UniConversion.cxx -------------------------------------------------------------------------------- /scintilla/src/UniConversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/UniConversion.h -------------------------------------------------------------------------------- /scintilla/src/ViewStyle.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/ViewStyle.cxx -------------------------------------------------------------------------------- /scintilla/src/ViewStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/ViewStyle.h -------------------------------------------------------------------------------- /scintilla/src/WindowAccessor.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/WindowAccessor.cxx -------------------------------------------------------------------------------- /scintilla/src/XPM.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/XPM.cxx -------------------------------------------------------------------------------- /scintilla/src/XPM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/src/XPM.h -------------------------------------------------------------------------------- /scintilla/tgzsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/tgzsrc -------------------------------------------------------------------------------- /scintilla/vcbuild/SciLexer.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/vcbuild/SciLexer.dsp -------------------------------------------------------------------------------- /scintilla/vcbuild/SciLexer.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/vcbuild/SciLexer.vcxproj -------------------------------------------------------------------------------- /scintilla/vcbuild/SciLexer.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/vcbuild/SciLexer.vcxproj.filters -------------------------------------------------------------------------------- /scintilla/vcbuild/rsp_scintilla.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/vcbuild/rsp_scintilla.txt -------------------------------------------------------------------------------- /scintilla/vcbuild/rsp_scintillad.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/vcbuild/rsp_scintillad.txt -------------------------------------------------------------------------------- /scintilla/version.txt: -------------------------------------------------------------------------------- 1 | 170 2 | -------------------------------------------------------------------------------- /scintilla/win32/Margin.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/win32/Margin.cur -------------------------------------------------------------------------------- /scintilla/win32/PlatWin.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/win32/PlatWin.cxx -------------------------------------------------------------------------------- /scintilla/win32/PlatformRes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/win32/PlatformRes.h -------------------------------------------------------------------------------- /scintilla/win32/SciTE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/win32/SciTE.properties -------------------------------------------------------------------------------- /scintilla/win32/ScintRes.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/win32/ScintRes.rc -------------------------------------------------------------------------------- /scintilla/win32/Scintilla.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | Scintilla_DirectFunction -------------------------------------------------------------------------------- /scintilla/win32/ScintillaWin.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/win32/ScintillaWin.cxx -------------------------------------------------------------------------------- /scintilla/win32/deps.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/win32/deps.mak -------------------------------------------------------------------------------- /scintilla/win32/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/win32/makefile -------------------------------------------------------------------------------- /scintilla/win32/scintilla.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/win32/scintilla.mak -------------------------------------------------------------------------------- /scintilla/win32/scintilla_vc6.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/win32/scintilla_vc6.mak -------------------------------------------------------------------------------- /scintilla/zipsrc.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/scintilla/zipsrc.bat -------------------------------------------------------------------------------- /tinyxml/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/Makefile -------------------------------------------------------------------------------- /tinyxml/changes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/changes.txt -------------------------------------------------------------------------------- /tinyxml/demotest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/demotest.xml -------------------------------------------------------------------------------- /tinyxml/docs/annotated.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/docs/annotated.html -------------------------------------------------------------------------------- /tinyxml/docs/classTiXmlAttribute-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/docs/classTiXmlAttribute-members.html -------------------------------------------------------------------------------- /tinyxml/docs/classTiXmlAttribute.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/docs/classTiXmlAttribute.html -------------------------------------------------------------------------------- /tinyxml/docs/classTiXmlAttribute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/docs/classTiXmlAttribute.png -------------------------------------------------------------------------------- /tinyxml/docs/classTiXmlBase-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/docs/classTiXmlBase-members.html -------------------------------------------------------------------------------- /tinyxml/docs/classTiXmlBase.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/docs/classTiXmlBase.html -------------------------------------------------------------------------------- /tinyxml/docs/classTiXmlBase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/docs/classTiXmlBase.png -------------------------------------------------------------------------------- /tinyxml/docs/classTiXmlComment-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/docs/classTiXmlComment-members.html -------------------------------------------------------------------------------- /tinyxml/docs/classTiXmlComment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/docs/classTiXmlComment.html -------------------------------------------------------------------------------- /tinyxml/docs/classTiXmlComment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/docs/classTiXmlComment.png -------------------------------------------------------------------------------- /tinyxml/docs/classTiXmlDeclaration-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/docs/classTiXmlDeclaration-members.html -------------------------------------------------------------------------------- /tinyxml/docs/classTiXmlDeclaration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/docs/classTiXmlDeclaration.html -------------------------------------------------------------------------------- /tinyxml/docs/classTiXmlDeclaration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/docs/classTiXmlDeclaration.png -------------------------------------------------------------------------------- /tinyxml/docs/classTiXmlDocument-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/docs/classTiXmlDocument-members.html -------------------------------------------------------------------------------- /tinyxml/docs/classTiXmlDocument.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/docs/classTiXmlDocument.html -------------------------------------------------------------------------------- /tinyxml/docs/classTiXmlDocument.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/docs/classTiXmlDocument.png -------------------------------------------------------------------------------- /tinyxml/docs/classTiXmlElement-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/docs/classTiXmlElement-members.html -------------------------------------------------------------------------------- /tinyxml/docs/classTiXmlElement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/docs/classTiXmlElement.html -------------------------------------------------------------------------------- /tinyxml/docs/classTiXmlElement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/docs/classTiXmlElement.png -------------------------------------------------------------------------------- /tinyxml/docs/classTiXmlHandle-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/docs/classTiXmlHandle-members.html -------------------------------------------------------------------------------- /tinyxml/docs/classTiXmlHandle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/docs/classTiXmlHandle.html -------------------------------------------------------------------------------- /tinyxml/docs/classTiXmlNode-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/docs/classTiXmlNode-members.html -------------------------------------------------------------------------------- /tinyxml/docs/classTiXmlNode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/docs/classTiXmlNode.html -------------------------------------------------------------------------------- /tinyxml/docs/classTiXmlNode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/docs/classTiXmlNode.png -------------------------------------------------------------------------------- /tinyxml/docs/classTiXmlPrinter-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/docs/classTiXmlPrinter-members.html -------------------------------------------------------------------------------- /tinyxml/docs/classTiXmlPrinter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/docs/classTiXmlPrinter.html -------------------------------------------------------------------------------- /tinyxml/docs/classTiXmlPrinter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/docs/classTiXmlPrinter.png -------------------------------------------------------------------------------- /tinyxml/docs/classTiXmlText-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/docs/classTiXmlText-members.html -------------------------------------------------------------------------------- /tinyxml/docs/classTiXmlText.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/docs/classTiXmlText.html -------------------------------------------------------------------------------- /tinyxml/docs/classTiXmlText.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/docs/classTiXmlText.png -------------------------------------------------------------------------------- /tinyxml/docs/classTiXmlUnknown-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/docs/classTiXmlUnknown-members.html -------------------------------------------------------------------------------- /tinyxml/docs/classTiXmlUnknown.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/docs/classTiXmlUnknown.html -------------------------------------------------------------------------------- /tinyxml/docs/classTiXmlUnknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/docs/classTiXmlUnknown.png -------------------------------------------------------------------------------- /tinyxml/docs/classTiXmlVisitor-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/docs/classTiXmlVisitor-members.html -------------------------------------------------------------------------------- /tinyxml/docs/classTiXmlVisitor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/docs/classTiXmlVisitor.html -------------------------------------------------------------------------------- /tinyxml/docs/classTiXmlVisitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/docs/classTiXmlVisitor.png -------------------------------------------------------------------------------- /tinyxml/docs/classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/docs/classes.html -------------------------------------------------------------------------------- /tinyxml/docs/deprecated.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/docs/deprecated.html -------------------------------------------------------------------------------- /tinyxml/docs/doxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/docs/doxygen.css -------------------------------------------------------------------------------- /tinyxml/docs/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/docs/doxygen.png -------------------------------------------------------------------------------- /tinyxml/docs/files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/docs/files.html -------------------------------------------------------------------------------- /tinyxml/docs/functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/docs/functions.html -------------------------------------------------------------------------------- /tinyxml/docs/functions_0x63.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/docs/functions_0x63.html -------------------------------------------------------------------------------- /tinyxml/docs/functions_0x64.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/docs/functions_0x64.html -------------------------------------------------------------------------------- /tinyxml/docs/functions_0x65.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/docs/functions_0x65.html -------------------------------------------------------------------------------- /tinyxml/docs/functions_0x66.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/docs/functions_0x66.html -------------------------------------------------------------------------------- /tinyxml/docs/functions_0x67.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/docs/functions_0x67.html -------------------------------------------------------------------------------- /tinyxml/docs/functions_0x69.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/docs/functions_0x69.html -------------------------------------------------------------------------------- /tinyxml/docs/functions_0x6c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/docs/functions_0x6c.html -------------------------------------------------------------------------------- /tinyxml/docs/functions_0x6e.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/docs/functions_0x6e.html -------------------------------------------------------------------------------- /tinyxml/docs/functions_0x6f.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/docs/functions_0x6f.html -------------------------------------------------------------------------------- /tinyxml/docs/functions_0x70.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/docs/functions_0x70.html -------------------------------------------------------------------------------- /tinyxml/docs/functions_0x71.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/docs/functions_0x71.html -------------------------------------------------------------------------------- /tinyxml/docs/functions_0x72.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/docs/functions_0x72.html -------------------------------------------------------------------------------- /tinyxml/docs/functions_0x73.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/docs/functions_0x73.html -------------------------------------------------------------------------------- /tinyxml/docs/functions_0x74.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/docs/functions_0x74.html -------------------------------------------------------------------------------- /tinyxml/docs/functions_0x75.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/docs/functions_0x75.html -------------------------------------------------------------------------------- /tinyxml/docs/functions_0x76.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/docs/functions_0x76.html -------------------------------------------------------------------------------- /tinyxml/docs/functions_enum.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/docs/functions_enum.html -------------------------------------------------------------------------------- /tinyxml/docs/functions_func.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/docs/functions_func.html -------------------------------------------------------------------------------- /tinyxml/docs/functions_func_0x63.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/docs/functions_func_0x63.html -------------------------------------------------------------------------------- /tinyxml/docs/functions_func_0x64.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/docs/functions_func_0x64.html -------------------------------------------------------------------------------- /tinyxml/docs/functions_func_0x65.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/docs/functions_func_0x65.html -------------------------------------------------------------------------------- /tinyxml/docs/functions_func_0x66.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/docs/functions_func_0x66.html -------------------------------------------------------------------------------- /tinyxml/docs/functions_func_0x67.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/docs/functions_func_0x67.html -------------------------------------------------------------------------------- /tinyxml/docs/functions_func_0x69.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/docs/functions_func_0x69.html -------------------------------------------------------------------------------- /tinyxml/docs/functions_func_0x6c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/docs/functions_func_0x6c.html -------------------------------------------------------------------------------- /tinyxml/docs/functions_func_0x6e.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/docs/functions_func_0x6e.html -------------------------------------------------------------------------------- /tinyxml/docs/functions_func_0x70.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/docs/functions_func_0x70.html -------------------------------------------------------------------------------- /tinyxml/docs/functions_func_0x71.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/docs/functions_func_0x71.html -------------------------------------------------------------------------------- /tinyxml/docs/functions_func_0x72.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/docs/functions_func_0x72.html -------------------------------------------------------------------------------- /tinyxml/docs/functions_func_0x73.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/docs/functions_func_0x73.html -------------------------------------------------------------------------------- /tinyxml/docs/functions_func_0x74.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/docs/functions_func_0x74.html -------------------------------------------------------------------------------- /tinyxml/docs/functions_func_0x75.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/docs/functions_func_0x75.html -------------------------------------------------------------------------------- /tinyxml/docs/functions_func_0x76.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/docs/functions_func_0x76.html -------------------------------------------------------------------------------- /tinyxml/docs/functions_rela.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/docs/functions_rela.html -------------------------------------------------------------------------------- /tinyxml/docs/functions_vars.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/docs/functions_vars.html -------------------------------------------------------------------------------- /tinyxml/docs/hierarchy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/docs/hierarchy.html -------------------------------------------------------------------------------- /tinyxml/docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/docs/index.html -------------------------------------------------------------------------------- /tinyxml/docs/pages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/docs/pages.html -------------------------------------------------------------------------------- /tinyxml/docs/tab_b.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/docs/tab_b.gif -------------------------------------------------------------------------------- /tinyxml/docs/tab_l.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/docs/tab_l.gif -------------------------------------------------------------------------------- /tinyxml/docs/tab_r.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/docs/tab_r.gif -------------------------------------------------------------------------------- /tinyxml/docs/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/docs/tabs.css -------------------------------------------------------------------------------- /tinyxml/docs/tinystr_8h_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/docs/tinystr_8h_source.html -------------------------------------------------------------------------------- /tinyxml/docs/tinyxml_8h_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/docs/tinyxml_8h_source.html -------------------------------------------------------------------------------- /tinyxml/docs/tutorial0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/docs/tutorial0.html -------------------------------------------------------------------------------- /tinyxml/echo.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/echo.dsp -------------------------------------------------------------------------------- /tinyxml/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/readme.txt -------------------------------------------------------------------------------- /tinyxml/test5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/test5.xml -------------------------------------------------------------------------------- /tinyxml/test6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/test6.xml -------------------------------------------------------------------------------- /tinyxml/test7.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/test7.xml -------------------------------------------------------------------------------- /tinyxml/textfile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/textfile.txt -------------------------------------------------------------------------------- /tinyxml/tinyXmlTest.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/tinyXmlTest.dsp -------------------------------------------------------------------------------- /tinyxml/tinyXmlTest.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/tinyXmlTest.vcproj -------------------------------------------------------------------------------- /tinyxml/tinyXmlTest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/tinyXmlTest.vcxproj -------------------------------------------------------------------------------- /tinyxml/tinyXmlTestSTL.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/tinyXmlTestSTL.dsp -------------------------------------------------------------------------------- /tinyxml/tinyXmlTestSTL.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/tinyXmlTestSTL.vcproj -------------------------------------------------------------------------------- /tinyxml/tinyXmlTestSTL.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/tinyXmlTestSTL.vcxproj -------------------------------------------------------------------------------- /tinyxml/tinystr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/tinystr.cpp -------------------------------------------------------------------------------- /tinyxml/tinystr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/tinystr.h -------------------------------------------------------------------------------- /tinyxml/tinyxml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/tinyxml.cpp -------------------------------------------------------------------------------- /tinyxml/tinyxml.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/tinyxml.dsw -------------------------------------------------------------------------------- /tinyxml/tinyxml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/tinyxml.h -------------------------------------------------------------------------------- /tinyxml/tinyxml.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/tinyxml.sln -------------------------------------------------------------------------------- /tinyxml/tinyxmlSTL.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/tinyxmlSTL.dsp -------------------------------------------------------------------------------- /tinyxml/tinyxmlSTL.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/tinyxmlSTL.vcproj -------------------------------------------------------------------------------- /tinyxml/tinyxmlSTL.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/tinyxmlSTL.vcxproj -------------------------------------------------------------------------------- /tinyxml/tinyxmlSTL.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/tinyxmlSTL.vcxproj.filters -------------------------------------------------------------------------------- /tinyxml/tinyxml_lib.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/tinyxml_lib.dsp -------------------------------------------------------------------------------- /tinyxml/tinyxml_lib.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/tinyxml_lib.vcproj -------------------------------------------------------------------------------- /tinyxml/tinyxml_lib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/tinyxml_lib.vcxproj -------------------------------------------------------------------------------- /tinyxml/tinyxml_lib.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/tinyxml_lib.vcxproj.filters -------------------------------------------------------------------------------- /tinyxml/tinyxmlerror.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/tinyxmlerror.cpp -------------------------------------------------------------------------------- /tinyxml/tinyxmlparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/tinyxmlparser.cpp -------------------------------------------------------------------------------- /tinyxml/utf8test.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/utf8test.gif -------------------------------------------------------------------------------- /tinyxml/utf8test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/utf8test.xml -------------------------------------------------------------------------------- /tinyxml/utf8testout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/utf8testout.xml -------------------------------------------------------------------------------- /tinyxml/utf8testverify.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/utf8testverify.xml -------------------------------------------------------------------------------- /tinyxml/xmltest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IChooseYou/Reclass64/HEAD/tinyxml/xmltest.cpp --------------------------------------------------------------------------------