├── .github └── FUNDING.yml ├── CHANGELOG.txt ├── Examples ├── Examples.sln ├── Patcher Example │ ├── Patcher Example.vcxproj │ ├── Patcher Example.vcxproj.filters │ ├── Resources │ │ ├── KUKURYDZ.XM │ │ ├── backup.png │ │ ├── bit1.fon │ │ ├── cursor.cur │ │ ├── exit.png │ │ ├── frame.png │ │ ├── icon.ico │ │ ├── music.png │ │ ├── patch.png │ │ └── template.xml │ ├── main.cpp │ ├── resource.h │ └── resources.rc ├── Runtime Example │ ├── Runtime Example.vcxproj │ ├── Runtime Example.vcxproj.filters │ ├── main.cpp │ ├── resource.h │ ├── resources.rc │ └── resources │ │ ├── KUKURYDZ.XM │ │ ├── backup.png │ │ ├── bit1.fon │ │ ├── cursor.cur │ │ ├── exit.png │ │ ├── frame.png │ │ ├── icon.ico │ │ ├── music.png │ │ └── patch.png └── Win32 Example │ ├── Win32 Example.vcxproj │ ├── Win32 Example.vcxproj.filters │ ├── main.cpp │ ├── resource.h │ ├── resources.rc │ └── resources │ ├── KUKURYDZ.XM │ ├── bit1.fon │ ├── copy.png │ ├── copy.psd │ ├── crystal_clear_arrow.cur │ ├── exit.png │ ├── exit.psd │ ├── frame.png │ ├── frame.psd │ ├── music.png │ ├── music.psd │ ├── snd.ico │ └── template.xml ├── LICENSE.md ├── README.md ├── lib ├── patchLibv3.lib └── patchLibv3d.lib ├── patchLibv3.sln ├── patchLibv3 ├── alphablend │ ├── Exports.def │ ├── alphablend.asm │ ├── alphablend.h │ ├── alphablend.lib │ └── build.bat ├── include │ ├── CButton.h │ ├── CChild.h │ ├── CLabel.h │ ├── CMusic.h │ ├── CScroller.h │ ├── CUrl.h │ ├── CWindow.h │ └── imagehelper.h ├── patchLib.h ├── patchLibv3.vcxproj ├── patchLibv3.vcxproj.filters ├── pnglib │ ├── PNGlib.h │ ├── pnglib.lib │ └── readme.txt ├── src │ ├── CButton.cpp │ ├── CChild.cpp │ ├── CLabel.cpp │ ├── CMusic.cpp │ ├── CPatchLib.cpp │ ├── CScroller.cpp │ ├── CUrl.cpp │ └── CWindow.cpp ├── tinyxml │ ├── changes.txt │ ├── 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 │ ├── readme.txt │ ├── tinystr.cpp │ ├── tinystr.h │ ├── tinyxml.cpp │ ├── tinyxml.h │ ├── tinyxmlerror.cpp │ └── tinyxmlparser.cpp └── ufmod │ ├── ufmod.h │ └── ufmod.obj ├── releases ├── patchLib-1.1.rar ├── patchLibv2.rar ├── patchLibv3.1.7z └── patchLibv3.7z └── repo ├── launcher1.png ├── launcher2.png ├── patcher1.png ├── patcher2.png ├── win32ctrls1.png └── win32ctrls2.png /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /CHANGELOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/CHANGELOG.txt -------------------------------------------------------------------------------- /Examples/Examples.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/Examples/Examples.sln -------------------------------------------------------------------------------- /Examples/Patcher Example/Patcher Example.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/Examples/Patcher Example/Patcher Example.vcxproj -------------------------------------------------------------------------------- /Examples/Patcher Example/Patcher Example.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/Examples/Patcher Example/Patcher Example.vcxproj.filters -------------------------------------------------------------------------------- /Examples/Patcher Example/Resources/KUKURYDZ.XM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/Examples/Patcher Example/Resources/KUKURYDZ.XM -------------------------------------------------------------------------------- /Examples/Patcher Example/Resources/backup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/Examples/Patcher Example/Resources/backup.png -------------------------------------------------------------------------------- /Examples/Patcher Example/Resources/bit1.fon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/Examples/Patcher Example/Resources/bit1.fon -------------------------------------------------------------------------------- /Examples/Patcher Example/Resources/cursor.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/Examples/Patcher Example/Resources/cursor.cur -------------------------------------------------------------------------------- /Examples/Patcher Example/Resources/exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/Examples/Patcher Example/Resources/exit.png -------------------------------------------------------------------------------- /Examples/Patcher Example/Resources/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/Examples/Patcher Example/Resources/frame.png -------------------------------------------------------------------------------- /Examples/Patcher Example/Resources/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/Examples/Patcher Example/Resources/icon.ico -------------------------------------------------------------------------------- /Examples/Patcher Example/Resources/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/Examples/Patcher Example/Resources/music.png -------------------------------------------------------------------------------- /Examples/Patcher Example/Resources/patch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/Examples/Patcher Example/Resources/patch.png -------------------------------------------------------------------------------- /Examples/Patcher Example/Resources/template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/Examples/Patcher Example/Resources/template.xml -------------------------------------------------------------------------------- /Examples/Patcher Example/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/Examples/Patcher Example/main.cpp -------------------------------------------------------------------------------- /Examples/Patcher Example/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/Examples/Patcher Example/resource.h -------------------------------------------------------------------------------- /Examples/Patcher Example/resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/Examples/Patcher Example/resources.rc -------------------------------------------------------------------------------- /Examples/Runtime Example/Runtime Example.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/Examples/Runtime Example/Runtime Example.vcxproj -------------------------------------------------------------------------------- /Examples/Runtime Example/Runtime Example.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/Examples/Runtime Example/Runtime Example.vcxproj.filters -------------------------------------------------------------------------------- /Examples/Runtime Example/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/Examples/Runtime Example/main.cpp -------------------------------------------------------------------------------- /Examples/Runtime Example/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/Examples/Runtime Example/resource.h -------------------------------------------------------------------------------- /Examples/Runtime Example/resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/Examples/Runtime Example/resources.rc -------------------------------------------------------------------------------- /Examples/Runtime Example/resources/KUKURYDZ.XM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/Examples/Runtime Example/resources/KUKURYDZ.XM -------------------------------------------------------------------------------- /Examples/Runtime Example/resources/backup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/Examples/Runtime Example/resources/backup.png -------------------------------------------------------------------------------- /Examples/Runtime Example/resources/bit1.fon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/Examples/Runtime Example/resources/bit1.fon -------------------------------------------------------------------------------- /Examples/Runtime Example/resources/cursor.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/Examples/Runtime Example/resources/cursor.cur -------------------------------------------------------------------------------- /Examples/Runtime Example/resources/exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/Examples/Runtime Example/resources/exit.png -------------------------------------------------------------------------------- /Examples/Runtime Example/resources/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/Examples/Runtime Example/resources/frame.png -------------------------------------------------------------------------------- /Examples/Runtime Example/resources/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/Examples/Runtime Example/resources/icon.ico -------------------------------------------------------------------------------- /Examples/Runtime Example/resources/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/Examples/Runtime Example/resources/music.png -------------------------------------------------------------------------------- /Examples/Runtime Example/resources/patch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/Examples/Runtime Example/resources/patch.png -------------------------------------------------------------------------------- /Examples/Win32 Example/Win32 Example.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/Examples/Win32 Example/Win32 Example.vcxproj -------------------------------------------------------------------------------- /Examples/Win32 Example/Win32 Example.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/Examples/Win32 Example/Win32 Example.vcxproj.filters -------------------------------------------------------------------------------- /Examples/Win32 Example/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/Examples/Win32 Example/main.cpp -------------------------------------------------------------------------------- /Examples/Win32 Example/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/Examples/Win32 Example/resource.h -------------------------------------------------------------------------------- /Examples/Win32 Example/resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/Examples/Win32 Example/resources.rc -------------------------------------------------------------------------------- /Examples/Win32 Example/resources/KUKURYDZ.XM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/Examples/Win32 Example/resources/KUKURYDZ.XM -------------------------------------------------------------------------------- /Examples/Win32 Example/resources/bit1.fon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/Examples/Win32 Example/resources/bit1.fon -------------------------------------------------------------------------------- /Examples/Win32 Example/resources/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/Examples/Win32 Example/resources/copy.png -------------------------------------------------------------------------------- /Examples/Win32 Example/resources/copy.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/Examples/Win32 Example/resources/copy.psd -------------------------------------------------------------------------------- /Examples/Win32 Example/resources/crystal_clear_arrow.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/Examples/Win32 Example/resources/crystal_clear_arrow.cur -------------------------------------------------------------------------------- /Examples/Win32 Example/resources/exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/Examples/Win32 Example/resources/exit.png -------------------------------------------------------------------------------- /Examples/Win32 Example/resources/exit.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/Examples/Win32 Example/resources/exit.psd -------------------------------------------------------------------------------- /Examples/Win32 Example/resources/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/Examples/Win32 Example/resources/frame.png -------------------------------------------------------------------------------- /Examples/Win32 Example/resources/frame.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/Examples/Win32 Example/resources/frame.psd -------------------------------------------------------------------------------- /Examples/Win32 Example/resources/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/Examples/Win32 Example/resources/music.png -------------------------------------------------------------------------------- /Examples/Win32 Example/resources/music.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/Examples/Win32 Example/resources/music.psd -------------------------------------------------------------------------------- /Examples/Win32 Example/resources/snd.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/Examples/Win32 Example/resources/snd.ico -------------------------------------------------------------------------------- /Examples/Win32 Example/resources/template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/Examples/Win32 Example/resources/template.xml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/README.md -------------------------------------------------------------------------------- /lib/patchLibv3.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/lib/patchLibv3.lib -------------------------------------------------------------------------------- /lib/patchLibv3d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/lib/patchLibv3d.lib -------------------------------------------------------------------------------- /patchLibv3.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3.sln -------------------------------------------------------------------------------- /patchLibv3/alphablend/Exports.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/alphablend/Exports.def -------------------------------------------------------------------------------- /patchLibv3/alphablend/alphablend.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/alphablend/alphablend.asm -------------------------------------------------------------------------------- /patchLibv3/alphablend/alphablend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/alphablend/alphablend.h -------------------------------------------------------------------------------- /patchLibv3/alphablend/alphablend.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/alphablend/alphablend.lib -------------------------------------------------------------------------------- /patchLibv3/alphablend/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/alphablend/build.bat -------------------------------------------------------------------------------- /patchLibv3/include/CButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/include/CButton.h -------------------------------------------------------------------------------- /patchLibv3/include/CChild.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/include/CChild.h -------------------------------------------------------------------------------- /patchLibv3/include/CLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/include/CLabel.h -------------------------------------------------------------------------------- /patchLibv3/include/CMusic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/include/CMusic.h -------------------------------------------------------------------------------- /patchLibv3/include/CScroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/include/CScroller.h -------------------------------------------------------------------------------- /patchLibv3/include/CUrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/include/CUrl.h -------------------------------------------------------------------------------- /patchLibv3/include/CWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/include/CWindow.h -------------------------------------------------------------------------------- /patchLibv3/include/imagehelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/include/imagehelper.h -------------------------------------------------------------------------------- /patchLibv3/patchLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/patchLib.h -------------------------------------------------------------------------------- /patchLibv3/patchLibv3.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/patchLibv3.vcxproj -------------------------------------------------------------------------------- /patchLibv3/patchLibv3.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/patchLibv3.vcxproj.filters -------------------------------------------------------------------------------- /patchLibv3/pnglib/PNGlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/pnglib/PNGlib.h -------------------------------------------------------------------------------- /patchLibv3/pnglib/pnglib.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/pnglib/pnglib.lib -------------------------------------------------------------------------------- /patchLibv3/pnglib/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/pnglib/readme.txt -------------------------------------------------------------------------------- /patchLibv3/src/CButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/src/CButton.cpp -------------------------------------------------------------------------------- /patchLibv3/src/CChild.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/src/CChild.cpp -------------------------------------------------------------------------------- /patchLibv3/src/CLabel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/src/CLabel.cpp -------------------------------------------------------------------------------- /patchLibv3/src/CMusic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/src/CMusic.cpp -------------------------------------------------------------------------------- /patchLibv3/src/CPatchLib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/src/CPatchLib.cpp -------------------------------------------------------------------------------- /patchLibv3/src/CScroller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/src/CScroller.cpp -------------------------------------------------------------------------------- /patchLibv3/src/CUrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/src/CUrl.cpp -------------------------------------------------------------------------------- /patchLibv3/src/CWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/src/CWindow.cpp -------------------------------------------------------------------------------- /patchLibv3/tinyxml/changes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/tinyxml/changes.txt -------------------------------------------------------------------------------- /patchLibv3/tinyxml/docs/annotated.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/tinyxml/docs/annotated.html -------------------------------------------------------------------------------- /patchLibv3/tinyxml/docs/classTiXmlAttribute-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/tinyxml/docs/classTiXmlAttribute-members.html -------------------------------------------------------------------------------- /patchLibv3/tinyxml/docs/classTiXmlAttribute.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/tinyxml/docs/classTiXmlAttribute.html -------------------------------------------------------------------------------- /patchLibv3/tinyxml/docs/classTiXmlAttribute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/tinyxml/docs/classTiXmlAttribute.png -------------------------------------------------------------------------------- /patchLibv3/tinyxml/docs/classTiXmlBase-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/tinyxml/docs/classTiXmlBase-members.html -------------------------------------------------------------------------------- /patchLibv3/tinyxml/docs/classTiXmlBase.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/tinyxml/docs/classTiXmlBase.html -------------------------------------------------------------------------------- /patchLibv3/tinyxml/docs/classTiXmlBase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/tinyxml/docs/classTiXmlBase.png -------------------------------------------------------------------------------- /patchLibv3/tinyxml/docs/classTiXmlComment-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/tinyxml/docs/classTiXmlComment-members.html -------------------------------------------------------------------------------- /patchLibv3/tinyxml/docs/classTiXmlComment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/tinyxml/docs/classTiXmlComment.html -------------------------------------------------------------------------------- /patchLibv3/tinyxml/docs/classTiXmlComment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/tinyxml/docs/classTiXmlComment.png -------------------------------------------------------------------------------- /patchLibv3/tinyxml/docs/classTiXmlDeclaration-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/tinyxml/docs/classTiXmlDeclaration-members.html -------------------------------------------------------------------------------- /patchLibv3/tinyxml/docs/classTiXmlDeclaration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/tinyxml/docs/classTiXmlDeclaration.html -------------------------------------------------------------------------------- /patchLibv3/tinyxml/docs/classTiXmlDeclaration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/tinyxml/docs/classTiXmlDeclaration.png -------------------------------------------------------------------------------- /patchLibv3/tinyxml/docs/classTiXmlDocument-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/tinyxml/docs/classTiXmlDocument-members.html -------------------------------------------------------------------------------- /patchLibv3/tinyxml/docs/classTiXmlDocument.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/tinyxml/docs/classTiXmlDocument.html -------------------------------------------------------------------------------- /patchLibv3/tinyxml/docs/classTiXmlDocument.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/tinyxml/docs/classTiXmlDocument.png -------------------------------------------------------------------------------- /patchLibv3/tinyxml/docs/classTiXmlElement-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/tinyxml/docs/classTiXmlElement-members.html -------------------------------------------------------------------------------- /patchLibv3/tinyxml/docs/classTiXmlElement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/tinyxml/docs/classTiXmlElement.html -------------------------------------------------------------------------------- /patchLibv3/tinyxml/docs/classTiXmlElement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/tinyxml/docs/classTiXmlElement.png -------------------------------------------------------------------------------- /patchLibv3/tinyxml/docs/classTiXmlHandle-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/tinyxml/docs/classTiXmlHandle-members.html -------------------------------------------------------------------------------- /patchLibv3/tinyxml/docs/classTiXmlHandle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/tinyxml/docs/classTiXmlHandle.html -------------------------------------------------------------------------------- /patchLibv3/tinyxml/docs/classTiXmlNode-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/tinyxml/docs/classTiXmlNode-members.html -------------------------------------------------------------------------------- /patchLibv3/tinyxml/docs/classTiXmlNode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/tinyxml/docs/classTiXmlNode.html -------------------------------------------------------------------------------- /patchLibv3/tinyxml/docs/classTiXmlNode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/tinyxml/docs/classTiXmlNode.png -------------------------------------------------------------------------------- /patchLibv3/tinyxml/docs/classTiXmlPrinter-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/tinyxml/docs/classTiXmlPrinter-members.html -------------------------------------------------------------------------------- /patchLibv3/tinyxml/docs/classTiXmlPrinter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/tinyxml/docs/classTiXmlPrinter.html -------------------------------------------------------------------------------- /patchLibv3/tinyxml/docs/classTiXmlPrinter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/tinyxml/docs/classTiXmlPrinter.png -------------------------------------------------------------------------------- /patchLibv3/tinyxml/docs/classTiXmlText-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/tinyxml/docs/classTiXmlText-members.html -------------------------------------------------------------------------------- /patchLibv3/tinyxml/docs/classTiXmlText.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/tinyxml/docs/classTiXmlText.html -------------------------------------------------------------------------------- /patchLibv3/tinyxml/docs/classTiXmlText.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/tinyxml/docs/classTiXmlText.png -------------------------------------------------------------------------------- /patchLibv3/tinyxml/docs/classTiXmlUnknown-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/tinyxml/docs/classTiXmlUnknown-members.html -------------------------------------------------------------------------------- /patchLibv3/tinyxml/docs/classTiXmlUnknown.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/tinyxml/docs/classTiXmlUnknown.html -------------------------------------------------------------------------------- /patchLibv3/tinyxml/docs/classTiXmlUnknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/tinyxml/docs/classTiXmlUnknown.png -------------------------------------------------------------------------------- /patchLibv3/tinyxml/docs/classTiXmlVisitor-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/tinyxml/docs/classTiXmlVisitor-members.html -------------------------------------------------------------------------------- /patchLibv3/tinyxml/docs/classTiXmlVisitor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/tinyxml/docs/classTiXmlVisitor.html -------------------------------------------------------------------------------- /patchLibv3/tinyxml/docs/classTiXmlVisitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/tinyxml/docs/classTiXmlVisitor.png -------------------------------------------------------------------------------- /patchLibv3/tinyxml/docs/classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/tinyxml/docs/classes.html -------------------------------------------------------------------------------- /patchLibv3/tinyxml/docs/deprecated.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/tinyxml/docs/deprecated.html -------------------------------------------------------------------------------- /patchLibv3/tinyxml/docs/doxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/tinyxml/docs/doxygen.css -------------------------------------------------------------------------------- /patchLibv3/tinyxml/docs/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/tinyxml/docs/doxygen.png -------------------------------------------------------------------------------- /patchLibv3/tinyxml/docs/files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/tinyxml/docs/files.html -------------------------------------------------------------------------------- /patchLibv3/tinyxml/docs/functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/tinyxml/docs/functions.html -------------------------------------------------------------------------------- /patchLibv3/tinyxml/docs/functions_0x63.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/tinyxml/docs/functions_0x63.html -------------------------------------------------------------------------------- /patchLibv3/tinyxml/docs/functions_0x64.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/tinyxml/docs/functions_0x64.html -------------------------------------------------------------------------------- /patchLibv3/tinyxml/docs/functions_0x65.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/tinyxml/docs/functions_0x65.html -------------------------------------------------------------------------------- /patchLibv3/tinyxml/docs/functions_0x66.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/tinyxml/docs/functions_0x66.html -------------------------------------------------------------------------------- /patchLibv3/tinyxml/docs/functions_0x67.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/tinyxml/docs/functions_0x67.html -------------------------------------------------------------------------------- /patchLibv3/tinyxml/docs/functions_0x69.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/tinyxml/docs/functions_0x69.html -------------------------------------------------------------------------------- /patchLibv3/tinyxml/docs/functions_0x6c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/tinyxml/docs/functions_0x6c.html -------------------------------------------------------------------------------- /patchLibv3/tinyxml/docs/functions_0x6e.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/tinyxml/docs/functions_0x6e.html -------------------------------------------------------------------------------- /patchLibv3/tinyxml/docs/functions_0x6f.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/tinyxml/docs/functions_0x6f.html -------------------------------------------------------------------------------- /patchLibv3/tinyxml/docs/functions_0x70.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/tinyxml/docs/functions_0x70.html -------------------------------------------------------------------------------- /patchLibv3/tinyxml/docs/functions_0x71.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/tinyxml/docs/functions_0x71.html -------------------------------------------------------------------------------- /patchLibv3/tinyxml/docs/functions_0x72.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/tinyxml/docs/functions_0x72.html -------------------------------------------------------------------------------- /patchLibv3/tinyxml/docs/functions_0x73.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/tinyxml/docs/functions_0x73.html -------------------------------------------------------------------------------- /patchLibv3/tinyxml/docs/functions_0x74.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/tinyxml/docs/functions_0x74.html -------------------------------------------------------------------------------- /patchLibv3/tinyxml/docs/functions_0x75.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/tinyxml/docs/functions_0x75.html -------------------------------------------------------------------------------- /patchLibv3/tinyxml/docs/functions_0x76.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/tinyxml/docs/functions_0x76.html -------------------------------------------------------------------------------- /patchLibv3/tinyxml/docs/functions_enum.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/tinyxml/docs/functions_enum.html -------------------------------------------------------------------------------- /patchLibv3/tinyxml/docs/functions_func.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/tinyxml/docs/functions_func.html -------------------------------------------------------------------------------- /patchLibv3/tinyxml/docs/functions_func_0x63.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/tinyxml/docs/functions_func_0x63.html -------------------------------------------------------------------------------- /patchLibv3/tinyxml/docs/functions_func_0x64.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/tinyxml/docs/functions_func_0x64.html -------------------------------------------------------------------------------- /patchLibv3/tinyxml/docs/functions_func_0x65.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/tinyxml/docs/functions_func_0x65.html -------------------------------------------------------------------------------- /patchLibv3/tinyxml/docs/functions_func_0x66.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/tinyxml/docs/functions_func_0x66.html -------------------------------------------------------------------------------- /patchLibv3/tinyxml/docs/functions_func_0x67.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/tinyxml/docs/functions_func_0x67.html -------------------------------------------------------------------------------- /patchLibv3/tinyxml/docs/functions_func_0x69.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/tinyxml/docs/functions_func_0x69.html -------------------------------------------------------------------------------- /patchLibv3/tinyxml/docs/functions_func_0x6c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/tinyxml/docs/functions_func_0x6c.html -------------------------------------------------------------------------------- /patchLibv3/tinyxml/docs/functions_func_0x6e.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/tinyxml/docs/functions_func_0x6e.html -------------------------------------------------------------------------------- /patchLibv3/tinyxml/docs/functions_func_0x70.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/tinyxml/docs/functions_func_0x70.html -------------------------------------------------------------------------------- /patchLibv3/tinyxml/docs/functions_func_0x71.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/tinyxml/docs/functions_func_0x71.html -------------------------------------------------------------------------------- /patchLibv3/tinyxml/docs/functions_func_0x72.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/tinyxml/docs/functions_func_0x72.html -------------------------------------------------------------------------------- /patchLibv3/tinyxml/docs/functions_func_0x73.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/tinyxml/docs/functions_func_0x73.html -------------------------------------------------------------------------------- /patchLibv3/tinyxml/docs/functions_func_0x74.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/tinyxml/docs/functions_func_0x74.html -------------------------------------------------------------------------------- /patchLibv3/tinyxml/docs/functions_func_0x75.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/tinyxml/docs/functions_func_0x75.html -------------------------------------------------------------------------------- /patchLibv3/tinyxml/docs/functions_func_0x76.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/tinyxml/docs/functions_func_0x76.html -------------------------------------------------------------------------------- /patchLibv3/tinyxml/docs/functions_rela.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/tinyxml/docs/functions_rela.html -------------------------------------------------------------------------------- /patchLibv3/tinyxml/docs/functions_vars.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/tinyxml/docs/functions_vars.html -------------------------------------------------------------------------------- /patchLibv3/tinyxml/docs/hierarchy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/tinyxml/docs/hierarchy.html -------------------------------------------------------------------------------- /patchLibv3/tinyxml/docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/tinyxml/docs/index.html -------------------------------------------------------------------------------- /patchLibv3/tinyxml/docs/pages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/tinyxml/docs/pages.html -------------------------------------------------------------------------------- /patchLibv3/tinyxml/docs/tab_b.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/tinyxml/docs/tab_b.gif -------------------------------------------------------------------------------- /patchLibv3/tinyxml/docs/tab_l.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/tinyxml/docs/tab_l.gif -------------------------------------------------------------------------------- /patchLibv3/tinyxml/docs/tab_r.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/tinyxml/docs/tab_r.gif -------------------------------------------------------------------------------- /patchLibv3/tinyxml/docs/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/tinyxml/docs/tabs.css -------------------------------------------------------------------------------- /patchLibv3/tinyxml/docs/tinystr_8h_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/tinyxml/docs/tinystr_8h_source.html -------------------------------------------------------------------------------- /patchLibv3/tinyxml/docs/tinyxml_8h_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/tinyxml/docs/tinyxml_8h_source.html -------------------------------------------------------------------------------- /patchLibv3/tinyxml/docs/tutorial0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/tinyxml/docs/tutorial0.html -------------------------------------------------------------------------------- /patchLibv3/tinyxml/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/tinyxml/readme.txt -------------------------------------------------------------------------------- /patchLibv3/tinyxml/tinystr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/tinyxml/tinystr.cpp -------------------------------------------------------------------------------- /patchLibv3/tinyxml/tinystr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/tinyxml/tinystr.h -------------------------------------------------------------------------------- /patchLibv3/tinyxml/tinyxml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/tinyxml/tinyxml.cpp -------------------------------------------------------------------------------- /patchLibv3/tinyxml/tinyxml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/tinyxml/tinyxml.h -------------------------------------------------------------------------------- /patchLibv3/tinyxml/tinyxmlerror.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/tinyxml/tinyxmlerror.cpp -------------------------------------------------------------------------------- /patchLibv3/tinyxml/tinyxmlparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/tinyxml/tinyxmlparser.cpp -------------------------------------------------------------------------------- /patchLibv3/ufmod/ufmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/ufmod/ufmod.h -------------------------------------------------------------------------------- /patchLibv3/ufmod/ufmod.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/patchLibv3/ufmod/ufmod.obj -------------------------------------------------------------------------------- /releases/patchLib-1.1.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/releases/patchLib-1.1.rar -------------------------------------------------------------------------------- /releases/patchLibv2.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/releases/patchLibv2.rar -------------------------------------------------------------------------------- /releases/patchLibv3.1.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/releases/patchLibv3.1.7z -------------------------------------------------------------------------------- /releases/patchLibv3.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/releases/patchLibv3.7z -------------------------------------------------------------------------------- /repo/launcher1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/repo/launcher1.png -------------------------------------------------------------------------------- /repo/launcher2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/repo/launcher2.png -------------------------------------------------------------------------------- /repo/patcher1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/repo/patcher1.png -------------------------------------------------------------------------------- /repo/patcher2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/repo/patcher2.png -------------------------------------------------------------------------------- /repo/win32ctrls1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/repo/win32ctrls1.png -------------------------------------------------------------------------------- /repo/win32ctrls2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom0s/patchLib/HEAD/repo/win32ctrls2.png --------------------------------------------------------------------------------