├── FakeSkype.ncb ├── FakeSkype.sln ├── FakeSkype.suo ├── FakeSkype ├── ChatManager.cpp ├── ChatManager.h ├── Cipher.cpp ├── Cipher.h ├── CodeDepository.txt ├── CommentedCodeFakeSkype.cpp ├── Common.cpp ├── Common.h ├── Connection.cpp ├── Connection.h ├── ConsoleLogger │ ├── ConsoleLogger.h │ ├── ConsoleLogger.lib │ ├── ConsoleLogger.obj │ └── ConsoleLoggerHelper.exe ├── Copie de Presence.cpp ├── Debug │ ├── BuildLog.htm │ ├── Cipher.obj │ ├── DefineFunction.obj │ ├── FakeSkype.exe.embed.manifest │ ├── FakeSkype.exe.embed.manifest.res │ ├── FakeSkype.exe.intermediate.manifest │ ├── FakeSkype.obj │ ├── FakeSkype.pch │ ├── HostScan.obj │ ├── InitVector.obj │ ├── Random.obj │ ├── crc32.obj │ ├── mt.dep │ ├── showmem.obj │ ├── stdafx.obj │ ├── vc80.idb │ └── vc80.pdb ├── DefineFunction.cpp ├── DirBlobManager.cpp ├── DirBlobManager.h ├── Events.cpp ├── Events.h ├── FakeSkype.cpp ├── FakeSkype.vcproj ├── FakeSkype.vcproj.MAINFRAME.Administrateur.user ├── FakeSkype.vcproj.WENGO-MAINFRAME.Administrateur.user ├── HostScan.cpp ├── HostScan.h ├── InitVector.cpp ├── InitVector.h ├── LocalNode.cpp ├── LocalNode.h ├── Login.cpp ├── Login.h ├── OOLDObjects.cpp ├── Objects.cpp ├── Objects.h ├── ParentNode.cpp ├── ParentNode.h ├── Presence.cpp ├── Presence.h ├── Query.cpp ├── Query.h ├── Random.cpp ├── Random.h ├── ReadMe.txt ├── Release │ ├── BuildLog.htm │ ├── Cipher.obj │ ├── Common.obj │ ├── DefineFunction.obj │ ├── DirBlobManager.obj │ ├── Events.obj │ ├── FakeSkype.exe.embed.manifest │ ├── FakeSkype.exe.embed.manifest.res │ ├── FakeSkype.exe.intermediate.manifest │ ├── FakeSkype.obj │ ├── FakeSkype.pch │ ├── HostScan.obj │ ├── InitVector.obj │ ├── LocalNode.obj │ ├── Login.obj │ ├── Objects.obj │ ├── ParentNode.obj │ ├── Presence.obj │ ├── Query.obj │ ├── Random.obj │ ├── ResponseManager.obj │ ├── SearchContacts.obj │ ├── SessionCMDManager.obj │ ├── SessionManager.obj │ ├── crc.obj │ ├── mt.dep │ ├── showmem.obj │ ├── stdafx.obj │ ├── vc80.ib_pdb_index │ ├── vc80.idb │ ├── vc80.pdb │ ├── vc80_ib_1.idb │ └── vc80_ib_1.pdb ├── ResponseManager.cpp ├── ResponseManager.h ├── SearchContacts.cpp ├── SearchContacts.h ├── SessionCMDManager.cpp ├── SessionCMDManager.h ├── SessionManager.cpp ├── SessionManager.h ├── SkypeSession.cpp ├── SkypeSession.h ├── ThreadedDisplaySessionManager.cpp ├── crc.cpp ├── crc.h ├── crc_inc.h ├── openssl │ ├── aes.h │ ├── asn1.h │ ├── asn1_mac.h │ ├── asn1t.h │ ├── bio.h │ ├── blowfish.h │ ├── bn.h │ ├── buffer.h │ ├── cast.h │ ├── comp.h │ ├── conf.h │ ├── conf_api.h │ ├── crypto.h │ ├── des.h │ ├── des_old.h │ ├── dh.h │ ├── dsa.h │ ├── dso.h │ ├── dtls1.h │ ├── e_os2.h │ ├── ebcdic.h │ ├── ec.h │ ├── ecdh.h │ ├── ecdsa.h │ ├── engine.h │ ├── err.h │ ├── evp.h │ ├── hmac.h │ ├── idea.h │ ├── krb5_asn.h │ ├── kssl.h │ ├── lhash.h │ ├── libs │ │ ├── libeay32.dll │ │ ├── libeay32.exp │ │ ├── libeay32.lib │ │ ├── ssleay32.dll │ │ ├── ssleay32.exp │ │ └── ssleay32.lib │ ├── md2.h │ ├── md4.h │ ├── md5.h │ ├── obj_mac.h │ ├── objects.h │ ├── ocsp.h │ ├── opensslconf.h │ ├── opensslv.h │ ├── ossl_typ.h │ ├── pem.h │ ├── pem2.h │ ├── pkcs12.h │ ├── pkcs7.h │ ├── pq_compat.h │ ├── pqueue.h │ ├── rand.h │ ├── rc2.h │ ├── rc4.h │ ├── ripemd.h │ ├── rsa.h │ ├── safestack.h │ ├── sha.h │ ├── ssl.h │ ├── ssl2.h │ ├── ssl23.h │ ├── ssl3.h │ ├── stack.h │ ├── store.h │ ├── symhacks.h │ ├── tls1.h │ ├── tmdiff.h │ ├── txt_db.h │ ├── ui.h │ ├── ui_compat.h │ ├── x509.h │ ├── x509_vfy.h │ └── x509v3.h ├── sha2.c ├── sha2.h ├── showmem.cpp ├── stdafx.cpp ├── stdafx.h └── tinyxml │ ├── Debug │ ├── BuildLog.htm │ ├── tinystr.obj │ ├── tinystr.sbr │ ├── tinyxml.obj │ ├── tinyxml.sbr │ ├── tinyxml_lib.bsc │ ├── tinyxmld.lib │ ├── tinyxmlerror.obj │ ├── tinyxmlerror.sbr │ ├── tinyxmlparser.obj │ ├── tinyxmlparser.sbr │ ├── vc80.idb │ └── vc80.pdb │ ├── Debug_STL │ ├── BuildLog.htm │ ├── tinystr.obj │ ├── tinystr.sbr │ ├── tinyxml.obj │ ├── tinyxml.sbr │ ├── tinyxmlSTL.bsc │ ├── tinyxmld_STL.lib │ ├── tinyxmlerror.obj │ ├── tinyxmlerror.sbr │ ├── tinyxmlparser.obj │ ├── tinyxmlparser.sbr │ ├── vc80.idb │ └── vc80.pdb │ ├── Makefile │ ├── Release │ ├── BuildLog.htm │ ├── tinystr.obj │ ├── tinyxml.lib │ ├── tinyxml.obj │ ├── tinyxmlerror.obj │ ├── tinyxmlparser.obj │ └── vc80.idb │ ├── Release_STL │ ├── BuildLog.htm │ ├── tinystr.obj │ ├── tinystr.sbr │ ├── tinyxml.obj │ ├── tinyxml.sbr │ ├── tinyxmlSTL.bsc │ ├── tinyxml_STL.lib │ ├── tinyxmlerror.obj │ ├── tinyxmlerror.sbr │ ├── tinyxmlparser.obj │ ├── tinyxmlparser.sbr │ └── vc80.idb │ ├── 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 │ ├── deprecated.html │ ├── doxygen.css │ ├── doxygen.png │ ├── files.html │ ├── functions.html │ ├── functions_enum.html │ ├── functions_func.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 │ ├── tinyXmlTest.dsp │ ├── tinyXmlTest.vcproj │ ├── tinyXmlTest.vcproj.WENGO-MAINFRAME.Administrateur.user │ ├── tinyXmlTestSTL.dsp │ ├── tinyXmlTestSTL.vcproj │ ├── tinyXmlTestSTL.vcproj.WENGO-MAINFRAME.Administrateur.user │ ├── tinyXmlTestSTL___Win32_Debug │ ├── BuildLog.htm │ ├── mt.dep │ ├── tinyXmlTestSTL.bsc │ ├── tinyXmlTestSTL.exe │ ├── tinyXmlTestSTL.exe.intermediate.manifest │ ├── tinyXmlTestSTL.pdb │ ├── vc80.idb │ ├── vc80.pdb │ ├── xmltest.obj │ └── xmltest.sbr │ ├── tinyXmlTestSTL___Win32_Release │ ├── BuildLog.htm │ ├── mt.dep │ ├── tinyXmlTestSTL.exe │ ├── tinyXmlTestSTL.exe.intermediate.manifest │ ├── vc80.idb │ └── xmltest.obj │ ├── tinyXmlTest___Win32_Debug │ ├── BuildLog.htm │ ├── mt.dep │ ├── tinyXmlTest.bsc │ ├── tinyXmlTest.exe │ ├── tinyXmlTest.exe.embed.manifest │ ├── tinyXmlTest.exe.embed.manifest.res │ ├── tinyXmlTest.exe.intermediate.manifest │ ├── tinyXmlTest.ilk │ ├── tinyXmlTest.pdb │ ├── vc80.idb │ ├── vc80.pdb │ ├── xmltest.obj │ └── xmltest.sbr │ ├── tinyXmlTest___Win32_Release │ ├── BuildLog.htm │ ├── mt.dep │ ├── tinyXmlTest.bsc │ ├── tinyXmlTest.exe │ ├── tinyXmlTest.exe.intermediate.manifest │ ├── vc80.idb │ ├── xmltest.obj │ └── xmltest.sbr │ ├── tinystr.cpp │ ├── tinystr.h │ ├── tinyxml.cpp │ ├── tinyxml.dsw │ ├── tinyxml.h │ ├── tinyxml.lib │ ├── tinyxml.ncb │ ├── tinyxml.sln │ ├── tinyxml.suo │ ├── tinyxmlSTL.dsp │ ├── tinyxmlSTL.vcproj │ ├── tinyxmlSTL.vcproj.WENGO-MAINFRAME.Administrateur.user │ ├── tinyxml_lib.dsp │ ├── tinyxml_lib.vcproj │ ├── tinyxml_lib.vcproj.WENGO-MAINFRAME.Administrateur.user │ ├── tinyxmlerror.cpp │ ├── tinyxmlparser.cpp │ ├── utf8test.gif │ ├── utf8test.xml │ ├── utf8testverify.xml │ └── xmltest.cpp ├── README.md ├── SkypeKeyServer.sln ├── SkypeKeyServer.suo ├── SkypeKeyServer ├── SkypeKeyServer.cpp ├── SkypeKeyServer.vcproj ├── stdafx.cpp └── stdafx.h └── release ├── FakeSkype.exe ├── FakeSkype.map ├── FakeSkype.pdb ├── libeay32.dll └── ssleay32.dll /FakeSkype.ncb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype.ncb -------------------------------------------------------------------------------- /FakeSkype.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype.sln -------------------------------------------------------------------------------- /FakeSkype.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype.suo -------------------------------------------------------------------------------- /FakeSkype/ChatManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/ChatManager.cpp -------------------------------------------------------------------------------- /FakeSkype/ChatManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/ChatManager.h -------------------------------------------------------------------------------- /FakeSkype/Cipher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/Cipher.cpp -------------------------------------------------------------------------------- /FakeSkype/Cipher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/Cipher.h -------------------------------------------------------------------------------- /FakeSkype/CodeDepository.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/CodeDepository.txt -------------------------------------------------------------------------------- /FakeSkype/CommentedCodeFakeSkype.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/CommentedCodeFakeSkype.cpp -------------------------------------------------------------------------------- /FakeSkype/Common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/Common.cpp -------------------------------------------------------------------------------- /FakeSkype/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/Common.h -------------------------------------------------------------------------------- /FakeSkype/Connection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/Connection.cpp -------------------------------------------------------------------------------- /FakeSkype/Connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/Connection.h -------------------------------------------------------------------------------- /FakeSkype/ConsoleLogger/ConsoleLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/ConsoleLogger/ConsoleLogger.h -------------------------------------------------------------------------------- /FakeSkype/ConsoleLogger/ConsoleLogger.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/ConsoleLogger/ConsoleLogger.lib -------------------------------------------------------------------------------- /FakeSkype/ConsoleLogger/ConsoleLogger.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/ConsoleLogger/ConsoleLogger.obj -------------------------------------------------------------------------------- /FakeSkype/ConsoleLogger/ConsoleLoggerHelper.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/ConsoleLogger/ConsoleLoggerHelper.exe -------------------------------------------------------------------------------- /FakeSkype/Copie de Presence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/Copie de Presence.cpp -------------------------------------------------------------------------------- /FakeSkype/Debug/BuildLog.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/Debug/BuildLog.htm -------------------------------------------------------------------------------- /FakeSkype/Debug/Cipher.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/Debug/Cipher.obj -------------------------------------------------------------------------------- /FakeSkype/Debug/DefineFunction.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/Debug/DefineFunction.obj -------------------------------------------------------------------------------- /FakeSkype/Debug/FakeSkype.exe.embed.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/Debug/FakeSkype.exe.embed.manifest -------------------------------------------------------------------------------- /FakeSkype/Debug/FakeSkype.exe.embed.manifest.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/Debug/FakeSkype.exe.embed.manifest.res -------------------------------------------------------------------------------- /FakeSkype/Debug/FakeSkype.exe.intermediate.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/Debug/FakeSkype.exe.intermediate.manifest -------------------------------------------------------------------------------- /FakeSkype/Debug/FakeSkype.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/Debug/FakeSkype.obj -------------------------------------------------------------------------------- /FakeSkype/Debug/FakeSkype.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/Debug/FakeSkype.pch -------------------------------------------------------------------------------- /FakeSkype/Debug/HostScan.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/Debug/HostScan.obj -------------------------------------------------------------------------------- /FakeSkype/Debug/InitVector.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/Debug/InitVector.obj -------------------------------------------------------------------------------- /FakeSkype/Debug/Random.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/Debug/Random.obj -------------------------------------------------------------------------------- /FakeSkype/Debug/crc32.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/Debug/crc32.obj -------------------------------------------------------------------------------- /FakeSkype/Debug/mt.dep: -------------------------------------------------------------------------------- 1 | Manifest resource last updated at 11:42:02,64 on 05/03/2007 2 | -------------------------------------------------------------------------------- /FakeSkype/Debug/showmem.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/Debug/showmem.obj -------------------------------------------------------------------------------- /FakeSkype/Debug/stdafx.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/Debug/stdafx.obj -------------------------------------------------------------------------------- /FakeSkype/Debug/vc80.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/Debug/vc80.idb -------------------------------------------------------------------------------- /FakeSkype/Debug/vc80.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/Debug/vc80.pdb -------------------------------------------------------------------------------- /FakeSkype/DefineFunction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/DefineFunction.cpp -------------------------------------------------------------------------------- /FakeSkype/DirBlobManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/DirBlobManager.cpp -------------------------------------------------------------------------------- /FakeSkype/DirBlobManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/DirBlobManager.h -------------------------------------------------------------------------------- /FakeSkype/Events.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/Events.cpp -------------------------------------------------------------------------------- /FakeSkype/Events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/Events.h -------------------------------------------------------------------------------- /FakeSkype/FakeSkype.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/FakeSkype.cpp -------------------------------------------------------------------------------- /FakeSkype/FakeSkype.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/FakeSkype.vcproj -------------------------------------------------------------------------------- /FakeSkype/FakeSkype.vcproj.MAINFRAME.Administrateur.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/FakeSkype.vcproj.MAINFRAME.Administrateur.user -------------------------------------------------------------------------------- /FakeSkype/FakeSkype.vcproj.WENGO-MAINFRAME.Administrateur.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/FakeSkype.vcproj.WENGO-MAINFRAME.Administrateur.user -------------------------------------------------------------------------------- /FakeSkype/HostScan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/HostScan.cpp -------------------------------------------------------------------------------- /FakeSkype/HostScan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/HostScan.h -------------------------------------------------------------------------------- /FakeSkype/InitVector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/InitVector.cpp -------------------------------------------------------------------------------- /FakeSkype/InitVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/InitVector.h -------------------------------------------------------------------------------- /FakeSkype/LocalNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/LocalNode.cpp -------------------------------------------------------------------------------- /FakeSkype/LocalNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/LocalNode.h -------------------------------------------------------------------------------- /FakeSkype/Login.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/Login.cpp -------------------------------------------------------------------------------- /FakeSkype/Login.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/Login.h -------------------------------------------------------------------------------- /FakeSkype/OOLDObjects.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/OOLDObjects.cpp -------------------------------------------------------------------------------- /FakeSkype/Objects.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/Objects.cpp -------------------------------------------------------------------------------- /FakeSkype/Objects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/Objects.h -------------------------------------------------------------------------------- /FakeSkype/ParentNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/ParentNode.cpp -------------------------------------------------------------------------------- /FakeSkype/ParentNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/ParentNode.h -------------------------------------------------------------------------------- /FakeSkype/Presence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/Presence.cpp -------------------------------------------------------------------------------- /FakeSkype/Presence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/Presence.h -------------------------------------------------------------------------------- /FakeSkype/Query.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/Query.cpp -------------------------------------------------------------------------------- /FakeSkype/Query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/Query.h -------------------------------------------------------------------------------- /FakeSkype/Random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/Random.cpp -------------------------------------------------------------------------------- /FakeSkype/Random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/Random.h -------------------------------------------------------------------------------- /FakeSkype/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/ReadMe.txt -------------------------------------------------------------------------------- /FakeSkype/Release/BuildLog.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/Release/BuildLog.htm -------------------------------------------------------------------------------- /FakeSkype/Release/Cipher.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/Release/Cipher.obj -------------------------------------------------------------------------------- /FakeSkype/Release/Common.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/Release/Common.obj -------------------------------------------------------------------------------- /FakeSkype/Release/DefineFunction.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/Release/DefineFunction.obj -------------------------------------------------------------------------------- /FakeSkype/Release/DirBlobManager.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/Release/DirBlobManager.obj -------------------------------------------------------------------------------- /FakeSkype/Release/Events.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/Release/Events.obj -------------------------------------------------------------------------------- /FakeSkype/Release/FakeSkype.exe.embed.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/Release/FakeSkype.exe.embed.manifest -------------------------------------------------------------------------------- /FakeSkype/Release/FakeSkype.exe.embed.manifest.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/Release/FakeSkype.exe.embed.manifest.res -------------------------------------------------------------------------------- /FakeSkype/Release/FakeSkype.exe.intermediate.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/Release/FakeSkype.exe.intermediate.manifest -------------------------------------------------------------------------------- /FakeSkype/Release/FakeSkype.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/Release/FakeSkype.obj -------------------------------------------------------------------------------- /FakeSkype/Release/FakeSkype.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/Release/FakeSkype.pch -------------------------------------------------------------------------------- /FakeSkype/Release/HostScan.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/Release/HostScan.obj -------------------------------------------------------------------------------- /FakeSkype/Release/InitVector.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/Release/InitVector.obj -------------------------------------------------------------------------------- /FakeSkype/Release/LocalNode.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/Release/LocalNode.obj -------------------------------------------------------------------------------- /FakeSkype/Release/Login.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/Release/Login.obj -------------------------------------------------------------------------------- /FakeSkype/Release/Objects.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/Release/Objects.obj -------------------------------------------------------------------------------- /FakeSkype/Release/ParentNode.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/Release/ParentNode.obj -------------------------------------------------------------------------------- /FakeSkype/Release/Presence.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/Release/Presence.obj -------------------------------------------------------------------------------- /FakeSkype/Release/Query.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/Release/Query.obj -------------------------------------------------------------------------------- /FakeSkype/Release/Random.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/Release/Random.obj -------------------------------------------------------------------------------- /FakeSkype/Release/ResponseManager.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/Release/ResponseManager.obj -------------------------------------------------------------------------------- /FakeSkype/Release/SearchContacts.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/Release/SearchContacts.obj -------------------------------------------------------------------------------- /FakeSkype/Release/SessionCMDManager.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/Release/SessionCMDManager.obj -------------------------------------------------------------------------------- /FakeSkype/Release/SessionManager.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/Release/SessionManager.obj -------------------------------------------------------------------------------- /FakeSkype/Release/crc.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/Release/crc.obj -------------------------------------------------------------------------------- /FakeSkype/Release/mt.dep: -------------------------------------------------------------------------------- 1 | Manifest resource last updated at 14:50:16,25 on 18/10/2010 2 | -------------------------------------------------------------------------------- /FakeSkype/Release/showmem.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/Release/showmem.obj -------------------------------------------------------------------------------- /FakeSkype/Release/stdafx.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/Release/stdafx.obj -------------------------------------------------------------------------------- /FakeSkype/Release/vc80.ib_pdb_index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/Release/vc80.ib_pdb_index -------------------------------------------------------------------------------- /FakeSkype/Release/vc80.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/Release/vc80.idb -------------------------------------------------------------------------------- /FakeSkype/Release/vc80.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/Release/vc80.pdb -------------------------------------------------------------------------------- /FakeSkype/Release/vc80_ib_1.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/Release/vc80_ib_1.idb -------------------------------------------------------------------------------- /FakeSkype/Release/vc80_ib_1.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/Release/vc80_ib_1.pdb -------------------------------------------------------------------------------- /FakeSkype/ResponseManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/ResponseManager.cpp -------------------------------------------------------------------------------- /FakeSkype/ResponseManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/ResponseManager.h -------------------------------------------------------------------------------- /FakeSkype/SearchContacts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/SearchContacts.cpp -------------------------------------------------------------------------------- /FakeSkype/SearchContacts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/SearchContacts.h -------------------------------------------------------------------------------- /FakeSkype/SessionCMDManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/SessionCMDManager.cpp -------------------------------------------------------------------------------- /FakeSkype/SessionCMDManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/SessionCMDManager.h -------------------------------------------------------------------------------- /FakeSkype/SessionManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/SessionManager.cpp -------------------------------------------------------------------------------- /FakeSkype/SessionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/SessionManager.h -------------------------------------------------------------------------------- /FakeSkype/SkypeSession.cpp: -------------------------------------------------------------------------------- 1 | #include "SkypeSession.h" -------------------------------------------------------------------------------- /FakeSkype/SkypeSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/SkypeSession.h -------------------------------------------------------------------------------- /FakeSkype/ThreadedDisplaySessionManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/ThreadedDisplaySessionManager.cpp -------------------------------------------------------------------------------- /FakeSkype/crc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/crc.cpp -------------------------------------------------------------------------------- /FakeSkype/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/crc.h -------------------------------------------------------------------------------- /FakeSkype/crc_inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/crc_inc.h -------------------------------------------------------------------------------- /FakeSkype/openssl/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/openssl/aes.h -------------------------------------------------------------------------------- /FakeSkype/openssl/asn1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/openssl/asn1.h -------------------------------------------------------------------------------- /FakeSkype/openssl/asn1_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/openssl/asn1_mac.h -------------------------------------------------------------------------------- /FakeSkype/openssl/asn1t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/openssl/asn1t.h -------------------------------------------------------------------------------- /FakeSkype/openssl/bio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/openssl/bio.h -------------------------------------------------------------------------------- /FakeSkype/openssl/blowfish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/openssl/blowfish.h -------------------------------------------------------------------------------- /FakeSkype/openssl/bn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/openssl/bn.h -------------------------------------------------------------------------------- /FakeSkype/openssl/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/openssl/buffer.h -------------------------------------------------------------------------------- /FakeSkype/openssl/cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/openssl/cast.h -------------------------------------------------------------------------------- /FakeSkype/openssl/comp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/openssl/comp.h -------------------------------------------------------------------------------- /FakeSkype/openssl/conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/openssl/conf.h -------------------------------------------------------------------------------- /FakeSkype/openssl/conf_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/openssl/conf_api.h -------------------------------------------------------------------------------- /FakeSkype/openssl/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/openssl/crypto.h -------------------------------------------------------------------------------- /FakeSkype/openssl/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/openssl/des.h -------------------------------------------------------------------------------- /FakeSkype/openssl/des_old.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/openssl/des_old.h -------------------------------------------------------------------------------- /FakeSkype/openssl/dh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/openssl/dh.h -------------------------------------------------------------------------------- /FakeSkype/openssl/dsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/openssl/dsa.h -------------------------------------------------------------------------------- /FakeSkype/openssl/dso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/openssl/dso.h -------------------------------------------------------------------------------- /FakeSkype/openssl/dtls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/openssl/dtls1.h -------------------------------------------------------------------------------- /FakeSkype/openssl/e_os2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/openssl/e_os2.h -------------------------------------------------------------------------------- /FakeSkype/openssl/ebcdic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/openssl/ebcdic.h -------------------------------------------------------------------------------- /FakeSkype/openssl/ec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/openssl/ec.h -------------------------------------------------------------------------------- /FakeSkype/openssl/ecdh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/openssl/ecdh.h -------------------------------------------------------------------------------- /FakeSkype/openssl/ecdsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/openssl/ecdsa.h -------------------------------------------------------------------------------- /FakeSkype/openssl/engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/openssl/engine.h -------------------------------------------------------------------------------- /FakeSkype/openssl/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/openssl/err.h -------------------------------------------------------------------------------- /FakeSkype/openssl/evp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/openssl/evp.h -------------------------------------------------------------------------------- /FakeSkype/openssl/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/openssl/hmac.h -------------------------------------------------------------------------------- /FakeSkype/openssl/idea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/openssl/idea.h -------------------------------------------------------------------------------- /FakeSkype/openssl/krb5_asn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/openssl/krb5_asn.h -------------------------------------------------------------------------------- /FakeSkype/openssl/kssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/openssl/kssl.h -------------------------------------------------------------------------------- /FakeSkype/openssl/lhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/openssl/lhash.h -------------------------------------------------------------------------------- /FakeSkype/openssl/libs/libeay32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/openssl/libs/libeay32.dll -------------------------------------------------------------------------------- /FakeSkype/openssl/libs/libeay32.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/openssl/libs/libeay32.exp -------------------------------------------------------------------------------- /FakeSkype/openssl/libs/libeay32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/openssl/libs/libeay32.lib -------------------------------------------------------------------------------- /FakeSkype/openssl/libs/ssleay32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/openssl/libs/ssleay32.dll -------------------------------------------------------------------------------- /FakeSkype/openssl/libs/ssleay32.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/openssl/libs/ssleay32.exp -------------------------------------------------------------------------------- /FakeSkype/openssl/libs/ssleay32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/openssl/libs/ssleay32.lib -------------------------------------------------------------------------------- /FakeSkype/openssl/md2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/openssl/md2.h -------------------------------------------------------------------------------- /FakeSkype/openssl/md4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/openssl/md4.h -------------------------------------------------------------------------------- /FakeSkype/openssl/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/openssl/md5.h -------------------------------------------------------------------------------- /FakeSkype/openssl/obj_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/openssl/obj_mac.h -------------------------------------------------------------------------------- /FakeSkype/openssl/objects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/openssl/objects.h -------------------------------------------------------------------------------- /FakeSkype/openssl/ocsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/openssl/ocsp.h -------------------------------------------------------------------------------- /FakeSkype/openssl/opensslconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/openssl/opensslconf.h -------------------------------------------------------------------------------- /FakeSkype/openssl/opensslv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/openssl/opensslv.h -------------------------------------------------------------------------------- /FakeSkype/openssl/ossl_typ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/openssl/ossl_typ.h -------------------------------------------------------------------------------- /FakeSkype/openssl/pem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/openssl/pem.h -------------------------------------------------------------------------------- /FakeSkype/openssl/pem2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/openssl/pem2.h -------------------------------------------------------------------------------- /FakeSkype/openssl/pkcs12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/openssl/pkcs12.h -------------------------------------------------------------------------------- /FakeSkype/openssl/pkcs7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/openssl/pkcs7.h -------------------------------------------------------------------------------- /FakeSkype/openssl/pq_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/openssl/pq_compat.h -------------------------------------------------------------------------------- /FakeSkype/openssl/pqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/openssl/pqueue.h -------------------------------------------------------------------------------- /FakeSkype/openssl/rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/openssl/rand.h -------------------------------------------------------------------------------- /FakeSkype/openssl/rc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/openssl/rc2.h -------------------------------------------------------------------------------- /FakeSkype/openssl/rc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/openssl/rc4.h -------------------------------------------------------------------------------- /FakeSkype/openssl/ripemd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/openssl/ripemd.h -------------------------------------------------------------------------------- /FakeSkype/openssl/rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/openssl/rsa.h -------------------------------------------------------------------------------- /FakeSkype/openssl/safestack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/openssl/safestack.h -------------------------------------------------------------------------------- /FakeSkype/openssl/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/openssl/sha.h -------------------------------------------------------------------------------- /FakeSkype/openssl/ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/openssl/ssl.h -------------------------------------------------------------------------------- /FakeSkype/openssl/ssl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/openssl/ssl2.h -------------------------------------------------------------------------------- /FakeSkype/openssl/ssl23.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/openssl/ssl23.h -------------------------------------------------------------------------------- /FakeSkype/openssl/ssl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/openssl/ssl3.h -------------------------------------------------------------------------------- /FakeSkype/openssl/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/openssl/stack.h -------------------------------------------------------------------------------- /FakeSkype/openssl/store.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/openssl/store.h -------------------------------------------------------------------------------- /FakeSkype/openssl/symhacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/openssl/symhacks.h -------------------------------------------------------------------------------- /FakeSkype/openssl/tls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/openssl/tls1.h -------------------------------------------------------------------------------- /FakeSkype/openssl/tmdiff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/openssl/tmdiff.h -------------------------------------------------------------------------------- /FakeSkype/openssl/txt_db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/openssl/txt_db.h -------------------------------------------------------------------------------- /FakeSkype/openssl/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/openssl/ui.h -------------------------------------------------------------------------------- /FakeSkype/openssl/ui_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/openssl/ui_compat.h -------------------------------------------------------------------------------- /FakeSkype/openssl/x509.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/openssl/x509.h -------------------------------------------------------------------------------- /FakeSkype/openssl/x509_vfy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/openssl/x509_vfy.h -------------------------------------------------------------------------------- /FakeSkype/openssl/x509v3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/openssl/x509v3.h -------------------------------------------------------------------------------- /FakeSkype/sha2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/sha2.c -------------------------------------------------------------------------------- /FakeSkype/sha2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/sha2.h -------------------------------------------------------------------------------- /FakeSkype/showmem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/showmem.cpp -------------------------------------------------------------------------------- /FakeSkype/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/stdafx.cpp -------------------------------------------------------------------------------- /FakeSkype/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/stdafx.h -------------------------------------------------------------------------------- /FakeSkype/tinyxml/Debug/BuildLog.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/Debug/BuildLog.htm -------------------------------------------------------------------------------- /FakeSkype/tinyxml/Debug/tinystr.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/Debug/tinystr.obj -------------------------------------------------------------------------------- /FakeSkype/tinyxml/Debug/tinystr.sbr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FakeSkype/tinyxml/Debug/tinyxml.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/Debug/tinyxml.obj -------------------------------------------------------------------------------- /FakeSkype/tinyxml/Debug/tinyxml.sbr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FakeSkype/tinyxml/Debug/tinyxml_lib.bsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/Debug/tinyxml_lib.bsc -------------------------------------------------------------------------------- /FakeSkype/tinyxml/Debug/tinyxmld.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/Debug/tinyxmld.lib -------------------------------------------------------------------------------- /FakeSkype/tinyxml/Debug/tinyxmlerror.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/Debug/tinyxmlerror.obj -------------------------------------------------------------------------------- /FakeSkype/tinyxml/Debug/tinyxmlerror.sbr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FakeSkype/tinyxml/Debug/tinyxmlparser.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/Debug/tinyxmlparser.obj -------------------------------------------------------------------------------- /FakeSkype/tinyxml/Debug/tinyxmlparser.sbr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FakeSkype/tinyxml/Debug/vc80.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/Debug/vc80.idb -------------------------------------------------------------------------------- /FakeSkype/tinyxml/Debug/vc80.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/Debug/vc80.pdb -------------------------------------------------------------------------------- /FakeSkype/tinyxml/Debug_STL/BuildLog.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/Debug_STL/BuildLog.htm -------------------------------------------------------------------------------- /FakeSkype/tinyxml/Debug_STL/tinystr.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/Debug_STL/tinystr.obj -------------------------------------------------------------------------------- /FakeSkype/tinyxml/Debug_STL/tinystr.sbr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FakeSkype/tinyxml/Debug_STL/tinyxml.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/Debug_STL/tinyxml.obj -------------------------------------------------------------------------------- /FakeSkype/tinyxml/Debug_STL/tinyxml.sbr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FakeSkype/tinyxml/Debug_STL/tinyxmlSTL.bsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/Debug_STL/tinyxmlSTL.bsc -------------------------------------------------------------------------------- /FakeSkype/tinyxml/Debug_STL/tinyxmld_STL.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/Debug_STL/tinyxmld_STL.lib -------------------------------------------------------------------------------- /FakeSkype/tinyxml/Debug_STL/tinyxmlerror.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/Debug_STL/tinyxmlerror.obj -------------------------------------------------------------------------------- /FakeSkype/tinyxml/Debug_STL/tinyxmlerror.sbr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FakeSkype/tinyxml/Debug_STL/tinyxmlparser.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/Debug_STL/tinyxmlparser.obj -------------------------------------------------------------------------------- /FakeSkype/tinyxml/Debug_STL/tinyxmlparser.sbr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FakeSkype/tinyxml/Debug_STL/vc80.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/Debug_STL/vc80.idb -------------------------------------------------------------------------------- /FakeSkype/tinyxml/Debug_STL/vc80.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/Debug_STL/vc80.pdb -------------------------------------------------------------------------------- /FakeSkype/tinyxml/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/Makefile -------------------------------------------------------------------------------- /FakeSkype/tinyxml/Release/BuildLog.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/Release/BuildLog.htm -------------------------------------------------------------------------------- /FakeSkype/tinyxml/Release/tinystr.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/Release/tinystr.obj -------------------------------------------------------------------------------- /FakeSkype/tinyxml/Release/tinyxml.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/Release/tinyxml.lib -------------------------------------------------------------------------------- /FakeSkype/tinyxml/Release/tinyxml.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/Release/tinyxml.obj -------------------------------------------------------------------------------- /FakeSkype/tinyxml/Release/tinyxmlerror.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/Release/tinyxmlerror.obj -------------------------------------------------------------------------------- /FakeSkype/tinyxml/Release/tinyxmlparser.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/Release/tinyxmlparser.obj -------------------------------------------------------------------------------- /FakeSkype/tinyxml/Release/vc80.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/Release/vc80.idb -------------------------------------------------------------------------------- /FakeSkype/tinyxml/Release_STL/BuildLog.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/Release_STL/BuildLog.htm -------------------------------------------------------------------------------- /FakeSkype/tinyxml/Release_STL/tinystr.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/Release_STL/tinystr.obj -------------------------------------------------------------------------------- /FakeSkype/tinyxml/Release_STL/tinystr.sbr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FakeSkype/tinyxml/Release_STL/tinyxml.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/Release_STL/tinyxml.obj -------------------------------------------------------------------------------- /FakeSkype/tinyxml/Release_STL/tinyxml.sbr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FakeSkype/tinyxml/Release_STL/tinyxmlSTL.bsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/Release_STL/tinyxmlSTL.bsc -------------------------------------------------------------------------------- /FakeSkype/tinyxml/Release_STL/tinyxml_STL.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/Release_STL/tinyxml_STL.lib -------------------------------------------------------------------------------- /FakeSkype/tinyxml/Release_STL/tinyxmlerror.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/Release_STL/tinyxmlerror.obj -------------------------------------------------------------------------------- /FakeSkype/tinyxml/Release_STL/tinyxmlerror.sbr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FakeSkype/tinyxml/Release_STL/tinyxmlparser.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/Release_STL/tinyxmlparser.obj -------------------------------------------------------------------------------- /FakeSkype/tinyxml/Release_STL/tinyxmlparser.sbr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FakeSkype/tinyxml/Release_STL/vc80.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/Release_STL/vc80.idb -------------------------------------------------------------------------------- /FakeSkype/tinyxml/changes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/changes.txt -------------------------------------------------------------------------------- /FakeSkype/tinyxml/docs/annotated.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/docs/annotated.html -------------------------------------------------------------------------------- /FakeSkype/tinyxml/docs/classTiXmlAttribute-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/docs/classTiXmlAttribute-members.html -------------------------------------------------------------------------------- /FakeSkype/tinyxml/docs/classTiXmlAttribute.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/docs/classTiXmlAttribute.html -------------------------------------------------------------------------------- /FakeSkype/tinyxml/docs/classTiXmlAttribute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/docs/classTiXmlAttribute.png -------------------------------------------------------------------------------- /FakeSkype/tinyxml/docs/classTiXmlBase-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/docs/classTiXmlBase-members.html -------------------------------------------------------------------------------- /FakeSkype/tinyxml/docs/classTiXmlBase.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/docs/classTiXmlBase.html -------------------------------------------------------------------------------- /FakeSkype/tinyxml/docs/classTiXmlBase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/docs/classTiXmlBase.png -------------------------------------------------------------------------------- /FakeSkype/tinyxml/docs/classTiXmlComment-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/docs/classTiXmlComment-members.html -------------------------------------------------------------------------------- /FakeSkype/tinyxml/docs/classTiXmlComment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/docs/classTiXmlComment.html -------------------------------------------------------------------------------- /FakeSkype/tinyxml/docs/classTiXmlComment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/docs/classTiXmlComment.png -------------------------------------------------------------------------------- /FakeSkype/tinyxml/docs/classTiXmlDeclaration-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/docs/classTiXmlDeclaration-members.html -------------------------------------------------------------------------------- /FakeSkype/tinyxml/docs/classTiXmlDeclaration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/docs/classTiXmlDeclaration.html -------------------------------------------------------------------------------- /FakeSkype/tinyxml/docs/classTiXmlDeclaration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/docs/classTiXmlDeclaration.png -------------------------------------------------------------------------------- /FakeSkype/tinyxml/docs/classTiXmlDocument-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/docs/classTiXmlDocument-members.html -------------------------------------------------------------------------------- /FakeSkype/tinyxml/docs/classTiXmlDocument.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/docs/classTiXmlDocument.html -------------------------------------------------------------------------------- /FakeSkype/tinyxml/docs/classTiXmlDocument.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/docs/classTiXmlDocument.png -------------------------------------------------------------------------------- /FakeSkype/tinyxml/docs/classTiXmlElement-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/docs/classTiXmlElement-members.html -------------------------------------------------------------------------------- /FakeSkype/tinyxml/docs/classTiXmlElement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/docs/classTiXmlElement.html -------------------------------------------------------------------------------- /FakeSkype/tinyxml/docs/classTiXmlElement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/docs/classTiXmlElement.png -------------------------------------------------------------------------------- /FakeSkype/tinyxml/docs/classTiXmlHandle-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/docs/classTiXmlHandle-members.html -------------------------------------------------------------------------------- /FakeSkype/tinyxml/docs/classTiXmlHandle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/docs/classTiXmlHandle.html -------------------------------------------------------------------------------- /FakeSkype/tinyxml/docs/classTiXmlNode-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/docs/classTiXmlNode-members.html -------------------------------------------------------------------------------- /FakeSkype/tinyxml/docs/classTiXmlNode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/docs/classTiXmlNode.html -------------------------------------------------------------------------------- /FakeSkype/tinyxml/docs/classTiXmlNode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/docs/classTiXmlNode.png -------------------------------------------------------------------------------- /FakeSkype/tinyxml/docs/classTiXmlPrinter-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/docs/classTiXmlPrinter-members.html -------------------------------------------------------------------------------- /FakeSkype/tinyxml/docs/classTiXmlPrinter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/docs/classTiXmlPrinter.html -------------------------------------------------------------------------------- /FakeSkype/tinyxml/docs/classTiXmlPrinter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/docs/classTiXmlPrinter.png -------------------------------------------------------------------------------- /FakeSkype/tinyxml/docs/classTiXmlText-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/docs/classTiXmlText-members.html -------------------------------------------------------------------------------- /FakeSkype/tinyxml/docs/classTiXmlText.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/docs/classTiXmlText.html -------------------------------------------------------------------------------- /FakeSkype/tinyxml/docs/classTiXmlText.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/docs/classTiXmlText.png -------------------------------------------------------------------------------- /FakeSkype/tinyxml/docs/classTiXmlUnknown-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/docs/classTiXmlUnknown-members.html -------------------------------------------------------------------------------- /FakeSkype/tinyxml/docs/classTiXmlUnknown.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/docs/classTiXmlUnknown.html -------------------------------------------------------------------------------- /FakeSkype/tinyxml/docs/classTiXmlUnknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/docs/classTiXmlUnknown.png -------------------------------------------------------------------------------- /FakeSkype/tinyxml/docs/classTiXmlVisitor-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/docs/classTiXmlVisitor-members.html -------------------------------------------------------------------------------- /FakeSkype/tinyxml/docs/classTiXmlVisitor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/docs/classTiXmlVisitor.html -------------------------------------------------------------------------------- /FakeSkype/tinyxml/docs/classTiXmlVisitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/docs/classTiXmlVisitor.png -------------------------------------------------------------------------------- /FakeSkype/tinyxml/docs/deprecated.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/docs/deprecated.html -------------------------------------------------------------------------------- /FakeSkype/tinyxml/docs/doxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/docs/doxygen.css -------------------------------------------------------------------------------- /FakeSkype/tinyxml/docs/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/docs/doxygen.png -------------------------------------------------------------------------------- /FakeSkype/tinyxml/docs/files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/docs/files.html -------------------------------------------------------------------------------- /FakeSkype/tinyxml/docs/functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/docs/functions.html -------------------------------------------------------------------------------- /FakeSkype/tinyxml/docs/functions_enum.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/docs/functions_enum.html -------------------------------------------------------------------------------- /FakeSkype/tinyxml/docs/functions_func.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/docs/functions_func.html -------------------------------------------------------------------------------- /FakeSkype/tinyxml/docs/functions_rela.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/docs/functions_rela.html -------------------------------------------------------------------------------- /FakeSkype/tinyxml/docs/functions_vars.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/docs/functions_vars.html -------------------------------------------------------------------------------- /FakeSkype/tinyxml/docs/hierarchy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/docs/hierarchy.html -------------------------------------------------------------------------------- /FakeSkype/tinyxml/docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/docs/index.html -------------------------------------------------------------------------------- /FakeSkype/tinyxml/docs/pages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/docs/pages.html -------------------------------------------------------------------------------- /FakeSkype/tinyxml/docs/tab_b.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/docs/tab_b.gif -------------------------------------------------------------------------------- /FakeSkype/tinyxml/docs/tab_l.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/docs/tab_l.gif -------------------------------------------------------------------------------- /FakeSkype/tinyxml/docs/tab_r.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/docs/tab_r.gif -------------------------------------------------------------------------------- /FakeSkype/tinyxml/docs/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/docs/tabs.css -------------------------------------------------------------------------------- /FakeSkype/tinyxml/docs/tinystr_8h-source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/docs/tinystr_8h-source.html -------------------------------------------------------------------------------- /FakeSkype/tinyxml/docs/tinyxml_8h-source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/docs/tinyxml_8h-source.html -------------------------------------------------------------------------------- /FakeSkype/tinyxml/docs/tutorial0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/docs/tutorial0.html -------------------------------------------------------------------------------- /FakeSkype/tinyxml/echo.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/echo.dsp -------------------------------------------------------------------------------- /FakeSkype/tinyxml/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/readme.txt -------------------------------------------------------------------------------- /FakeSkype/tinyxml/tinyXmlTest.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/tinyXmlTest.dsp -------------------------------------------------------------------------------- /FakeSkype/tinyxml/tinyXmlTest.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/tinyXmlTest.vcproj -------------------------------------------------------------------------------- /FakeSkype/tinyxml/tinyXmlTest.vcproj.WENGO-MAINFRAME.Administrateur.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/tinyXmlTest.vcproj.WENGO-MAINFRAME.Administrateur.user -------------------------------------------------------------------------------- /FakeSkype/tinyxml/tinyXmlTestSTL.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/tinyXmlTestSTL.dsp -------------------------------------------------------------------------------- /FakeSkype/tinyxml/tinyXmlTestSTL.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/tinyXmlTestSTL.vcproj -------------------------------------------------------------------------------- /FakeSkype/tinyxml/tinyXmlTestSTL.vcproj.WENGO-MAINFRAME.Administrateur.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/tinyXmlTestSTL.vcproj.WENGO-MAINFRAME.Administrateur.user -------------------------------------------------------------------------------- /FakeSkype/tinyxml/tinyXmlTestSTL___Win32_Debug/BuildLog.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/tinyXmlTestSTL___Win32_Debug/BuildLog.htm -------------------------------------------------------------------------------- /FakeSkype/tinyxml/tinyXmlTestSTL___Win32_Debug/mt.dep: -------------------------------------------------------------------------------- 1 | Manifest resource last updated at 15:05:33,75 on 06/02/2007 2 | -------------------------------------------------------------------------------- /FakeSkype/tinyxml/tinyXmlTestSTL___Win32_Debug/tinyXmlTestSTL.bsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/tinyXmlTestSTL___Win32_Debug/tinyXmlTestSTL.bsc -------------------------------------------------------------------------------- /FakeSkype/tinyxml/tinyXmlTestSTL___Win32_Debug/tinyXmlTestSTL.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/tinyXmlTestSTL___Win32_Debug/tinyXmlTestSTL.exe -------------------------------------------------------------------------------- /FakeSkype/tinyxml/tinyXmlTestSTL___Win32_Debug/tinyXmlTestSTL.exe.intermediate.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/tinyXmlTestSTL___Win32_Debug/tinyXmlTestSTL.exe.intermediate.manifest -------------------------------------------------------------------------------- /FakeSkype/tinyxml/tinyXmlTestSTL___Win32_Debug/tinyXmlTestSTL.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/tinyXmlTestSTL___Win32_Debug/tinyXmlTestSTL.pdb -------------------------------------------------------------------------------- /FakeSkype/tinyxml/tinyXmlTestSTL___Win32_Debug/vc80.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/tinyXmlTestSTL___Win32_Debug/vc80.idb -------------------------------------------------------------------------------- /FakeSkype/tinyxml/tinyXmlTestSTL___Win32_Debug/vc80.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/tinyXmlTestSTL___Win32_Debug/vc80.pdb -------------------------------------------------------------------------------- /FakeSkype/tinyxml/tinyXmlTestSTL___Win32_Debug/xmltest.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/tinyXmlTestSTL___Win32_Debug/xmltest.obj -------------------------------------------------------------------------------- /FakeSkype/tinyxml/tinyXmlTestSTL___Win32_Debug/xmltest.sbr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FakeSkype/tinyxml/tinyXmlTestSTL___Win32_Release/BuildLog.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/tinyXmlTestSTL___Win32_Release/BuildLog.htm -------------------------------------------------------------------------------- /FakeSkype/tinyxml/tinyXmlTestSTL___Win32_Release/mt.dep: -------------------------------------------------------------------------------- 1 | Manifest resource last updated at 15:06:40,54 on 06/02/2007 2 | -------------------------------------------------------------------------------- /FakeSkype/tinyxml/tinyXmlTestSTL___Win32_Release/tinyXmlTestSTL.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/tinyXmlTestSTL___Win32_Release/tinyXmlTestSTL.exe -------------------------------------------------------------------------------- /FakeSkype/tinyxml/tinyXmlTestSTL___Win32_Release/tinyXmlTestSTL.exe.intermediate.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/tinyXmlTestSTL___Win32_Release/tinyXmlTestSTL.exe.intermediate.manifest -------------------------------------------------------------------------------- /FakeSkype/tinyxml/tinyXmlTestSTL___Win32_Release/vc80.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/tinyXmlTestSTL___Win32_Release/vc80.idb -------------------------------------------------------------------------------- /FakeSkype/tinyxml/tinyXmlTestSTL___Win32_Release/xmltest.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/tinyXmlTestSTL___Win32_Release/xmltest.obj -------------------------------------------------------------------------------- /FakeSkype/tinyxml/tinyXmlTest___Win32_Debug/BuildLog.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/tinyXmlTest___Win32_Debug/BuildLog.htm -------------------------------------------------------------------------------- /FakeSkype/tinyxml/tinyXmlTest___Win32_Debug/mt.dep: -------------------------------------------------------------------------------- 1 | Manifest resource last updated at 15:05:29,81 on 06/02/2007 2 | -------------------------------------------------------------------------------- /FakeSkype/tinyxml/tinyXmlTest___Win32_Debug/tinyXmlTest.bsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/tinyXmlTest___Win32_Debug/tinyXmlTest.bsc -------------------------------------------------------------------------------- /FakeSkype/tinyxml/tinyXmlTest___Win32_Debug/tinyXmlTest.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/tinyXmlTest___Win32_Debug/tinyXmlTest.exe -------------------------------------------------------------------------------- /FakeSkype/tinyxml/tinyXmlTest___Win32_Debug/tinyXmlTest.exe.embed.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/tinyXmlTest___Win32_Debug/tinyXmlTest.exe.embed.manifest -------------------------------------------------------------------------------- /FakeSkype/tinyxml/tinyXmlTest___Win32_Debug/tinyXmlTest.exe.embed.manifest.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/tinyXmlTest___Win32_Debug/tinyXmlTest.exe.embed.manifest.res -------------------------------------------------------------------------------- /FakeSkype/tinyxml/tinyXmlTest___Win32_Debug/tinyXmlTest.exe.intermediate.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/tinyXmlTest___Win32_Debug/tinyXmlTest.exe.intermediate.manifest -------------------------------------------------------------------------------- /FakeSkype/tinyxml/tinyXmlTest___Win32_Debug/tinyXmlTest.ilk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/tinyXmlTest___Win32_Debug/tinyXmlTest.ilk -------------------------------------------------------------------------------- /FakeSkype/tinyxml/tinyXmlTest___Win32_Debug/tinyXmlTest.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/tinyXmlTest___Win32_Debug/tinyXmlTest.pdb -------------------------------------------------------------------------------- /FakeSkype/tinyxml/tinyXmlTest___Win32_Debug/vc80.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/tinyXmlTest___Win32_Debug/vc80.idb -------------------------------------------------------------------------------- /FakeSkype/tinyxml/tinyXmlTest___Win32_Debug/vc80.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/tinyXmlTest___Win32_Debug/vc80.pdb -------------------------------------------------------------------------------- /FakeSkype/tinyxml/tinyXmlTest___Win32_Debug/xmltest.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/tinyXmlTest___Win32_Debug/xmltest.obj -------------------------------------------------------------------------------- /FakeSkype/tinyxml/tinyXmlTest___Win32_Debug/xmltest.sbr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FakeSkype/tinyxml/tinyXmlTest___Win32_Release/BuildLog.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/tinyXmlTest___Win32_Release/BuildLog.htm -------------------------------------------------------------------------------- /FakeSkype/tinyxml/tinyXmlTest___Win32_Release/mt.dep: -------------------------------------------------------------------------------- 1 | Manifest resource last updated at 15:06:34,84 on 06/02/2007 2 | -------------------------------------------------------------------------------- /FakeSkype/tinyxml/tinyXmlTest___Win32_Release/tinyXmlTest.bsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/tinyXmlTest___Win32_Release/tinyXmlTest.bsc -------------------------------------------------------------------------------- /FakeSkype/tinyxml/tinyXmlTest___Win32_Release/tinyXmlTest.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/tinyXmlTest___Win32_Release/tinyXmlTest.exe -------------------------------------------------------------------------------- /FakeSkype/tinyxml/tinyXmlTest___Win32_Release/tinyXmlTest.exe.intermediate.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/tinyXmlTest___Win32_Release/tinyXmlTest.exe.intermediate.manifest -------------------------------------------------------------------------------- /FakeSkype/tinyxml/tinyXmlTest___Win32_Release/vc80.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/tinyXmlTest___Win32_Release/vc80.idb -------------------------------------------------------------------------------- /FakeSkype/tinyxml/tinyXmlTest___Win32_Release/xmltest.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/tinyXmlTest___Win32_Release/xmltest.obj -------------------------------------------------------------------------------- /FakeSkype/tinyxml/tinyXmlTest___Win32_Release/xmltest.sbr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FakeSkype/tinyxml/tinystr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/tinystr.cpp -------------------------------------------------------------------------------- /FakeSkype/tinyxml/tinystr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/tinystr.h -------------------------------------------------------------------------------- /FakeSkype/tinyxml/tinyxml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/tinyxml.cpp -------------------------------------------------------------------------------- /FakeSkype/tinyxml/tinyxml.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/tinyxml.dsw -------------------------------------------------------------------------------- /FakeSkype/tinyxml/tinyxml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/tinyxml.h -------------------------------------------------------------------------------- /FakeSkype/tinyxml/tinyxml.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/tinyxml.lib -------------------------------------------------------------------------------- /FakeSkype/tinyxml/tinyxml.ncb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/tinyxml.ncb -------------------------------------------------------------------------------- /FakeSkype/tinyxml/tinyxml.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/tinyxml.sln -------------------------------------------------------------------------------- /FakeSkype/tinyxml/tinyxml.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/tinyxml.suo -------------------------------------------------------------------------------- /FakeSkype/tinyxml/tinyxmlSTL.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/tinyxmlSTL.dsp -------------------------------------------------------------------------------- /FakeSkype/tinyxml/tinyxmlSTL.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/tinyxmlSTL.vcproj -------------------------------------------------------------------------------- /FakeSkype/tinyxml/tinyxmlSTL.vcproj.WENGO-MAINFRAME.Administrateur.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/tinyxmlSTL.vcproj.WENGO-MAINFRAME.Administrateur.user -------------------------------------------------------------------------------- /FakeSkype/tinyxml/tinyxml_lib.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/tinyxml_lib.dsp -------------------------------------------------------------------------------- /FakeSkype/tinyxml/tinyxml_lib.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/tinyxml_lib.vcproj -------------------------------------------------------------------------------- /FakeSkype/tinyxml/tinyxml_lib.vcproj.WENGO-MAINFRAME.Administrateur.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/tinyxml_lib.vcproj.WENGO-MAINFRAME.Administrateur.user -------------------------------------------------------------------------------- /FakeSkype/tinyxml/tinyxmlerror.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/tinyxmlerror.cpp -------------------------------------------------------------------------------- /FakeSkype/tinyxml/tinyxmlparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/tinyxmlparser.cpp -------------------------------------------------------------------------------- /FakeSkype/tinyxml/utf8test.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/utf8test.gif -------------------------------------------------------------------------------- /FakeSkype/tinyxml/utf8test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/utf8test.xml -------------------------------------------------------------------------------- /FakeSkype/tinyxml/utf8testverify.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/utf8testverify.xml -------------------------------------------------------------------------------- /FakeSkype/tinyxml/xmltest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/FakeSkype/tinyxml/xmltest.cpp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/README.md -------------------------------------------------------------------------------- /SkypeKeyServer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/SkypeKeyServer.sln -------------------------------------------------------------------------------- /SkypeKeyServer.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/SkypeKeyServer.suo -------------------------------------------------------------------------------- /SkypeKeyServer/SkypeKeyServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/SkypeKeyServer/SkypeKeyServer.cpp -------------------------------------------------------------------------------- /SkypeKeyServer/SkypeKeyServer.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/SkypeKeyServer/SkypeKeyServer.vcproj -------------------------------------------------------------------------------- /SkypeKeyServer/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/SkypeKeyServer/stdafx.cpp -------------------------------------------------------------------------------- /SkypeKeyServer/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/SkypeKeyServer/stdafx.h -------------------------------------------------------------------------------- /release/FakeSkype.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/release/FakeSkype.exe -------------------------------------------------------------------------------- /release/FakeSkype.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/release/FakeSkype.map -------------------------------------------------------------------------------- /release/FakeSkype.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/release/FakeSkype.pdb -------------------------------------------------------------------------------- /release/libeay32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/release/libeay32.dll -------------------------------------------------------------------------------- /release/ssleay32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouani/Skype/HEAD/release/ssleay32.dll --------------------------------------------------------------------------------