├── .gitignore ├── CMakeLists.txt ├── Log.sh ├── README.md ├── Run.sh.example ├── base ├── Imp │ ├── nAnalysis.cpp │ ├── nAny.cpp │ ├── nArgp.cpp │ ├── nArgp.h │ ├── nAssert.cpp │ ├── nAsyncSqlThread.cpp │ ├── nBaseCommandCtl.cpp │ ├── nBaseFilterService.cpp │ ├── nBaseHttpService.cpp │ ├── nBaseMessageService.cpp │ ├── nBaseMonitorService.cpp │ ├── nBaseScriptObj.cpp │ ├── nBaseServer.cpp │ ├── nBaseTickService.cpp │ ├── nBinaryQueue.cpp │ ├── nBloomFilter.cpp │ ├── nBloomFilterImp.h │ ├── nByteBuffer.cpp │ ├── nClientConn.cpp │ ├── nClientConnService.cpp │ ├── nClientConnService.h │ ├── nCmdQueue.cpp │ ├── nConfigFile.cpp │ ├── nConnectServerData.cpp │ ├── nDBConnection.cpp │ ├── nDBConnectionPool.cpp │ ├── nDBUrlManager.cpp │ ├── nDataManager.cpp │ ├── nDebugger.cpp │ ├── nDictionary.cpp │ ├── nEncoding.cpp │ ├── nEncrypt.cpp │ ├── nEventLaunch.cpp │ ├── nEventObserver.cpp │ ├── nFile.cpp │ ├── nHttpClient.cpp │ ├── nHttpCommandCtl.cpp │ ├── nHttpRequest.cpp │ ├── nListenService.cpp │ ├── nListenService.h │ ├── nLogger.cpp │ ├── nLoggerThread.cpp │ ├── nLoggerThread.h │ ├── nLuaState.cpp │ ├── nMailClient.cpp │ ├── nMemoryMappedFile.cpp │ ├── nMisc.cpp │ ├── nObj.cpp │ ├── nParamMap.cpp │ ├── nQQCloudCommandCtl.cpp │ ├── nRTXClient.cpp │ ├── nRegex.cpp │ ├── nScheduleService.cpp │ ├── nScheduleTimer.cpp │ ├── nSelfConn.cpp │ ├── nServerConn.cpp │ ├── nServerConnManager.cpp │ ├── nServerTickTimer.cpp │ ├── nShareMemory.cpp │ ├── nSocket.cpp │ ├── nSocket.h │ ├── nSocketPortData.cpp │ ├── nStringTool.cpp │ ├── nTaskConn.cpp │ ├── nTaskConnService.cpp │ ├── nTaskConnService.h │ ├── nTaskThreadManager.h │ ├── nTelnetCommandCtl.cpp │ ├── nThread.cpp │ ├── nThreadManager.cpp │ ├── nThreadManager.h │ ├── nThreadMonitor.cpp │ ├── nThreadMonitor.h │ ├── nTime.cpp │ ├── nTimerManager.cpp │ ├── nXMLParser.cpp │ ├── nZip.cpp │ └── nZlib.cpp ├── Tidy.h ├── nAnalysis.h ├── nAny.h ├── nAssert.h ├── nAsyncSqlThread.h ├── nBase.cpp ├── nBaseFilterService.h ├── nBaseHttpService.h ├── nBaseMessageService.h ├── nBaseMonitorService.h ├── nBaseScriptObj.h ├── nBaseServer.h ├── nBaseTickService.h ├── nBinaryQueue.h ├── nBloomFilter.h ├── nByteBuffer.h ├── nClassManager.h ├── nClientConn.h ├── nCmdQueue.h ├── nCommandCtl.h ├── nCondition.h ├── nConfigFile.h ├── nConnectServerData.h ├── nConstLengthReadOnlyArray.h ├── nConstructInPlace.h ├── nDBConnection.h ├── nDBConnectionPool.h ├── nDBUrlManager.h ├── nDataManager.h ├── nDataSet.h ├── nDebugger.h ├── nDictionary.h ├── nEncoding.h ├── nEncrypt.h ├── nEventCheck.h ├── nEventLaunch.h ├── nEventObserver.h ├── nFile.h ├── nGroupManager.h ├── nHashListTable.h ├── nHashTable.h ├── nHttpClient.h ├── nHttpRequest.h ├── nIDManager.h ├── nListTable.h ├── nLogger.h ├── nLuaState.h ├── nMailClient.h ├── nManager.h ├── nMemoryMappedFile.h ├── nMisc.h ├── nMutex.h ├── nObj.h ├── nObjLogger.h ├── nParamMap.h ├── nRTXClient.h ├── nRWLock.h ├── nRandom.h ├── nRange.h ├── nRegex.h ├── nSTL.h ├── nScheduleService.h ├── nScheduleTimer.h ├── nSelfConn.h ├── nSequence.h ├── nServerConn.h ├── nServerConnManager.h ├── nServerTickTimer.h ├── nShareMemory.h ├── nSig.h ├── nSingleton.h ├── nSocketPortData.h ├── nState.h ├── nStateMachine.h ├── nStringTool.h ├── nSys.h ├── nTableManager.h ├── nTaskConn.h ├── nTaskQueue.h ├── nThread.h ├── nTime.h ├── nTimer.h ├── nTimerManager.h ├── nType.h ├── nVectorTable.h ├── nXMLParser.h ├── nZip.h └── nZlib.h ├── config ├── CommonFuncConfig.xml ├── CommonFuncConfig.xsd ├── Filter.dat ├── GameConfig.xml ├── Schedule.xml ├── Table │ ├── FilterBaseTable.tbl │ ├── ItemBaseTable.tbl │ └── SceneTable.tbl ├── TableConfig.xml ├── ZoneConfig.xml.example └── ZoneConfig.xsd ├── dataServer ├── Mail │ ├── dtMailService.cpp │ └── dtParseProtoMail.cpp ├── dtGMCommand.cpp ├── dtGMCommand.h ├── dtLoginService.cpp ├── dtLoginService.h ├── dtMailService.h ├── dtMessageService.cpp ├── dtMessageService.h ├── dtParseForward.cpp ├── dtParseProto.cpp ├── dtParseProtoLogin.cpp ├── dtParseProtoRelation.cpp ├── dtParseProtoSerialize.cpp ├── dtParseProtoUser.cpp ├── dtParseServerRun.cpp ├── dtSerializeService.cpp ├── dtSerializeService.h ├── dtServer.cpp ├── dtServer.h ├── dtUser.cpp ├── dtUser.h ├── dtUserService.cpp └── dtUserService.h ├── game ├── Imp │ ├── SpecialType.cpp │ ├── nAlgebra.cpp │ ├── nBaseGameMessageService.cpp │ ├── nBaseMap.cpp │ ├── nEquipData.cpp │ ├── nGameScript.cpp │ ├── nGameServer.cpp │ ├── nGameTickService.cpp │ ├── nItem.cpp │ ├── nItemData.cpp │ ├── nMiscDataSerialize.cpp │ ├── nParamConfig.cpp │ ├── nParseProtoServerRun.cpp │ ├── nPublicDefine.cpp │ ├── nSpecialType.cpp │ ├── nSsqls.cpp │ ├── nTable.cpp │ ├── nTableBase.cpp │ └── nTableManager.cpp ├── LuaPkg │ ├── nGameScript.pkg │ └── nScriptObj.pkg ├── nAlgebra.h ├── nAlgo.h ├── nBaseGameMessageService.h ├── nBaseManager.h ├── nBaseMap.h ├── nBasePackage.h ├── nBaseRoom.h ├── nChatService.h ├── nConvert.h ├── nDuplManager.h ├── nEquipData.h ├── nEvent.h ├── nGMCommand.h ├── nGame.cpp ├── nGameMessageService.h ├── nGameScript.h ├── nGameServer.h ├── nGameTickService.h ├── nItem.h ├── nItemData.h ├── nItemManager.h ├── nItemPackage.h ├── nMailService.h ├── nMapService.h ├── nMiscDataSerialize.h ├── nObject.h ├── nParamConfigData.h ├── nPetManager.h ├── nPos.h ├── nPublicDefine.h ├── nRect.h ├── nRegion.h ├── nRoomObj.h ├── nScriptObj.h ├── nService.h ├── nSpecialType.h ├── nSqlData.h ├── nSsqls.h ├── nStaticIndex.h ├── nTable.h ├── nTableBase.h ├── nTableFactory.h ├── nTableManager.h ├── nTableRegister.h ├── nTaskManager.h ├── nTrumpManager.h ├── nUser.h └── nUserManager.h ├── gatewayServer ├── Filter │ └── gwFilterService.cpp ├── gwConfigService.cpp ├── gwConfigService.h ├── gwFilterService.h ├── gwLogicConn.cpp ├── gwLogicConn.h ├── gwLoginService.cpp ├── gwLoginService.h ├── gwLoginSession.cpp ├── gwLoginSession.h ├── gwLoginSessionManager.cpp ├── gwLoginSessionManager.h ├── gwMessageService.cpp ├── gwMessageService.h ├── gwParseForward.cpp ├── gwParseProtoLogin.cpp ├── gwParseProtoUser.cpp ├── gwParseProtocol.cpp ├── gwParseServerRun.cpp ├── gwServer.cpp ├── gwServer.h ├── gwTelnetService.cpp ├── gwTelnetService.h ├── gwUser.cpp ├── gwUser.h ├── gwUserNet.cpp ├── gwUserService.cpp ├── gwUserService.h ├── gwUserTaskConn.cpp └── gwUserTaskConn.h ├── protocol ├── Proto │ ├── Club.pb.cc │ ├── Club.pb.h │ ├── Club.proto │ ├── Club_pb2.py │ ├── EquipAttribute.pb.cc │ ├── EquipAttribute.pb.h │ ├── EquipAttribute.proto │ ├── EquipAttribute_pb2.py │ ├── ItemData.pb.cc │ ├── ItemData.pb.h │ ├── ItemData.proto │ ├── ItemData_pb2.py │ ├── Licence.txt │ ├── Mail.pb.cc │ ├── Mail.pb.h │ ├── Mail.proto │ ├── Mail_pb2.py │ ├── Platform.cs │ ├── Platform.pb.cc │ ├── Platform.pb.h │ ├── Platform.proto │ ├── Platform_pb2.py │ ├── RoomData.pb.cc │ ├── RoomData.pb.h │ ├── RoomData.proto │ ├── RoomData_pb2.py │ ├── SequenceData.pb.cc │ ├── SequenceData.pb.h │ ├── SequenceData.proto │ ├── SequenceData_pb2.py │ ├── SerializeData.pb.cc │ ├── SerializeData.pb.h │ ├── SerializeData.proto │ ├── SerializeData_pb2.py │ ├── ServerRunData.pb.cc │ ├── ServerRunData.pb.h │ ├── ServerRunData.proto │ ├── ServerRunData_pb2.py │ ├── UserData.pb.cc │ ├── UserData.pb.h │ ├── UserData.proto │ ├── UserData_pb2.py │ ├── __init__.py │ ├── common.xslt │ ├── csharp.xslt │ ├── protobuf-net.xml │ ├── protoc-license.txt │ ├── vb.xslt │ └── xml.xslt ├── __init__.py ├── adminCommand.h ├── adminCommon.h ├── baseCommand.cpp ├── baseCommand.h ├── commonType.h ├── equipAttribute.h ├── equipData.h ├── forwardCommand.h ├── itemAttribute.h ├── itemCommand.h ├── itemCommon.h ├── loginCommand.h ├── loginCommon.h ├── magicCommon.h ├── mailCommand.h ├── mailCommon.h ├── moneyCommon.h ├── netCommand.h ├── packageCommon.h ├── platformCommand.h ├── platformCommon.h ├── relationCommand.h ├── relationCommon.h ├── serializeCommand.h ├── serializeCommon.h ├── serverInfo.h ├── serverRunCommand.h ├── serverRunCommon.h ├── userCommand.h └── userCommon.h ├── sql ├── .svnignore ├── database.py.example ├── dbtool.py ├── installAdmin.sql ├── installGame.sql ├── my.cnf ├── updateAdmin.sql ├── updateGame.sql ├── versionAdmin.sql └── versionGame.sql ├── third_party ├── 7z-4.65 │ ├── Asm │ │ ├── x64 │ │ │ └── 7zCrcT8U.asm │ │ └── x86 │ │ │ └── 7zCrcT8U.asm │ ├── C │ │ ├── 7z.sln │ │ ├── 7zBuf.c │ │ ├── 7zBuf.h │ │ ├── 7zBuf2.c │ │ ├── 7zCrc.c │ │ ├── 7zCrc.h │ │ ├── 7zCrcT8.c │ │ ├── 7zFile.c │ │ ├── 7zFile.h │ │ ├── 7zStream.c │ │ ├── 7zVersion.h │ │ ├── Aes.c │ │ ├── Aes.h │ │ ├── Alloc.c │ │ ├── Alloc.h │ │ ├── Archive │ │ │ └── 7z │ │ │ │ ├── 7z.dsp │ │ │ │ ├── 7z.dsw │ │ │ │ ├── 7z.vcproj │ │ │ │ ├── 7zAlloc.c │ │ │ │ ├── 7zAlloc.h │ │ │ │ ├── 7zDecode.c │ │ │ │ ├── 7zDecode.h │ │ │ │ ├── 7zExtract.c │ │ │ │ ├── 7zExtract.h │ │ │ │ ├── 7zHeader.c │ │ │ │ ├── 7zHeader.h │ │ │ │ ├── 7zIn.c │ │ │ │ ├── 7zIn.h │ │ │ │ ├── 7zItem.c │ │ │ │ ├── 7zItem.h │ │ │ │ ├── 7zMain.c │ │ │ │ ├── 7zlib.vcproj │ │ │ │ ├── makefile │ │ │ │ └── makefile.gcc │ │ ├── Bcj2.c │ │ ├── Bcj2.h │ │ ├── Bra.c │ │ ├── Bra.h │ │ ├── Bra86.c │ │ ├── BraIA64.c │ │ ├── BwtSort.c │ │ ├── BwtSort.h │ │ ├── CpuArch.h │ │ ├── HuffEnc.c │ │ ├── HuffEnc.h │ │ ├── LzFind.c │ │ ├── LzFind.h │ │ ├── LzFindMt.c │ │ ├── LzFindMt.h │ │ ├── LzHash.h │ │ ├── LzmaDec.c │ │ ├── LzmaDec.h │ │ ├── LzmaEnc.c │ │ ├── LzmaEnc.h │ │ ├── LzmaLib.c │ │ ├── LzmaLib.h │ │ ├── LzmaLib │ │ │ ├── LzmaLib.def │ │ │ ├── LzmaLib.dsp │ │ │ ├── LzmaLib.dsw │ │ │ ├── LzmaLib.vcproj │ │ │ ├── LzmaLibExports.c │ │ │ ├── makefile │ │ │ └── resource.rc │ │ ├── LzmaUtil │ │ │ ├── Lzma86Dec.c │ │ │ ├── Lzma86Dec.h │ │ │ ├── Lzma86Enc.c │ │ │ ├── Lzma86Enc.h │ │ │ ├── LzmaUtil.c │ │ │ ├── LzmaUtil.dsp │ │ │ ├── LzmaUtil.dsw │ │ │ ├── LzmaUtil.vcproj │ │ │ ├── makefile │ │ │ └── makefile.gcc │ │ ├── RotateDefs.h │ │ ├── Sha256.c │ │ ├── Sha256.h │ │ ├── Sort.c │ │ ├── Sort.h │ │ ├── Threads.c │ │ ├── Threads.h │ │ └── Types.h │ ├── CPP │ │ ├── 7zip │ │ │ ├── Archive │ │ │ │ ├── 7z │ │ │ │ │ ├── 7z.dsp │ │ │ │ │ ├── 7z.dsw │ │ │ │ │ ├── 7zCompressionMode.cpp │ │ │ │ │ ├── 7zCompressionMode.h │ │ │ │ │ ├── 7zDecode.cpp │ │ │ │ │ ├── 7zDecode.h │ │ │ │ │ ├── 7zEncode.cpp │ │ │ │ │ ├── 7zEncode.h │ │ │ │ │ ├── 7zExtract.cpp │ │ │ │ │ ├── 7zFolderInStream.cpp │ │ │ │ │ ├── 7zFolderInStream.h │ │ │ │ │ ├── 7zFolderOutStream.cpp │ │ │ │ │ ├── 7zFolderOutStream.h │ │ │ │ │ ├── 7zHandler.cpp │ │ │ │ │ ├── 7zHandler.h │ │ │ │ │ ├── 7zHandlerOut.cpp │ │ │ │ │ ├── 7zHeader.cpp │ │ │ │ │ ├── 7zHeader.h │ │ │ │ │ ├── 7zIn.cpp │ │ │ │ │ ├── 7zIn.h │ │ │ │ │ ├── 7zItem.h │ │ │ │ │ ├── 7zOut.cpp │ │ │ │ │ ├── 7zOut.h │ │ │ │ │ ├── 7zProperties.cpp │ │ │ │ │ ├── 7zProperties.h │ │ │ │ │ ├── 7zRegister.cpp │ │ │ │ │ ├── 7zSpecStream.cpp │ │ │ │ │ ├── 7zSpecStream.h │ │ │ │ │ ├── 7zUpdate.cpp │ │ │ │ │ ├── 7zUpdate.h │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ ├── makefile │ │ │ │ │ └── resource.rc │ │ │ │ ├── Archive.def │ │ │ │ ├── Archive2.def │ │ │ │ ├── ArchiveExports.cpp │ │ │ │ ├── ArjHandler.cpp │ │ │ │ ├── BZip2 │ │ │ │ │ ├── BZip2Handler.cpp │ │ │ │ │ ├── BZip2Handler.h │ │ │ │ │ ├── BZip2HandlerOut.cpp │ │ │ │ │ ├── BZip2Item.h │ │ │ │ │ ├── BZip2Update.cpp │ │ │ │ │ ├── BZip2Update.h │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ └── bz2Register.cpp │ │ │ │ ├── Cab │ │ │ │ │ ├── CabBlockInStream.cpp │ │ │ │ │ ├── CabBlockInStream.h │ │ │ │ │ ├── CabHandler.cpp │ │ │ │ │ ├── CabHandler.h │ │ │ │ │ ├── CabHeader.cpp │ │ │ │ │ ├── CabHeader.h │ │ │ │ │ ├── CabIn.cpp │ │ │ │ │ ├── CabIn.h │ │ │ │ │ ├── CabItem.h │ │ │ │ │ ├── CabRegister.cpp │ │ │ │ │ └── StdAfx.h │ │ │ │ ├── Chm │ │ │ │ │ ├── ChmHandler.cpp │ │ │ │ │ ├── ChmHandler.h │ │ │ │ │ ├── ChmHeader.cpp │ │ │ │ │ ├── ChmHeader.h │ │ │ │ │ ├── ChmIn.cpp │ │ │ │ │ ├── ChmIn.h │ │ │ │ │ ├── ChmRegister.cpp │ │ │ │ │ └── StdAfx.h │ │ │ │ ├── Com │ │ │ │ │ ├── ComHandler.cpp │ │ │ │ │ ├── ComHandler.h │ │ │ │ │ ├── ComIn.cpp │ │ │ │ │ ├── ComIn.h │ │ │ │ │ └── ComRegister.cpp │ │ │ │ ├── Common │ │ │ │ │ ├── CoderMixer.cpp │ │ │ │ │ ├── CoderMixer.h │ │ │ │ │ ├── CoderMixer2.cpp │ │ │ │ │ ├── CoderMixer2.h │ │ │ │ │ ├── CoderMixer2MT.cpp │ │ │ │ │ ├── CoderMixer2MT.h │ │ │ │ │ ├── CoderMixer2ST.cpp │ │ │ │ │ ├── CoderMixer2ST.h │ │ │ │ │ ├── CoderMixerMT.cpp │ │ │ │ │ ├── CoderMixerMT.h │ │ │ │ │ ├── CrossThreadProgress.cpp │ │ │ │ │ ├── CrossThreadProgress.h │ │ │ │ │ ├── DummyOutStream.cpp │ │ │ │ │ ├── DummyOutStream.h │ │ │ │ │ ├── FindSignature.cpp │ │ │ │ │ ├── FindSignature.h │ │ │ │ │ ├── HandlerOut.cpp │ │ │ │ │ ├── HandlerOut.h │ │ │ │ │ ├── InStreamWithCRC.cpp │ │ │ │ │ ├── InStreamWithCRC.h │ │ │ │ │ ├── ItemNameUtils.cpp │ │ │ │ │ ├── ItemNameUtils.h │ │ │ │ │ ├── MultiStream.cpp │ │ │ │ │ ├── MultiStream.h │ │ │ │ │ ├── OutStreamWithCRC.cpp │ │ │ │ │ ├── OutStreamWithCRC.h │ │ │ │ │ ├── OutStreamWithSha1.cpp │ │ │ │ │ ├── OutStreamWithSha1.h │ │ │ │ │ ├── ParseProperties.cpp │ │ │ │ │ ├── ParseProperties.h │ │ │ │ │ └── StdAfx.h │ │ │ │ ├── Cpio │ │ │ │ │ ├── CpioHandler.cpp │ │ │ │ │ ├── CpioHandler.h │ │ │ │ │ ├── CpioHeader.cpp │ │ │ │ │ ├── CpioHeader.h │ │ │ │ │ ├── CpioIn.cpp │ │ │ │ │ ├── CpioIn.h │ │ │ │ │ ├── CpioItem.h │ │ │ │ │ ├── CpioRegister.cpp │ │ │ │ │ └── StdAfx.h │ │ │ │ ├── DebHandler.cpp │ │ │ │ ├── DllExports.cpp │ │ │ │ ├── DllExports2.cpp │ │ │ │ ├── DmgHandler.cpp │ │ │ │ ├── ElfHandler.cpp │ │ │ │ ├── GZip │ │ │ │ │ ├── GZipHandler.cpp │ │ │ │ │ ├── GZipHandler.h │ │ │ │ │ ├── GZipHandlerOut.cpp │ │ │ │ │ ├── GZipHeader.cpp │ │ │ │ │ ├── GZipHeader.h │ │ │ │ │ ├── GZipIn.cpp │ │ │ │ │ ├── GZipIn.h │ │ │ │ │ ├── GZipItem.h │ │ │ │ │ ├── GZipOut.cpp │ │ │ │ │ ├── GZipOut.h │ │ │ │ │ ├── GZipRegister.cpp │ │ │ │ │ ├── GZipUpdate.cpp │ │ │ │ │ ├── GZipUpdate.h │ │ │ │ │ └── StdAfx.h │ │ │ │ ├── Hfs │ │ │ │ │ ├── HfsHandler.cpp │ │ │ │ │ ├── HfsHandler.h │ │ │ │ │ ├── HfsIn.cpp │ │ │ │ │ ├── HfsIn.h │ │ │ │ │ └── HfsRegister.cpp │ │ │ │ ├── IArchive.h │ │ │ │ ├── Icons │ │ │ │ │ ├── 7z.ico │ │ │ │ │ ├── arj.ico │ │ │ │ │ ├── bz2.ico │ │ │ │ │ ├── cab.ico │ │ │ │ │ ├── cpio.ico │ │ │ │ │ ├── deb.ico │ │ │ │ │ ├── dmg.ico │ │ │ │ │ ├── gz.ico │ │ │ │ │ ├── hfs.ico │ │ │ │ │ ├── iso.ico │ │ │ │ │ ├── lzh.ico │ │ │ │ │ ├── lzma.ico │ │ │ │ │ ├── rar.ico │ │ │ │ │ ├── rpm.ico │ │ │ │ │ ├── split.ico │ │ │ │ │ ├── tar.ico │ │ │ │ │ ├── wim.ico │ │ │ │ │ ├── xar.ico │ │ │ │ │ ├── z.ico │ │ │ │ │ └── zip.ico │ │ │ │ ├── Iso │ │ │ │ │ ├── IsoHandler.cpp │ │ │ │ │ ├── IsoHandler.h │ │ │ │ │ ├── IsoHeader.cpp │ │ │ │ │ ├── IsoHeader.h │ │ │ │ │ ├── IsoIn.cpp │ │ │ │ │ ├── IsoIn.h │ │ │ │ │ ├── IsoItem.h │ │ │ │ │ ├── IsoRegister.cpp │ │ │ │ │ └── StdAfx.h │ │ │ │ ├── Lzh │ │ │ │ │ ├── LzhCRC.cpp │ │ │ │ │ ├── LzhCRC.h │ │ │ │ │ ├── LzhHandler.cpp │ │ │ │ │ ├── LzhHandler.h │ │ │ │ │ ├── LzhHeader.h │ │ │ │ │ ├── LzhIn.cpp │ │ │ │ │ ├── LzhIn.h │ │ │ │ │ ├── LzhItem.h │ │ │ │ │ ├── LzhOutStreamWithCRC.cpp │ │ │ │ │ ├── LzhOutStreamWithCRC.h │ │ │ │ │ ├── LzhRegister.cpp │ │ │ │ │ └── StdAfx.h │ │ │ │ ├── Lzma │ │ │ │ │ ├── LzmaArcRegister.cpp │ │ │ │ │ ├── LzmaFiltersDecode.cpp │ │ │ │ │ ├── LzmaFiltersDecode.h │ │ │ │ │ ├── LzmaHandler.cpp │ │ │ │ │ ├── LzmaHandler.h │ │ │ │ │ ├── LzmaIn.cpp │ │ │ │ │ ├── LzmaIn.h │ │ │ │ │ ├── LzmaItem.h │ │ │ │ │ └── StdAfx.h │ │ │ │ ├── MachoHandler.cpp │ │ │ │ ├── MubHandler.cpp │ │ │ │ ├── Nsis │ │ │ │ │ ├── NsisDecode.cpp │ │ │ │ │ ├── NsisDecode.h │ │ │ │ │ ├── NsisHandler.cpp │ │ │ │ │ ├── NsisHandler.h │ │ │ │ │ ├── NsisIn.cpp │ │ │ │ │ ├── NsisIn.h │ │ │ │ │ ├── NsisRegister.cpp │ │ │ │ │ └── StdAfx.h │ │ │ │ ├── PeHandler.cpp │ │ │ │ ├── Rar │ │ │ │ │ ├── RarHandler.cpp │ │ │ │ │ ├── RarHandler.h │ │ │ │ │ ├── RarHeader.cpp │ │ │ │ │ ├── RarHeader.h │ │ │ │ │ ├── RarIn.cpp │ │ │ │ │ ├── RarIn.h │ │ │ │ │ ├── RarItem.cpp │ │ │ │ │ ├── RarItem.h │ │ │ │ │ ├── RarRegister.cpp │ │ │ │ │ ├── RarVolumeInStream.cpp │ │ │ │ │ ├── RarVolumeInStream.h │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ └── StdAfx.h │ │ │ │ ├── RpmHandler.cpp │ │ │ │ ├── Split │ │ │ │ │ ├── SplitHandler.cpp │ │ │ │ │ ├── SplitHandler.h │ │ │ │ │ ├── SplitHandlerOut.cpp │ │ │ │ │ ├── SplitRegister.cpp │ │ │ │ │ └── StdAfx.h │ │ │ │ ├── StdAfx.h │ │ │ │ ├── Tar │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ ├── TarHandler.cpp │ │ │ │ │ ├── TarHandler.h │ │ │ │ │ ├── TarHandlerOut.cpp │ │ │ │ │ ├── TarHeader.cpp │ │ │ │ │ ├── TarHeader.h │ │ │ │ │ ├── TarIn.cpp │ │ │ │ │ ├── TarIn.h │ │ │ │ │ ├── TarItem.h │ │ │ │ │ ├── TarOut.cpp │ │ │ │ │ ├── TarOut.h │ │ │ │ │ ├── TarRegister.cpp │ │ │ │ │ ├── TarUpdate.cpp │ │ │ │ │ └── TarUpdate.h │ │ │ │ ├── Udf │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ ├── UdfHandler.cpp │ │ │ │ │ ├── UdfHandler.h │ │ │ │ │ ├── UdfIn.cpp │ │ │ │ │ ├── UdfIn.h │ │ │ │ │ └── UdfRegister.cpp │ │ │ │ ├── Wim │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ ├── WimHandler.cpp │ │ │ │ │ ├── WimHandler.h │ │ │ │ │ ├── WimIn.cpp │ │ │ │ │ ├── WimIn.h │ │ │ │ │ └── WimRegister.cpp │ │ │ │ ├── XarHandler.cpp │ │ │ │ ├── ZHandler.cpp │ │ │ │ ├── Zip │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ ├── ZipAddCommon.cpp │ │ │ │ │ ├── ZipAddCommon.h │ │ │ │ │ ├── ZipCompressionMode.h │ │ │ │ │ ├── ZipHandler.cpp │ │ │ │ │ ├── ZipHandler.h │ │ │ │ │ ├── ZipHandlerOut.cpp │ │ │ │ │ ├── ZipHeader.cpp │ │ │ │ │ ├── ZipHeader.h │ │ │ │ │ ├── ZipIn.cpp │ │ │ │ │ ├── ZipIn.h │ │ │ │ │ ├── ZipItem.cpp │ │ │ │ │ ├── ZipItem.h │ │ │ │ │ ├── ZipItemEx.h │ │ │ │ │ ├── ZipOut.cpp │ │ │ │ │ ├── ZipOut.h │ │ │ │ │ ├── ZipRegister.cpp │ │ │ │ │ ├── ZipUpdate.cpp │ │ │ │ │ └── ZipUpdate.h │ │ │ │ └── makefile │ │ │ ├── Bundles │ │ │ │ ├── Alone │ │ │ │ │ ├── Alone.dsp │ │ │ │ │ ├── Alone.dsw │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ ├── afxres.h │ │ │ │ │ ├── makefile │ │ │ │ │ └── resource.rc │ │ │ │ ├── Alone7z │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ ├── makefile │ │ │ │ │ └── resource.rc │ │ │ │ ├── Format7z │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ ├── makefile │ │ │ │ │ └── resource.rc │ │ │ │ ├── Format7zExtract │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ ├── makefile │ │ │ │ │ └── resource.rc │ │ │ │ ├── Format7zExtractR │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ ├── makefile │ │ │ │ │ └── resource.rc │ │ │ │ ├── Format7zF │ │ │ │ │ ├── Format7z.dsp │ │ │ │ │ ├── Format7z.dsw │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ ├── makefile │ │ │ │ │ └── resource.rc │ │ │ │ ├── Format7zR │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ ├── makefile │ │ │ │ │ └── resource.rc │ │ │ │ ├── SFXCon │ │ │ │ │ ├── 7z.ico │ │ │ │ │ ├── Main.cpp │ │ │ │ │ ├── SFXCon.dsp │ │ │ │ │ ├── SFXCon.dsw │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ ├── makefile │ │ │ │ │ └── resource.rc │ │ │ │ ├── SFXSetup │ │ │ │ │ ├── ExtractCallback.cpp │ │ │ │ │ ├── ExtractCallback.h │ │ │ │ │ ├── ExtractEngine.cpp │ │ │ │ │ ├── ExtractEngine.h │ │ │ │ │ ├── Main.cpp │ │ │ │ │ ├── SFXSetup.dsp │ │ │ │ │ ├── SFXSetup.dsw │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ ├── makefile │ │ │ │ │ ├── resource.h │ │ │ │ │ ├── resource.rc │ │ │ │ │ └── setup.ico │ │ │ │ ├── SFXWin │ │ │ │ │ ├── 7z.ico │ │ │ │ │ ├── Main.cpp │ │ │ │ │ ├── SFXWin.dsp │ │ │ │ │ ├── SFXWin.dsw │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ ├── makefile │ │ │ │ │ ├── resource.h │ │ │ │ │ └── resource.rc │ │ │ │ └── makefile │ │ │ ├── Common │ │ │ │ ├── CreateCoder.cpp │ │ │ │ ├── CreateCoder.h │ │ │ │ ├── FilePathAutoRename.cpp │ │ │ │ ├── FilePathAutoRename.h │ │ │ │ ├── FileStreams.cpp │ │ │ │ ├── FileStreams.h │ │ │ │ ├── FilterCoder.cpp │ │ │ │ ├── FilterCoder.h │ │ │ │ ├── InBuffer.cpp │ │ │ │ ├── InBuffer.h │ │ │ │ ├── InMemStream.cpp │ │ │ │ ├── InMemStream.h │ │ │ │ ├── InOutTempBuffer.cpp │ │ │ │ ├── InOutTempBuffer.h │ │ │ │ ├── LimitedStreams.cpp │ │ │ │ ├── LimitedStreams.h │ │ │ │ ├── LockedStream.cpp │ │ │ │ ├── LockedStream.h │ │ │ │ ├── MemBlocks.cpp │ │ │ │ ├── MemBlocks.h │ │ │ │ ├── MethodId.cpp │ │ │ │ ├── MethodId.h │ │ │ │ ├── MethodProps.cpp │ │ │ │ ├── MethodProps.h │ │ │ │ ├── OffsetStream.cpp │ │ │ │ ├── OffsetStream.h │ │ │ │ ├── OutBuffer.cpp │ │ │ │ ├── OutBuffer.h │ │ │ │ ├── OutMemStream.cpp │ │ │ │ ├── OutMemStream.h │ │ │ │ ├── ProgressMt.cpp │ │ │ │ ├── ProgressMt.h │ │ │ │ ├── ProgressUtils.cpp │ │ │ │ ├── ProgressUtils.h │ │ │ │ ├── RegisterArc.h │ │ │ │ ├── RegisterCodec.h │ │ │ │ ├── StdAfx.h │ │ │ │ ├── StreamBinder.cpp │ │ │ │ ├── StreamBinder.h │ │ │ │ ├── StreamObjects.cpp │ │ │ │ ├── StreamObjects.h │ │ │ │ ├── StreamUtils.cpp │ │ │ │ ├── StreamUtils.h │ │ │ │ ├── VirtThread.cpp │ │ │ │ └── VirtThread.h │ │ │ ├── Compress │ │ │ │ ├── ArjDecoder1.cpp │ │ │ │ ├── ArjDecoder1.h │ │ │ │ ├── ArjDecoder2.cpp │ │ │ │ ├── ArjDecoder2.h │ │ │ │ ├── BZip2Const.h │ │ │ │ ├── BZip2Crc.cpp │ │ │ │ ├── BZip2Crc.h │ │ │ │ ├── BZip2Decoder.cpp │ │ │ │ ├── BZip2Decoder.h │ │ │ │ ├── BZip2Encoder.cpp │ │ │ │ ├── BZip2Encoder.h │ │ │ │ ├── BZip2Register.cpp │ │ │ │ ├── Bcj2Coder.cpp │ │ │ │ ├── Bcj2Coder.h │ │ │ │ ├── Bcj2Register.cpp │ │ │ │ ├── BcjCoder.cpp │ │ │ │ ├── BcjCoder.h │ │ │ │ ├── BcjRegister.cpp │ │ │ │ ├── BitlDecoder.cpp │ │ │ │ ├── BitlDecoder.h │ │ │ │ ├── BitlEncoder.h │ │ │ │ ├── BitmDecoder.h │ │ │ │ ├── BitmEncoder.h │ │ │ │ ├── BranchCoder.cpp │ │ │ │ ├── BranchCoder.h │ │ │ │ ├── BranchMisc.cpp │ │ │ │ ├── BranchMisc.h │ │ │ │ ├── BranchRegister.cpp │ │ │ │ ├── ByteSwap.cpp │ │ │ │ ├── ByteSwap.h │ │ │ │ ├── ByteSwapRegister.cpp │ │ │ │ ├── Codec.def │ │ │ │ ├── CodecExports.cpp │ │ │ │ ├── CopyCoder.cpp │ │ │ │ ├── CopyCoder.h │ │ │ │ ├── CopyRegister.cpp │ │ │ │ ├── Deflate64Register.cpp │ │ │ │ ├── DeflateConst.h │ │ │ │ ├── DeflateDecoder.cpp │ │ │ │ ├── DeflateDecoder.h │ │ │ │ ├── DeflateEncoder.cpp │ │ │ │ ├── DeflateEncoder.h │ │ │ │ ├── DeflateNsisRegister.cpp │ │ │ │ ├── DeflateRegister.cpp │ │ │ │ ├── DllExports.cpp │ │ │ │ ├── DllExports2.cpp │ │ │ │ ├── HuffmanDecoder.h │ │ │ │ ├── ImplodeDecoder.cpp │ │ │ │ ├── ImplodeDecoder.h │ │ │ │ ├── ImplodeHuffmanDecoder.cpp │ │ │ │ ├── ImplodeHuffmanDecoder.h │ │ │ │ ├── LZMA_Alone │ │ │ │ │ ├── AloneLZMA.dsp │ │ │ │ │ ├── AloneLZMA.dsw │ │ │ │ │ ├── LzmaAlone.cpp │ │ │ │ │ ├── LzmaBench.cpp │ │ │ │ │ ├── LzmaBench.h │ │ │ │ │ ├── LzmaBenchCon.cpp │ │ │ │ │ ├── LzmaBenchCon.h │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ ├── makefile │ │ │ │ │ └── makefile.gcc │ │ │ │ ├── LzOutWindow.cpp │ │ │ │ ├── LzOutWindow.h │ │ │ │ ├── LzhDecoder.cpp │ │ │ │ ├── LzhDecoder.h │ │ │ │ ├── LzmaDecoder.cpp │ │ │ │ ├── LzmaDecoder.h │ │ │ │ ├── LzmaEncoder.cpp │ │ │ │ ├── LzmaEncoder.h │ │ │ │ ├── LzmaRegister.cpp │ │ │ │ ├── Lzx.h │ │ │ │ ├── Lzx86Converter.cpp │ │ │ │ ├── Lzx86Converter.h │ │ │ │ ├── LzxDecoder.cpp │ │ │ │ ├── LzxDecoder.h │ │ │ │ ├── Mtf8.h │ │ │ │ ├── PpmdContext.h │ │ │ │ ├── PpmdDecode.h │ │ │ │ ├── PpmdDecoder.cpp │ │ │ │ ├── PpmdDecoder.h │ │ │ │ ├── PpmdEncode.h │ │ │ │ ├── PpmdEncoder.cpp │ │ │ │ ├── PpmdEncoder.h │ │ │ │ ├── PpmdRegister.cpp │ │ │ │ ├── PpmdSubAlloc.h │ │ │ │ ├── PpmdType.h │ │ │ │ ├── QuantumDecoder.cpp │ │ │ │ ├── QuantumDecoder.h │ │ │ │ ├── RangeCoder.h │ │ │ │ ├── RangeCoderBit.h │ │ │ │ ├── Rar1Decoder.cpp │ │ │ │ ├── Rar1Decoder.h │ │ │ │ ├── Rar2Decoder.cpp │ │ │ │ ├── Rar2Decoder.h │ │ │ │ ├── Rar3Decoder.cpp │ │ │ │ ├── Rar3Decoder.h │ │ │ │ ├── Rar3Vm.cpp │ │ │ │ ├── Rar3Vm.h │ │ │ │ ├── RarCodecsRegister.cpp │ │ │ │ ├── ShrinkDecoder.cpp │ │ │ │ ├── ShrinkDecoder.h │ │ │ │ ├── StdAfx.h │ │ │ │ ├── ZDecoder.cpp │ │ │ │ ├── ZDecoder.h │ │ │ │ ├── ZlibDecoder.cpp │ │ │ │ ├── ZlibDecoder.h │ │ │ │ └── makefile │ │ │ ├── Crc.mak │ │ │ ├── Crc2.mak │ │ │ ├── Crypto │ │ │ │ ├── 7zAes.cpp │ │ │ │ ├── 7zAes.h │ │ │ │ ├── 7zAesRegister.cpp │ │ │ │ ├── Codec.def │ │ │ │ ├── HmacSha1.cpp │ │ │ │ ├── HmacSha1.h │ │ │ │ ├── MyAes.cpp │ │ │ │ ├── MyAes.h │ │ │ │ ├── Pbkdf2HmacSha1.cpp │ │ │ │ ├── Pbkdf2HmacSha1.h │ │ │ │ ├── RandGen.cpp │ │ │ │ ├── RandGen.h │ │ │ │ ├── Rar20Crypto.cpp │ │ │ │ ├── Rar20Crypto.h │ │ │ │ ├── RarAes.cpp │ │ │ │ ├── RarAes.h │ │ │ │ ├── Sha1.cpp │ │ │ │ ├── Sha1.h │ │ │ │ ├── StdAfx.h │ │ │ │ ├── WzAes.cpp │ │ │ │ ├── WzAes.h │ │ │ │ ├── ZipCrypto.cpp │ │ │ │ ├── ZipCrypto.h │ │ │ │ ├── ZipStrong.cpp │ │ │ │ └── ZipStrong.h │ │ │ ├── GuiCommon.rc │ │ │ ├── Guid.txt │ │ │ ├── ICoder.h │ │ │ ├── IDecl.h │ │ │ ├── IPassword.h │ │ │ ├── IProgress.h │ │ │ ├── IStream.h │ │ │ ├── MyVersion.h │ │ │ ├── MyVersionInfo.rc │ │ │ ├── PropID.h │ │ │ ├── SubBuild.mak │ │ │ ├── UI │ │ │ │ ├── Agent │ │ │ │ │ ├── Agent.cpp │ │ │ │ │ ├── Agent.h │ │ │ │ │ ├── AgentOut.cpp │ │ │ │ │ ├── AgentProxy.cpp │ │ │ │ │ ├── AgentProxy.h │ │ │ │ │ ├── ArchiveFolder.cpp │ │ │ │ │ ├── ArchiveFolderOpen.cpp │ │ │ │ │ ├── ArchiveFolderOut.cpp │ │ │ │ │ ├── IFolderArchive.h │ │ │ │ │ ├── UpdateCallbackAgent.cpp │ │ │ │ │ └── UpdateCallbackAgent.h │ │ │ │ ├── Client7z │ │ │ │ │ ├── Client7z.cpp │ │ │ │ │ ├── Client7z.dsp │ │ │ │ │ ├── Client7z.dsw │ │ │ │ │ ├── Client7z.vcproj │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ └── makefile │ │ │ │ ├── Common │ │ │ │ │ ├── ArchiveCommandLine.cpp │ │ │ │ │ ├── ArchiveCommandLine.h │ │ │ │ │ ├── ArchiveExtractCallback.cpp │ │ │ │ │ ├── ArchiveExtractCallback.h │ │ │ │ │ ├── ArchiveName.cpp │ │ │ │ │ ├── ArchiveName.h │ │ │ │ │ ├── ArchiveOpenCallback.cpp │ │ │ │ │ ├── ArchiveOpenCallback.h │ │ │ │ │ ├── CompressCall.cpp │ │ │ │ │ ├── CompressCall.h │ │ │ │ │ ├── DefaultName.cpp │ │ │ │ │ ├── DefaultName.h │ │ │ │ │ ├── DirItem.h │ │ │ │ │ ├── EnumDirItems.cpp │ │ │ │ │ ├── EnumDirItems.h │ │ │ │ │ ├── ExitCode.h │ │ │ │ │ ├── Extract.cpp │ │ │ │ │ ├── Extract.h │ │ │ │ │ ├── ExtractMode.h │ │ │ │ │ ├── ExtractingFilePath.cpp │ │ │ │ │ ├── ExtractingFilePath.h │ │ │ │ │ ├── HandlerLoader.h │ │ │ │ │ ├── IFileExtractCallback.h │ │ │ │ │ ├── LoadCodecs.cpp │ │ │ │ │ ├── LoadCodecs.h │ │ │ │ │ ├── OpenArchive.cpp │ │ │ │ │ ├── OpenArchive.h │ │ │ │ │ ├── PropIDUtils.cpp │ │ │ │ │ ├── PropIDUtils.h │ │ │ │ │ ├── Property.h │ │ │ │ │ ├── SetProperties.cpp │ │ │ │ │ ├── SetProperties.h │ │ │ │ │ ├── SortUtils.cpp │ │ │ │ │ ├── SortUtils.h │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ ├── TempFiles.cpp │ │ │ │ │ ├── TempFiles.h │ │ │ │ │ ├── Update.cpp │ │ │ │ │ ├── Update.h │ │ │ │ │ ├── UpdateAction.cpp │ │ │ │ │ ├── UpdateAction.h │ │ │ │ │ ├── UpdateCallback.cpp │ │ │ │ │ ├── UpdateCallback.h │ │ │ │ │ ├── UpdatePair.cpp │ │ │ │ │ ├── UpdatePair.h │ │ │ │ │ ├── UpdateProduce.cpp │ │ │ │ │ ├── UpdateProduce.h │ │ │ │ │ ├── WorkDir.cpp │ │ │ │ │ ├── WorkDir.h │ │ │ │ │ ├── ZipRegistry.cpp │ │ │ │ │ └── ZipRegistry.h │ │ │ │ ├── Console │ │ │ │ │ ├── Console.dsp │ │ │ │ │ ├── Console.dsw │ │ │ │ │ ├── Console.sln │ │ │ │ │ ├── Console.vcproj │ │ │ │ │ ├── ConsoleClose.cpp │ │ │ │ │ ├── ConsoleClose.h │ │ │ │ │ ├── ExtractCallbackConsole.cpp │ │ │ │ │ ├── ExtractCallbackConsole.h │ │ │ │ │ ├── List.cpp │ │ │ │ │ ├── List.h │ │ │ │ │ ├── Main.cpp │ │ │ │ │ ├── MainAr.cpp │ │ │ │ │ ├── OpenCallbackConsole.cpp │ │ │ │ │ ├── OpenCallbackConsole.h │ │ │ │ │ ├── PercentPrinter.cpp │ │ │ │ │ ├── PercentPrinter.h │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ ├── UpdateCallbackConsole.cpp │ │ │ │ │ ├── UpdateCallbackConsole.h │ │ │ │ │ ├── UserInputUtils.cpp │ │ │ │ │ ├── UserInputUtils.h │ │ │ │ │ ├── makefile │ │ │ │ │ └── resource.rc │ │ │ │ ├── Explorer │ │ │ │ │ ├── 7-zip.dll.manifest │ │ │ │ │ ├── ContextMenu.cpp │ │ │ │ │ ├── ContextMenu.h │ │ │ │ │ ├── ContextMenuFlags.h │ │ │ │ │ ├── DllExports.cpp │ │ │ │ │ ├── Explorer.def │ │ │ │ │ ├── Explorer.dsp │ │ │ │ │ ├── Explorer.dsw │ │ │ │ │ ├── Explorer.vcproj │ │ │ │ │ ├── FoldersPage.cpp │ │ │ │ │ ├── FoldersPage.h │ │ │ │ │ ├── FoldersPage.rc │ │ │ │ │ ├── FoldersPageRes.h │ │ │ │ │ ├── MyMessages.cpp │ │ │ │ │ ├── MyMessages.h │ │ │ │ │ ├── OptionsDialog.cpp │ │ │ │ │ ├── OptionsDialog.h │ │ │ │ │ ├── RegistryContextMenu.cpp │ │ │ │ │ ├── RegistryContextMenu.h │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ ├── SystemPage.cpp │ │ │ │ │ ├── SystemPage.h │ │ │ │ │ ├── SystemPage.rc │ │ │ │ │ ├── SystemPageRes.h │ │ │ │ │ ├── makefile │ │ │ │ │ ├── resource.h │ │ │ │ │ └── resource.rc │ │ │ │ ├── Far │ │ │ │ │ ├── CLSIDConst.cpp │ │ │ │ │ ├── ExtractEngine.cpp │ │ │ │ │ ├── ExtractEngine.h │ │ │ │ │ ├── Far.def │ │ │ │ │ ├── Far.dsp │ │ │ │ │ ├── Far.dsw │ │ │ │ │ ├── Far.vcproj │ │ │ │ │ ├── FarPlugin.h │ │ │ │ │ ├── FarUtils.cpp │ │ │ │ │ ├── FarUtils.h │ │ │ │ │ ├── Main.cpp │ │ │ │ │ ├── Messages.h │ │ │ │ │ ├── OverwriteDialog.cpp │ │ │ │ │ ├── OverwriteDialog.h │ │ │ │ │ ├── Plugin.cpp │ │ │ │ │ ├── Plugin.h │ │ │ │ │ ├── PluginCommon.cpp │ │ │ │ │ ├── PluginDelete.cpp │ │ │ │ │ ├── PluginRead.cpp │ │ │ │ │ ├── PluginWrite.cpp │ │ │ │ │ ├── ProgressBox.cpp │ │ │ │ │ ├── ProgressBox.h │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ ├── UpdateCallback100.cpp │ │ │ │ │ ├── UpdateCallback100.h │ │ │ │ │ ├── makefile │ │ │ │ │ └── resource.rc │ │ │ │ ├── FileManager │ │ │ │ │ ├── 7zFM.exe.manifest │ │ │ │ │ ├── 7zipLogo.ico │ │ │ │ │ ├── AboutDialog.cpp │ │ │ │ │ ├── AboutDialog.h │ │ │ │ │ ├── AboutDialog.rc │ │ │ │ │ ├── AboutDialogRes.h │ │ │ │ │ ├── Add.bmp │ │ │ │ │ ├── Add2.bmp │ │ │ │ │ ├── App.cpp │ │ │ │ │ ├── App.h │ │ │ │ │ ├── AppState.h │ │ │ │ │ ├── ClassDefs.cpp │ │ │ │ │ ├── ComboDialog.cpp │ │ │ │ │ ├── ComboDialog.h │ │ │ │ │ ├── ComboDialog.rc │ │ │ │ │ ├── ComboDialogRes.h │ │ │ │ │ ├── Copy.bmp │ │ │ │ │ ├── Copy2.bmp │ │ │ │ │ ├── CopyDialog.cpp │ │ │ │ │ ├── CopyDialog.h │ │ │ │ │ ├── CopyDialog.rc │ │ │ │ │ ├── CopyDialogRes.h │ │ │ │ │ ├── Delete.bmp │ │ │ │ │ ├── Delete2.bmp │ │ │ │ │ ├── EditPage.cpp │ │ │ │ │ ├── EditPage.h │ │ │ │ │ ├── EditPage.rc │ │ │ │ │ ├── EditPageRes.h │ │ │ │ │ ├── EnumFormatEtc.cpp │ │ │ │ │ ├── EnumFormatEtc.h │ │ │ │ │ ├── Extract.bmp │ │ │ │ │ ├── Extract2.bmp │ │ │ │ │ ├── ExtractCallback.cpp │ │ │ │ │ ├── ExtractCallback.h │ │ │ │ │ ├── FM.cpp │ │ │ │ │ ├── FM.dsp │ │ │ │ │ ├── FM.dsw │ │ │ │ │ ├── FM.ico │ │ │ │ │ ├── FM.vcproj │ │ │ │ │ ├── FSDrives.cpp │ │ │ │ │ ├── FSDrives.h │ │ │ │ │ ├── FSFolder.cpp │ │ │ │ │ ├── FSFolder.h │ │ │ │ │ ├── FSFolderCopy.cpp │ │ │ │ │ ├── FileFolderPluginOpen.cpp │ │ │ │ │ ├── FileFolderPluginOpen.h │ │ │ │ │ ├── FilePlugins.cpp │ │ │ │ │ ├── FilePlugins.h │ │ │ │ │ ├── FormatUtils.cpp │ │ │ │ │ ├── FormatUtils.h │ │ │ │ │ ├── HelpUtils.cpp │ │ │ │ │ ├── HelpUtils.h │ │ │ │ │ ├── IFolder.h │ │ │ │ │ ├── Info.bmp │ │ │ │ │ ├── Info2.bmp │ │ │ │ │ ├── LangPage.cpp │ │ │ │ │ ├── LangPage.h │ │ │ │ │ ├── LangPage.rc │ │ │ │ │ ├── LangPageRes.h │ │ │ │ │ ├── LangUtils.cpp │ │ │ │ │ ├── LangUtils.h │ │ │ │ │ ├── ListViewDialog.cpp │ │ │ │ │ ├── ListViewDialog.h │ │ │ │ │ ├── ListViewDialog.rc │ │ │ │ │ ├── ListViewDialogRes.h │ │ │ │ │ ├── MessagesDialog.cpp │ │ │ │ │ ├── MessagesDialog.h │ │ │ │ │ ├── MessagesDialog.rc │ │ │ │ │ ├── MessagesDialogRes.h │ │ │ │ │ ├── Move.bmp │ │ │ │ │ ├── Move2.bmp │ │ │ │ │ ├── MyCom2.h │ │ │ │ │ ├── MyLoadMenu.cpp │ │ │ │ │ ├── MyLoadMenu.h │ │ │ │ │ ├── NetFolder.cpp │ │ │ │ │ ├── NetFolder.h │ │ │ │ │ ├── OpenCallback.cpp │ │ │ │ │ ├── OpenCallback.h │ │ │ │ │ ├── OptionsDialog.cpp │ │ │ │ │ ├── OverwriteDialog.cpp │ │ │ │ │ ├── OverwriteDialog.h │ │ │ │ │ ├── OverwriteDialog.rc │ │ │ │ │ ├── OverwriteDialogRes.h │ │ │ │ │ ├── Panel.cpp │ │ │ │ │ ├── Panel.h │ │ │ │ │ ├── PanelCopy.cpp │ │ │ │ │ ├── PanelCrc.cpp │ │ │ │ │ ├── PanelDrag.cpp │ │ │ │ │ ├── PanelFolderChange.cpp │ │ │ │ │ ├── PanelItemOpen.cpp │ │ │ │ │ ├── PanelItems.cpp │ │ │ │ │ ├── PanelKey.cpp │ │ │ │ │ ├── PanelListNotify.cpp │ │ │ │ │ ├── PanelMenu.cpp │ │ │ │ │ ├── PanelOperations.cpp │ │ │ │ │ ├── PanelSelect.cpp │ │ │ │ │ ├── PanelSort.cpp │ │ │ │ │ ├── PanelSplitFile.cpp │ │ │ │ │ ├── PasswordDialog.cpp │ │ │ │ │ ├── PasswordDialog.h │ │ │ │ │ ├── PasswordDialog.rc │ │ │ │ │ ├── PasswordDialogRes.h │ │ │ │ │ ├── PhysDriveFolder.cpp │ │ │ │ │ ├── PhysDriveFolder.h │ │ │ │ │ ├── PluginInterface.h │ │ │ │ │ ├── PluginLoader.h │ │ │ │ │ ├── PluginsPage.cpp │ │ │ │ │ ├── PluginsPage.h │ │ │ │ │ ├── PluginsPage.rc │ │ │ │ │ ├── PluginsPageRes.h │ │ │ │ │ ├── ProgramLocation.cpp │ │ │ │ │ ├── ProgramLocation.h │ │ │ │ │ ├── ProgressDialog.cpp │ │ │ │ │ ├── ProgressDialog.h │ │ │ │ │ ├── ProgressDialog.rc │ │ │ │ │ ├── ProgressDialog2.cpp │ │ │ │ │ ├── ProgressDialog2.h │ │ │ │ │ ├── ProgressDialog2.rc │ │ │ │ │ ├── ProgressDialog2Res.h │ │ │ │ │ ├── ProgressDialogRes.h │ │ │ │ │ ├── PropertyName.cpp │ │ │ │ │ ├── PropertyName.h │ │ │ │ │ ├── PropertyName.rc │ │ │ │ │ ├── PropertyNameRes.h │ │ │ │ │ ├── RegistryAssociations.cpp │ │ │ │ │ ├── RegistryAssociations.h │ │ │ │ │ ├── RegistryPlugins.cpp │ │ │ │ │ ├── RegistryPlugins.h │ │ │ │ │ ├── RegistryUtils.cpp │ │ │ │ │ ├── RegistryUtils.h │ │ │ │ │ ├── RootFolder.cpp │ │ │ │ │ ├── RootFolder.h │ │ │ │ │ ├── SettingsPage.cpp │ │ │ │ │ ├── SettingsPage.h │ │ │ │ │ ├── SettingsPage.rc │ │ │ │ │ ├── SettingsPageRes.h │ │ │ │ │ ├── SplitDialog.cpp │ │ │ │ │ ├── SplitDialog.h │ │ │ │ │ ├── SplitDialog.rc │ │ │ │ │ ├── SplitDialogRes.h │ │ │ │ │ ├── SplitUtils.cpp │ │ │ │ │ ├── SplitUtils.h │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ ├── StringUtils.cpp │ │ │ │ │ ├── StringUtils.h │ │ │ │ │ ├── SysIconUtils.cpp │ │ │ │ │ ├── SysIconUtils.h │ │ │ │ │ ├── SystemPage.cpp │ │ │ │ │ ├── SystemPage.h │ │ │ │ │ ├── SystemPage.rc │ │ │ │ │ ├── SystemPageRes.h │ │ │ │ │ ├── Test.bmp │ │ │ │ │ ├── Test2.bmp │ │ │ │ │ ├── TextPairs.cpp │ │ │ │ │ ├── TextPairs.h │ │ │ │ │ ├── UpdateCallback100.cpp │ │ │ │ │ ├── UpdateCallback100.h │ │ │ │ │ ├── ViewSettings.cpp │ │ │ │ │ ├── ViewSettings.h │ │ │ │ │ ├── makefile │ │ │ │ │ ├── resource.h │ │ │ │ │ └── resource.rc │ │ │ │ ├── GUI │ │ │ │ │ ├── 7zG.exe.manifest │ │ │ │ │ ├── BenchmarkDialog.cpp │ │ │ │ │ ├── BenchmarkDialog.h │ │ │ │ │ ├── BenchmarkDialog.rc │ │ │ │ │ ├── BenchmarkDialogRes.h │ │ │ │ │ ├── CompressDialog.cpp │ │ │ │ │ ├── CompressDialog.h │ │ │ │ │ ├── CompressDialog.rc │ │ │ │ │ ├── CompressDialogRes.h │ │ │ │ │ ├── Extract.rc │ │ │ │ │ ├── ExtractDialog.cpp │ │ │ │ │ ├── ExtractDialog.h │ │ │ │ │ ├── ExtractDialog.rc │ │ │ │ │ ├── ExtractDialogRes.h │ │ │ │ │ ├── ExtractGUI.cpp │ │ │ │ │ ├── ExtractGUI.h │ │ │ │ │ ├── ExtractRes.h │ │ │ │ │ ├── FM.ico │ │ │ │ │ ├── GUI.cpp │ │ │ │ │ ├── GUI.dsp │ │ │ │ │ ├── GUI.dsw │ │ │ │ │ ├── GUI.vcproj │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ ├── UpdateCallbackGUI.cpp │ │ │ │ │ ├── UpdateCallbackGUI.h │ │ │ │ │ ├── UpdateGUI.cpp │ │ │ │ │ ├── UpdateGUI.h │ │ │ │ │ ├── makefile │ │ │ │ │ ├── resource.h │ │ │ │ │ └── resource.rc │ │ │ │ ├── UI.sln │ │ │ │ └── makefile │ │ │ └── makefile │ │ ├── Build.mak │ │ ├── Common │ │ │ ├── AutoPtr.h │ │ │ ├── Buffer.h │ │ │ ├── CRC.cpp │ │ │ ├── C_FileIO.cpp │ │ │ ├── C_FileIO.h │ │ │ ├── ComTry.h │ │ │ ├── CommandLineParser.cpp │ │ │ ├── CommandLineParser.h │ │ │ ├── Defs.h │ │ │ ├── DynamicBuffer.h │ │ │ ├── IntToString.cpp │ │ │ ├── IntToString.h │ │ │ ├── Lang.cpp │ │ │ ├── Lang.h │ │ │ ├── ListFileUtils.cpp │ │ │ ├── ListFileUtils.h │ │ │ ├── MyCom.h │ │ │ ├── MyException.h │ │ │ ├── MyGuidDef.h │ │ │ ├── MyInitGuid.h │ │ │ ├── MyMap.cpp │ │ │ ├── MyMap.h │ │ │ ├── MyString.cpp │ │ │ ├── MyString.h │ │ │ ├── MyUnknown.h │ │ │ ├── MyVector.cpp │ │ │ ├── MyVector.h │ │ │ ├── MyWindows.cpp │ │ │ ├── MyWindows.h │ │ │ ├── MyXml.cpp │ │ │ ├── MyXml.h │ │ │ ├── NewHandler.cpp │ │ │ ├── NewHandler.h │ │ │ ├── Random.cpp │ │ │ ├── Random.h │ │ │ ├── StdAfx.h │ │ │ ├── StdInStream.cpp │ │ │ ├── StdInStream.h │ │ │ ├── StdOutStream.cpp │ │ │ ├── StdOutStream.h │ │ │ ├── StringConvert.cpp │ │ │ ├── StringConvert.h │ │ │ ├── StringToInt.cpp │ │ │ ├── StringToInt.h │ │ │ ├── TextConfig.cpp │ │ │ ├── TextConfig.h │ │ │ ├── Types.h │ │ │ ├── UTFConvert.cpp │ │ │ ├── UTFConvert.h │ │ │ ├── Wildcard.cpp │ │ │ └── Wildcard.h │ │ └── Windows │ │ │ ├── COM.cpp │ │ │ ├── COM.h │ │ │ ├── Clipboard.cpp │ │ │ ├── Clipboard.h │ │ │ ├── CommonDialog.cpp │ │ │ ├── CommonDialog.h │ │ │ ├── Console.cpp │ │ │ ├── Console.h │ │ │ ├── Control │ │ │ ├── ComboBox.cpp │ │ │ ├── ComboBox.h │ │ │ ├── Dialog.cpp │ │ │ ├── Dialog.h │ │ │ ├── Edit.h │ │ │ ├── ImageList.cpp │ │ │ ├── ImageList.h │ │ │ ├── ListView.cpp │ │ │ ├── ListView.h │ │ │ ├── ProgressBar.h │ │ │ ├── PropertyPage.cpp │ │ │ ├── PropertyPage.h │ │ │ ├── ReBar.h │ │ │ ├── Static.h │ │ │ ├── StatusBar.h │ │ │ ├── StdAfx.h │ │ │ ├── ToolBar.h │ │ │ ├── Trackbar.h │ │ │ ├── Window2.cpp │ │ │ └── Window2.h │ │ │ ├── DLL.cpp │ │ │ ├── DLL.h │ │ │ ├── Defs.h │ │ │ ├── Error.cpp │ │ │ ├── Error.h │ │ │ ├── FileDevice.cpp │ │ │ ├── FileDevice.h │ │ │ ├── FileDir.cpp │ │ │ ├── FileDir.h │ │ │ ├── FileFind.cpp │ │ │ ├── FileFind.h │ │ │ ├── FileIO.cpp │ │ │ ├── FileIO.h │ │ │ ├── FileMapping.cpp │ │ │ ├── FileMapping.h │ │ │ ├── FileName.cpp │ │ │ ├── FileName.h │ │ │ ├── FileSystem.cpp │ │ │ ├── FileSystem.h │ │ │ ├── Handle.h │ │ │ ├── Memory.cpp │ │ │ ├── Memory.h │ │ │ ├── MemoryLock.cpp │ │ │ ├── MemoryLock.h │ │ │ ├── Menu.cpp │ │ │ ├── Menu.h │ │ │ ├── NationalTime.cpp │ │ │ ├── NationalTime.h │ │ │ ├── Net.cpp │ │ │ ├── Net.h │ │ │ ├── ProcessMessages.cpp │ │ │ ├── ProcessMessages.h │ │ │ ├── PropVariant.cpp │ │ │ ├── PropVariant.h │ │ │ ├── PropVariantConversions.cpp │ │ │ ├── PropVariantConversions.h │ │ │ ├── PropVariantUtils.cpp │ │ │ ├── PropVariantUtils.h │ │ │ ├── Registry.cpp │ │ │ ├── Registry.h │ │ │ ├── ResourceString.cpp │ │ │ ├── ResourceString.h │ │ │ ├── Security.cpp │ │ │ ├── Security.h │ │ │ ├── Shell.cpp │ │ │ ├── Shell.h │ │ │ ├── StdAfx.h │ │ │ ├── Synchronization.cpp │ │ │ ├── Synchronization.h │ │ │ ├── System.cpp │ │ │ ├── System.h │ │ │ ├── Thread.h │ │ │ ├── Time.cpp │ │ │ ├── Time.h │ │ │ ├── Window.cpp │ │ │ └── Window.h │ └── DOC.zip ├── IPCreditApi │ ├── IPCreditAPI │ │ ├── IPCreditServerTaf2 │ │ │ ├── FIPCredit.h │ │ │ ├── FIPCredit.jce │ │ │ ├── IPCredit.h │ │ │ ├── IPCredit.jce │ │ │ ├── Taf2.mk │ │ │ ├── Taf2_dev.mk │ │ │ └── makefile │ │ ├── IPCreditServerTaf3 │ │ │ ├── FIPCredit.h │ │ │ ├── FIPCredit.jce │ │ │ ├── IPCredit.h │ │ │ ├── IPCredit.jce │ │ │ ├── Taf3.mk │ │ │ ├── Taf3_dev.mk │ │ │ └── makefile │ │ └── include │ │ │ ├── ClientReport.h │ │ │ ├── ConfigDataWrapper.h │ │ │ ├── IPCreditAPI.h │ │ │ ├── Toolkit.h │ │ │ ├── ipcm_comm.h │ │ │ └── memVector.h │ ├── Makefile │ ├── demo.cpp │ └── taf-3.0.0.26 │ │ └── include │ │ ├── jce │ │ ├── Jce.h │ │ ├── JceDisplayer.h │ │ ├── JceType.h │ │ ├── Jce_c.h │ │ ├── Jce_json.h │ │ ├── Jce_mcare.h │ │ ├── Jce_sym.h │ │ ├── Patch.h │ │ ├── RequestF.h │ │ ├── RequestF_mcare.h │ │ ├── RequestF_sym.h │ │ ├── jce_arraycpp.h │ │ ├── taf_patch.h │ │ ├── wup.h │ │ ├── wup_c.h │ │ ├── wup_mcare.h │ │ ├── wup_sym.h │ │ └── wup_sym_compact.h │ │ ├── log │ │ ├── Log.h │ │ └── taf_logger.h │ │ ├── servant │ │ ├── AdapterProxy.h │ │ ├── AdminF.h │ │ ├── AdminServant.h │ │ ├── AppCache.h │ │ ├── AppProtocol.h │ │ ├── Application.h │ │ ├── AsyncProcThread.h │ │ ├── BaseF.h │ │ ├── BaseNotify.h │ │ ├── BusF.h │ │ ├── Communicator.h │ │ ├── CommunicatorEpoll.h │ │ ├── CommunicatorFactory.h │ │ ├── Connector.h │ │ ├── EndpointF.h │ │ ├── EndpointInfo.h │ │ ├── EndpointManager.h │ │ ├── FDReactor.h │ │ ├── Global.h │ │ ├── JceCurrent.h │ │ ├── Message.h │ │ ├── NetworkUtil.h │ │ ├── NotifyObserver.h │ │ ├── ObjectProxy.h │ │ ├── ObjectProxyFactory.h │ │ ├── PropertyF.h │ │ ├── PropertyReport.h │ │ ├── QueryEndpoint.h │ │ ├── QueryF.h │ │ ├── QueueTimeout.h │ │ ├── Servant.h │ │ ├── ServantHandle.h │ │ ├── ServantHelper.h │ │ ├── ServantProxy.h │ │ ├── ServantProxyFactory.h │ │ ├── StatF.h │ │ ├── StatReport.h │ │ └── Transceiver.h │ │ └── util │ │ ├── atomic_asm.h │ │ ├── eventfd.h │ │ ├── tc_atomic.h │ │ ├── tc_autoptr.h │ │ ├── tc_clientsocket.h │ │ ├── tc_common.h │ │ ├── tc_config.h │ │ ├── tc_dyn_object.h │ │ ├── tc_epoll_server.h │ │ ├── tc_epoller.h │ │ ├── tc_ex.h │ │ ├── tc_fifo.h │ │ ├── tc_file.h │ │ ├── tc_file_mutex.h │ │ ├── tc_functor.h │ │ ├── tc_hash_fun.h │ │ ├── tc_lock.h │ │ ├── tc_logger.h │ │ ├── tc_loki.h │ │ ├── tc_loop_queue.h │ │ ├── tc_malloc_chunk.h │ │ ├── tc_md5.h │ │ ├── tc_mem_queue.h │ │ ├── tc_mmap.h │ │ ├── tc_monitor.h │ │ ├── tc_sem_mutex.h │ │ ├── tc_shm.h │ │ ├── tc_singleton.h │ │ ├── tc_socket.h │ │ ├── tc_squeue.h │ │ ├── tc_thread.h │ │ ├── tc_thread_cond.h │ │ ├── tc_thread_mutex.h │ │ ├── tc_thread_pool.h │ │ ├── tc_thread_queue.h │ │ ├── tc_thread_rwlock.h │ │ ├── tc_timeout_queue.h │ │ ├── tc_timeout_queue_map.h │ │ ├── tc_timeout_queue_new.h │ │ ├── tc_timeout_queue_noid.h │ │ └── tc_timeprovider.h ├── LuaJIT-2.0.0-beta10 │ └── include │ │ ├── lauxlib.h │ │ ├── lua.h │ │ ├── lua.hpp │ │ ├── luaconf.h │ │ ├── luajit.h │ │ └── lualib.h ├── antibot │ ├── Makefile.am │ ├── client │ │ ├── demo │ │ │ └── TestGameClient.zip │ │ └── sdk │ │ │ ├── AntiBotImport.h │ │ │ └── DProto.h │ ├── doc │ │ ├── Tencent游戏反外挂合作开发说明书Release_Linux_English_20111121.doc │ │ └── 安全系统接口使用流程示意图.doc │ ├── server │ │ ├── TestGameSvr │ │ │ ├── Resource.h │ │ │ ├── TestGameSvr.cpp │ │ │ ├── TestGameSvr.h │ │ │ ├── TestGameSvr.ncb │ │ │ ├── TestGameSvr.rc │ │ │ ├── TestGameSvr.sln │ │ │ ├── TestGameSvr.vcproj │ │ │ ├── TestGameSvrDlg.cpp │ │ │ ├── TestGameSvrDlg.h │ │ │ ├── TestGameSvrSocket.cpp │ │ │ ├── TestGameSvrSocket.h │ │ │ ├── TestGameSvrd.ilk │ │ │ ├── crc32.cpp │ │ │ ├── crc32.h │ │ │ ├── iantibotinterface.h │ │ │ ├── ibusiness.h │ │ │ ├── mainctrlbusiness.cpp │ │ │ ├── mainctrlbusiness.h │ │ │ ├── res │ │ │ │ ├── TestGameSvr.ico │ │ │ │ └── TestGameSvr.rc2 │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ │ └── sdk │ │ │ └── include │ │ │ ├── iantibotinterface.h │ │ │ └── ibusiness.h │ └── wrapper │ │ ├── MSSCCPRJ.SCC │ │ ├── Makefile.am │ │ ├── antibot_client.cpp │ │ ├── antibot_client.h │ │ ├── antibot_def.h │ │ ├── antibot_server.cpp │ │ ├── antibot_server.h │ │ ├── antibot_wrapper.vcproj │ │ ├── antibot_wrapper.vcproj.vspscc │ │ ├── antibot_wrapper.vcxproj │ │ ├── antibot_wrapper.vcxproj.filters │ │ └── antibot_wrapper.vcxproj.vspscc ├── awesomium │ ├── JSValue.h │ ├── KeyboardCodes.h │ ├── PlatformUtils.h │ ├── RenderBuffer.h │ ├── ResourceInterceptor.h │ ├── WebCore.h │ ├── WebKeyboardEvent.h │ ├── WebView.h │ ├── WebViewListener.h │ └── awesomium_capi.h ├── build │ └── 3Party.sln ├── c-ares-1.10.0 │ └── include │ │ ├── ares.h │ │ ├── ares_build.h │ │ ├── ares_dns.h │ │ ├── ares_rules.h │ │ └── ares_version.h ├── cryptopp-5.6.0 │ ├── 3way.cpp │ ├── 3way.h │ ├── Doxyfile │ ├── GNUmakefile │ ├── License.txt │ ├── Readme.txt │ ├── TestData.zip │ ├── TestVectors.zip │ ├── adhoc.cpp │ ├── adhoc.cpp.copied │ ├── adhoc.cpp.proto │ ├── adler32.cpp │ ├── adler32.h │ ├── aes.h │ ├── algebra.cpp │ ├── algebra.h │ ├── algparam.cpp │ ├── algparam.h │ ├── arc4.cpp │ ├── arc4.h │ ├── argnames.h │ ├── asn.cpp │ ├── asn.h │ ├── authenc.cpp │ ├── authenc.h │ ├── base32.cpp │ ├── base32.h │ ├── base64.cpp │ ├── base64.h │ ├── basecode.cpp │ ├── basecode.h │ ├── bench.cpp │ ├── bench.h │ ├── bench2.cpp │ ├── bfinit.cpp │ ├── blowfish.cpp │ ├── blowfish.h │ ├── blumshub.cpp │ ├── blumshub.h │ ├── camellia.cpp │ ├── camellia.h │ ├── cast.cpp │ ├── cast.h │ ├── casts.cpp │ ├── cbcmac.cpp │ ├── cbcmac.h │ ├── ccm.cpp │ ├── ccm.h │ ├── channels.cpp │ ├── channels.h │ ├── cmac.cpp │ ├── cmac.h │ ├── config.h │ ├── cpu.cpp │ ├── cpu.h │ ├── crc.cpp │ ├── crc.h │ ├── cryptdll.dsp │ ├── cryptdll.vcproj │ ├── cryptest.dsp │ ├── cryptest.dsw │ ├── cryptest.sln │ ├── cryptest.vcproj │ ├── cryptest_bds.bdsgroup │ ├── cryptest_bds.bdsproj │ ├── cryptest_bds.bpf │ ├── cryptlib.cpp │ ├── cryptlib.dsp │ ├── cryptlib.h │ ├── cryptlib.vcproj │ ├── cryptlib_bds.bdsproj │ ├── cryptlib_bds.cpp │ ├── cryptopp.rc │ ├── datatest.cpp │ ├── default.cpp │ ├── default.h │ ├── des.cpp │ ├── des.h │ ├── dessp.cpp │ ├── dh.cpp │ ├── dh.h │ ├── dh2.cpp │ ├── dh2.h │ ├── dll.cpp │ ├── dll.h │ ├── dlltest.cpp │ ├── dlltest.dsp │ ├── dlltest.vcproj │ ├── dmac.h │ ├── dsa.cpp │ ├── dsa.h │ ├── eax.cpp │ ├── eax.h │ ├── ec2n.cpp │ ├── ec2n.h │ ├── eccrypto.cpp │ ├── eccrypto.h │ ├── ecp.cpp │ ├── ecp.h │ ├── elgamal.cpp │ ├── elgamal.h │ ├── emsa2.cpp │ ├── emsa2.h │ ├── eprecomp.cpp │ ├── eprecomp.h │ ├── esign.cpp │ ├── esign.h │ ├── factory.h │ ├── files.cpp │ ├── files.h │ ├── filters.cpp │ ├── filters.h │ ├── fips140.cpp │ ├── fips140.h │ ├── fipsalgt.cpp │ ├── fipstest.cpp │ ├── fltrimpl.h │ ├── gcm.cpp │ ├── gcm.h │ ├── gf256.cpp │ ├── gf256.h │ ├── gf2_32.cpp │ ├── gf2_32.h │ ├── gf2n.cpp │ ├── gf2n.h │ ├── gfpcrypt.cpp │ ├── gfpcrypt.h │ ├── gost.cpp │ ├── gost.h │ ├── gzip.cpp │ ├── gzip.h │ ├── hex.cpp │ ├── hex.h │ ├── hmac.cpp │ ├── hmac.h │ ├── hrtimer.cpp │ ├── hrtimer.h │ ├── ida.cpp │ ├── ida.h │ ├── idea.cpp │ ├── idea.h │ ├── integer.cpp │ ├── integer.h │ ├── iterhash.cpp │ ├── iterhash.h │ ├── lubyrack.h │ ├── luc.cpp │ ├── luc.h │ ├── mars.cpp │ ├── mars.h │ ├── marss.cpp │ ├── md2.cpp │ ├── md2.h │ ├── md4.cpp │ ├── md4.h │ ├── md5.cpp │ ├── md5.h │ ├── mdc.h │ ├── misc.cpp │ ├── misc.h │ ├── modarith.h │ ├── modes.cpp │ ├── modes.h │ ├── modexppc.h │ ├── mqueue.cpp │ ├── mqueue.h │ ├── mqv.cpp │ ├── mqv.h │ ├── nbtheory.cpp │ ├── nbtheory.h │ ├── network.cpp │ ├── network.h │ ├── nr.h │ ├── oaep.cpp │ ├── oaep.h │ ├── oids.h │ ├── osrng.cpp │ ├── osrng.h │ ├── panama.cpp │ ├── panama.h │ ├── pch.cpp │ ├── pch.h │ ├── pkcspad.cpp │ ├── pkcspad.h │ ├── polynomi.cpp │ ├── polynomi.h │ ├── pssr.cpp │ ├── pssr.h │ ├── pubkey.cpp │ ├── pubkey.h │ ├── pwdbased.h │ ├── queue.cpp │ ├── queue.h │ ├── rabin.cpp │ ├── rabin.h │ ├── randpool.cpp │ ├── randpool.h │ ├── rc2.cpp │ ├── rc2.h │ ├── rc5.cpp │ ├── rc5.h │ ├── rc6.cpp │ ├── rc6.h │ ├── rdtables.cpp │ ├── regtest.cpp │ ├── resource.h │ ├── rijndael.cpp │ ├── rijndael.h │ ├── ripemd.cpp │ ├── ripemd.h │ ├── rng.cpp │ ├── rng.h │ ├── rsa.cpp │ ├── rsa.h │ ├── rw.cpp │ ├── rw.h │ ├── safer.cpp │ ├── safer.h │ ├── salsa.cpp │ ├── salsa.h │ ├── seal.cpp │ ├── seal.h │ ├── secblock.h │ ├── seckey.h │ ├── seed.cpp │ ├── seed.h │ ├── serpent.cpp │ ├── serpent.h │ ├── serpentp.h │ ├── sha.cpp │ ├── sha.h │ ├── shacal2.cpp │ ├── shacal2.h │ ├── shark.cpp │ ├── shark.h │ ├── sharkbox.cpp │ ├── simple.cpp │ ├── simple.h │ ├── skipjack.cpp │ ├── skipjack.h │ ├── smartptr.h │ ├── socketft.cpp │ ├── socketft.h │ ├── sosemanuk.cpp │ ├── sosemanuk.h │ ├── square.cpp │ ├── square.h │ ├── squaretb.cpp │ ├── stdcpp.h │ ├── strciphr.cpp │ ├── strciphr.h │ ├── tea.cpp │ ├── tea.h │ ├── test.cpp │ ├── tftables.cpp │ ├── tiger.cpp │ ├── tiger.h │ ├── tigertab.cpp │ ├── trdlocal.cpp │ ├── trdlocal.h │ ├── trunhash.h │ ├── ttmac.cpp │ ├── ttmac.h │ ├── twofish.cpp │ ├── twofish.h │ ├── validat1.cpp │ ├── validat2.cpp │ ├── validat3.cpp │ ├── validate.h │ ├── vmac.cpp │ ├── vmac.h │ ├── wait.cpp │ ├── wait.h │ ├── wake.cpp │ ├── wake.h │ ├── whrlpool.cpp │ ├── whrlpool.h │ ├── winpipes.cpp │ ├── winpipes.h │ ├── words.h │ ├── x64dll.asm │ ├── x64masm.asm │ ├── xtr.cpp │ ├── xtr.h │ ├── xtrcrypt.cpp │ ├── xtrcrypt.h │ ├── zdeflate.cpp │ ├── zdeflate.h │ ├── zinflate.cpp │ ├── zinflate.h │ ├── zlib.cpp │ └── zlib.h ├── curl-4.2.0 │ ├── README │ └── include │ │ └── curl │ │ ├── curl.h │ │ ├── curlbuild.h │ │ ├── curlrules.h │ │ ├── curlver.h │ │ ├── easy.h │ │ ├── mprintf.h │ │ ├── multi.h │ │ ├── stdcheaders.h │ │ └── typecheck-gcc.h ├── encrypt │ ├── blowfish.cpp │ ├── blowfish.h │ ├── des.h │ ├── encrypt.cpp │ ├── encrypt.h │ ├── includes │ │ ├── encrypt.h │ │ ├── md5ex.h │ │ ├── mycast.h │ │ ├── mydes.h │ │ ├── myidea.h │ │ └── myrc5.h │ ├── md5c.c │ ├── md5c.cpp │ ├── md5c.h │ ├── md5ex.cpp │ ├── md5ex.h │ ├── mycast.cpp │ ├── mycast.h │ ├── mydes.cpp │ ├── mydes.h │ ├── myidea.cpp │ ├── myidea.h │ ├── myrc5.cpp │ └── myrc5.h ├── gperftools-2.1 │ ├── bin │ │ └── pprof │ ├── include │ │ ├── google │ │ │ ├── heap-checker.h │ │ │ ├── heap-profiler.h │ │ │ ├── malloc_extension.h │ │ │ ├── malloc_extension_c.h │ │ │ ├── malloc_hook.h │ │ │ ├── malloc_hook_c.h │ │ │ ├── profiler.h │ │ │ ├── stacktrace.h │ │ │ └── tcmalloc.h │ │ └── gperftools │ │ │ ├── heap-checker.h │ │ │ ├── heap-profiler.h │ │ │ ├── malloc_extension.h │ │ │ ├── malloc_extension_c.h │ │ │ ├── malloc_hook.h │ │ │ ├── malloc_hook_c.h │ │ │ ├── profiler.h │ │ │ ├── stacktrace.h │ │ │ └── tcmalloc.h │ └── share.tar ├── hge181 │ ├── doc │ │ ├── html │ │ │ ├── 1.gif │ │ │ ├── architecture.gif │ │ │ ├── bcbsetup1.gif │ │ │ ├── bcbsetup2.gif │ │ │ ├── bcbsetup3.gif │ │ │ ├── bcbsetup4.gif │ │ │ ├── bcbsetup5.gif │ │ │ ├── cnt_fbuilder.html │ │ │ ├── cnt_hgeanim.html │ │ │ ├── cnt_hgecolorhsv.html │ │ │ ├── cnt_hgecolorrgb.html │ │ │ ├── cnt_hgeconst.html │ │ │ ├── cnt_hgedata.html │ │ │ ├── cnt_hgedistort.html │ │ │ ├── cnt_hgefont.html │ │ │ ├── cnt_hgefunc.html │ │ │ ├── cnt_hgegui.html │ │ │ ├── cnt_hgeguio.html │ │ │ ├── cnt_hgeparticle.html │ │ │ ├── cnt_hgepmanager.html │ │ │ ├── cnt_hgerect.html │ │ │ ├── cnt_hgeresource.html │ │ │ ├── cnt_hgesprite.html │ │ │ ├── cnt_hgestring.html │ │ │ ├── cnt_hgevector.html │ │ │ ├── cnt_main.html │ │ │ ├── cnt_peditor.html │ │ │ ├── cnt_setup.html │ │ │ ├── cnt_tutorials.html │ │ │ ├── devcppsetup1.gif │ │ │ ├── devcppsetup2.gif │ │ │ ├── devcppsetup3.gif │ │ │ ├── devcppsetup4.gif │ │ │ ├── devcppsetup5.gif │ │ │ ├── fbuilder__main.html │ │ │ ├── fbuilder_fontcode.html │ │ │ ├── fbuilder_fontconv.html │ │ │ ├── fbuilder_ini.html │ │ │ ├── fbuilder_interface.html │ │ │ ├── feat3.gif │ │ │ ├── hge.css │ │ │ ├── hge.js │ │ │ ├── hgeanim__main.html │ │ │ ├── hgeanim_constructor.html │ │ │ ├── hgeanim_getframe.html │ │ │ ├── hgeanim_getframes.html │ │ │ ├── hgeanim_getmode.html │ │ │ ├── hgeanim_getspeed.html │ │ │ ├── hgeanim_isplaying.html │ │ │ ├── hgeanim_operators.html │ │ │ ├── hgeanim_play.html │ │ │ ├── hgeanim_resume.html │ │ │ ├── hgeanim_setframe.html │ │ │ ├── hgeanim_setframes.html │ │ │ ├── hgeanim_setmode.html │ │ │ ├── hgeanim_setspeed.html │ │ │ ├── hgeanim_stop.html │ │ │ ├── hgeanim_update.html │ │ │ ├── hgecolor__main.html │ │ │ ├── hgecolorhsv__main.html │ │ │ ├── hgecolorhsv_clamp.html │ │ │ ├── hgecolorhsv_constructors.html │ │ │ ├── hgecolorhsv_datamembers.html │ │ │ ├── hgecolorhsv_gethwcolor.html │ │ │ ├── hgecolorhsv_operators.html │ │ │ ├── hgecolorhsv_sethwcolor.html │ │ │ ├── hgecolorrgb__main.html │ │ │ ├── hgecolorrgb_clamp.html │ │ │ ├── hgecolorrgb_constructors.html │ │ │ ├── hgecolorrgb_datamembers.html │ │ │ ├── hgecolorrgb_gethwcolor.html │ │ │ ├── hgecolorrgb_operators.html │ │ │ ├── hgecolorrgb_sethwcolor.html │ │ │ ├── hgeconst__main.html │ │ │ ├── hgeconst_blendmode.html │ │ │ ├── hgeconst_common.html │ │ │ ├── hgeconst_keycodes.html │ │ │ ├── hgeconst_systemstate.html │ │ │ ├── hgedata__main.html │ │ │ ├── hgedata_common.html │ │ │ ├── hgedata_hwcolor.html │ │ │ ├── hgedata_inputevent.html │ │ │ ├── hgedata_quad.html │ │ │ ├── hgedata_resource.html │ │ │ ├── hgedata_state.html │ │ │ ├── hgedata_triple.html │ │ │ ├── hgedata_vertex.html │ │ │ ├── hgedistort__main.html │ │ │ ├── hgedistort_clear.html │ │ │ ├── hgedistort_constructor.html │ │ │ ├── hgedistort_getblendmode.html │ │ │ ├── hgedistort_getcolor.html │ │ │ ├── hgedistort_getcols.html │ │ │ ├── hgedistort_getdisplacement.html │ │ │ ├── hgedistort_getrows.html │ │ │ ├── hgedistort_gettexture.html │ │ │ ├── hgedistort_gettexturerect.html │ │ │ ├── hgedistort_getz.html │ │ │ ├── hgedistort_operators.html │ │ │ ├── hgedistort_render.html │ │ │ ├── hgedistort_setblendmode.html │ │ │ ├── hgedistort_setcolor.html │ │ │ ├── hgedistort_setdisplacement.html │ │ │ ├── hgedistort_settexture.html │ │ │ ├── hgedistort_settexturerect.html │ │ │ ├── hgedistort_setz.html │ │ │ ├── hgefont__main.html │ │ │ ├── hgefont_constructor.html │ │ │ ├── hgefont_description.html │ │ │ ├── hgefont_getblendmode.html │ │ │ ├── hgefont_getcolor.html │ │ │ ├── hgefont_getheight.html │ │ │ ├── hgefont_getpostwidth.html │ │ │ ├── hgefont_getprewidth.html │ │ │ ├── hgefont_getproportion.html │ │ │ ├── hgefont_getrotation.html │ │ │ ├── hgefont_getscale.html │ │ │ ├── hgefont_getspacing.html │ │ │ ├── hgefont_getsprite.html │ │ │ ├── hgefont_getstringwidth.html │ │ │ ├── hgefont_gettracking.html │ │ │ ├── hgefont_getz.html │ │ │ ├── hgefont_printf.html │ │ │ ├── hgefont_printfb.html │ │ │ ├── hgefont_render.html │ │ │ ├── hgefont_setblendmode.html │ │ │ ├── hgefont_setcolor.html │ │ │ ├── hgefont_setproportion.html │ │ │ ├── hgefont_setrotation.html │ │ │ ├── hgefont_setscale.html │ │ │ ├── hgefont_setspacing.html │ │ │ ├── hgefont_settracking.html │ │ │ ├── hgefont_setz.html │ │ │ ├── hgefunc__main.html │ │ │ ├── hgefunc_channelgetlength.html │ │ │ ├── hgefunc_channelgetpos.html │ │ │ ├── hgefunc_channelisplaying.html │ │ │ ├── hgefunc_channelissliding.html │ │ │ ├── hgefunc_channelpause.html │ │ │ ├── hgefunc_channelpauseall.html │ │ │ ├── hgefunc_channelresume.html │ │ │ ├── hgefunc_channelresumeall.html │ │ │ ├── hgefunc_channelsetpanning.html │ │ │ ├── hgefunc_channelsetpitch.html │ │ │ ├── hgefunc_channelsetpos.html │ │ │ ├── hgefunc_channelsetvolume.html │ │ │ ├── hgefunc_channelslideto.html │ │ │ ├── hgefunc_channelstop.html │ │ │ ├── hgefunc_channelstopall.html │ │ │ ├── hgefunc_effectfree.html │ │ │ ├── hgefunc_effectload.html │ │ │ ├── hgefunc_effectplay.html │ │ │ ├── hgefunc_effectplayex.html │ │ │ ├── hgefunc_gfxbeginscene.html │ │ │ ├── hgefunc_gfxclear.html │ │ │ ├── hgefunc_gfxendscene.html │ │ │ ├── hgefunc_gfxfinishbatch.html │ │ │ ├── hgefunc_gfxrenderline.html │ │ │ ├── hgefunc_gfxrenderquad.html │ │ │ ├── hgefunc_gfxrendertriple.html │ │ │ ├── hgefunc_gfxsetclipping.html │ │ │ ├── hgefunc_gfxsettransform.html │ │ │ ├── hgefunc_gfxstartbatch.html │ │ │ ├── hgefunc_inigetfloat.html │ │ │ ├── hgefunc_inigetint.html │ │ │ ├── hgefunc_inigetstring.html │ │ │ ├── hgefunc_inisetfloat.html │ │ │ ├── hgefunc_inisetint.html │ │ │ ├── hgefunc_inisetstring.html │ │ │ ├── hgefunc_inputgetchar.html │ │ │ ├── hgefunc_inputgetevent.html │ │ │ ├── hgefunc_inputgetkey.html │ │ │ ├── hgefunc_inputgetkeyname.html │ │ │ ├── hgefunc_inputgetkeystate.html │ │ │ ├── hgefunc_inputgetmousepos.html │ │ │ ├── hgefunc_inputgetmousewheel.html │ │ │ ├── hgefunc_inputismouseover.html │ │ │ ├── hgefunc_inputkeydown.html │ │ │ ├── hgefunc_inputkeyup.html │ │ │ ├── hgefunc_inputsetmousepos.html │ │ │ ├── hgefunc_interfaceget.html │ │ │ ├── hgefunc_interfacerelease.html │ │ │ ├── hgefunc_musicfree.html │ │ │ ├── hgefunc_musicgetamplification.html │ │ │ ├── hgefunc_musicgetchannelvolume.html │ │ │ ├── hgefunc_musicgetinstrvolume.html │ │ │ ├── hgefunc_musicgetlength.html │ │ │ ├── hgefunc_musicgetpos.html │ │ │ ├── hgefunc_musicload.html │ │ │ ├── hgefunc_musicplay.html │ │ │ ├── hgefunc_musicsetamplification.html │ │ │ ├── hgefunc_musicsetchannelvolume.html │ │ │ ├── hgefunc_musicsetinstrvolume.html │ │ │ ├── hgefunc_musicsetpos.html │ │ │ ├── hgefunc_randomfloat.html │ │ │ ├── hgefunc_randomint.html │ │ │ ├── hgefunc_randomseed.html │ │ │ ├── hgefunc_resourceattachpack.html │ │ │ ├── hgefunc_resourceenumfiles.html │ │ │ ├── hgefunc_resourceenumfolders.html │ │ │ ├── hgefunc_resourcefree.html │ │ │ ├── hgefunc_resourceload.html │ │ │ ├── hgefunc_resourcemakepath.html │ │ │ ├── hgefunc_resourceremoveallpacks.html │ │ │ ├── hgefunc_resourceremovepack.html │ │ │ ├── hgefunc_streamfree.html │ │ │ ├── hgefunc_streamload.html │ │ │ ├── hgefunc_streamplay.html │ │ │ ├── hgefunc_systemgeterror.html │ │ │ ├── hgefunc_systemgetstate.html │ │ │ ├── hgefunc_systeminitiate.html │ │ │ ├── hgefunc_systemlaunch.html │ │ │ ├── hgefunc_systemlog.html │ │ │ ├── hgefunc_systemsetstate.html │ │ │ ├── hgefunc_systemshutdown.html │ │ │ ├── hgefunc_systemsnapshot.html │ │ │ ├── hgefunc_systemstart.html │ │ │ ├── hgefunc_targetcreate.html │ │ │ ├── hgefunc_targetfree.html │ │ │ ├── hgefunc_targetgettexture.html │ │ │ ├── hgefunc_texturecreate.html │ │ │ ├── hgefunc_texturefree.html │ │ │ ├── hgefunc_texturegetheight.html │ │ │ ├── hgefunc_texturegetwidth.html │ │ │ ├── hgefunc_textureload.html │ │ │ ├── hgefunc_texturelock.html │ │ │ ├── hgefunc_textureunlock.html │ │ │ ├── hgefunc_timergetdelta.html │ │ │ ├── hgefunc_timergetfps.html │ │ │ ├── hgefunc_timergettime.html │ │ │ ├── hgegui__main.html │ │ │ ├── hgegui_addctrl.html │ │ │ ├── hgegui_constructor.html │ │ │ ├── hgegui_delctrl.html │ │ │ ├── hgegui_enablectrl.html │ │ │ ├── hgegui_enter.html │ │ │ ├── hgegui_getctrl.html │ │ │ ├── hgegui_getfocus.html │ │ │ ├── hgegui_guibutton.html │ │ │ ├── hgegui_guibutton_getstate.html │ │ │ ├── hgegui_guibutton_setmode.html │ │ │ ├── hgegui_guibutton_setstate.html │ │ │ ├── hgegui_guilistbox.html │ │ │ ├── hgegui_guilistbox_additem.html │ │ │ ├── hgegui_guilistbox_clear.html │ │ │ ├── hgegui_guilistbox_deleteitem.html │ │ │ ├── hgegui_guilistbox_getitemtext.html │ │ │ ├── hgegui_guilistbox_getnumitems.html │ │ │ ├── hgegui_guilistbox_getnumrows.html │ │ │ ├── hgegui_guilistbox_getselecteditem.html │ │ │ ├── hgegui_guilistbox_gettopitem.html │ │ │ ├── hgegui_guilistbox_setselecteditem.html │ │ │ ├── hgegui_guilistbox_settopitem.html │ │ │ ├── hgegui_guislider.html │ │ │ ├── hgegui_guislider_getvalue.html │ │ │ ├── hgegui_guislider_setmode.html │ │ │ ├── hgegui_guislider_setvalue.html │ │ │ ├── hgegui_guitext.html │ │ │ ├── hgegui_guitext_printf.html │ │ │ ├── hgegui_guitext_setcolor.html │ │ │ ├── hgegui_guitext_setmode.html │ │ │ ├── hgegui_guitext_settext.html │ │ │ ├── hgegui_leave.html │ │ │ ├── hgegui_macros.html │ │ │ ├── hgegui_move.html │ │ │ ├── hgegui_movectrl.html │ │ │ ├── hgegui_render.html │ │ │ ├── hgegui_reset.html │ │ │ ├── hgegui_setcolor.html │ │ │ ├── hgegui_setcursor.html │ │ │ ├── hgegui_setfocus.html │ │ │ ├── hgegui_setnavmode.html │ │ │ ├── hgegui_showctrl.html │ │ │ ├── hgegui_update.html │ │ │ ├── hgeguio__main.html │ │ │ ├── hgeguio_constructor.html │ │ │ ├── hgeguio_datamembers.html │ │ │ ├── hgeguio_enter.html │ │ │ ├── hgeguio_focus.html │ │ │ ├── hgeguio_isdone.html │ │ │ ├── hgeguio_keyclick.html │ │ │ ├── hgeguio_leave.html │ │ │ ├── hgeguio_mouselbutton.html │ │ │ ├── hgeguio_mousemove.html │ │ │ ├── hgeguio_mouseover.html │ │ │ ├── hgeguio_mouserbutton.html │ │ │ ├── hgeguio_mousewheel.html │ │ │ ├── hgeguio_render.html │ │ │ ├── hgeguio_reset.html │ │ │ ├── hgeguio_setcolor.html │ │ │ ├── hgeguio_update.html │ │ │ ├── hgeparticle__main.html │ │ │ ├── hgeparticle_constructors.html │ │ │ ├── hgeparticle_datamembers.html │ │ │ ├── hgeparticle_fire.html │ │ │ ├── hgeparticle_fireat.html │ │ │ ├── hgeparticle_getage.html │ │ │ ├── hgeparticle_getboundingbox.html │ │ │ ├── hgeparticle_getparticlesalive.html │ │ │ ├── hgeparticle_getposition.html │ │ │ ├── hgeparticle_getscale.html │ │ │ ├── hgeparticle_gettransposition.html │ │ │ ├── hgeparticle_moveto.html │ │ │ ├── hgeparticle_operators.html │ │ │ ├── hgeparticle_psinfo.html │ │ │ ├── hgeparticle_render.html │ │ │ ├── hgeparticle_setscale.html │ │ │ ├── hgeparticle_stop.html │ │ │ ├── hgeparticle_trackboundingbox.html │ │ │ ├── hgeparticle_transpose.html │ │ │ ├── hgeparticle_update.html │ │ │ ├── hgepmanager__main.html │ │ │ ├── hgepmanager_constructor.html │ │ │ ├── hgepmanager_gettransposition.html │ │ │ ├── hgepmanager_ispsalive.html │ │ │ ├── hgepmanager_killall.html │ │ │ ├── hgepmanager_killps.html │ │ │ ├── hgepmanager_render.html │ │ │ ├── hgepmanager_spawnps.html │ │ │ ├── hgepmanager_transpose.html │ │ │ ├── hgepmanager_update.html │ │ │ ├── hgerect__main.html │ │ │ ├── hgerect_clear.html │ │ │ ├── hgerect_constructors.html │ │ │ ├── hgerect_datamembers.html │ │ │ ├── hgerect_encapsulate.html │ │ │ ├── hgerect_intersect.html │ │ │ ├── hgerect_isclean.html │ │ │ ├── hgerect_operators.html │ │ │ ├── hgerect_set.html │ │ │ ├── hgerect_setradius.html │ │ │ ├── hgerect_testpoint.html │ │ │ ├── hgeresource__main.html │ │ │ ├── hgeresource_changescript.html │ │ │ ├── hgeresource_constructor.html │ │ │ ├── hgeresource_getanimation.html │ │ │ ├── hgeresource_getdistortionmesh.html │ │ │ ├── hgeresource_geteffect.html │ │ │ ├── hgeresource_getfont.html │ │ │ ├── hgeresource_getmusic.html │ │ │ ├── hgeresource_getparticlesystem.html │ │ │ ├── hgeresource_getresource.html │ │ │ ├── hgeresource_getsprite.html │ │ │ ├── hgeresource_getstream.html │ │ │ ├── hgeresource_getstringtable.html │ │ │ ├── hgeresource_gettarget.html │ │ │ ├── hgeresource_gettexture.html │ │ │ ├── hgeresource_precache.html │ │ │ ├── hgeresource_purge.html │ │ │ ├── hgeresource_script.html │ │ │ ├── hgesprite__main.html │ │ │ ├── hgesprite_constructor.html │ │ │ ├── hgesprite_getblendmode.html │ │ │ ├── hgesprite_getboundingbox.html │ │ │ ├── hgesprite_getboundingboxex.html │ │ │ ├── hgesprite_getcolor.html │ │ │ ├── hgesprite_getflip.html │ │ │ ├── hgesprite_getheight.html │ │ │ ├── hgesprite_gethotspot.html │ │ │ ├── hgesprite_gettexture.html │ │ │ ├── hgesprite_gettexturerect.html │ │ │ ├── hgesprite_getwidth.html │ │ │ ├── hgesprite_getz.html │ │ │ ├── hgesprite_operators.html │ │ │ ├── hgesprite_render.html │ │ │ ├── hgesprite_render4v.html │ │ │ ├── hgesprite_renderex.html │ │ │ ├── hgesprite_renderstretch.html │ │ │ ├── hgesprite_setblendmode.html │ │ │ ├── hgesprite_setcolor.html │ │ │ ├── hgesprite_setflip.html │ │ │ ├── hgesprite_sethotspot.html │ │ │ ├── hgesprite_settexture.html │ │ │ ├── hgesprite_settexturerect.html │ │ │ ├── hgesprite_setz.html │ │ │ ├── hgestring__main.html │ │ │ ├── hgestring_constructor.html │ │ │ ├── hgestring_getstring.html │ │ │ ├── hgestring_script.html │ │ │ ├── hgevector__main.html │ │ │ ├── hgevector_angle.html │ │ │ ├── hgevector_clamp.html │ │ │ ├── hgevector_constructors.html │ │ │ ├── hgevector_datamembers.html │ │ │ ├── hgevector_dot.html │ │ │ ├── hgevector_length.html │ │ │ ├── hgevector_normalize.html │ │ │ ├── hgevector_operators.html │ │ │ ├── hgevector_rotate.html │ │ │ ├── lock.gif │ │ │ ├── logo.gif │ │ │ ├── main_childwin.html │ │ │ ├── main_credits.html │ │ │ ├── main_hints.html │ │ │ ├── main_history.html │ │ │ ├── main_license.html │ │ │ ├── main_overview.html │ │ │ ├── main_package.html │ │ │ ├── main_power.html │ │ │ ├── main_respack.html │ │ │ ├── main_support.html │ │ │ ├── main_upgrade.html │ │ │ ├── peditor__main.html │ │ │ ├── peditor_hints.html │ │ │ ├── peditor_ini.html │ │ │ ├── peditor_interface.html │ │ │ ├── peditor_presets.html │ │ │ ├── pngopt__main.html │ │ │ ├── sep3.gif │ │ │ ├── setup__main.html │ │ │ ├── setup_bcb4.html │ │ │ ├── setup_devcpp.html │ │ │ ├── setup_vc6.html │ │ │ ├── setup_vsnet.html │ │ │ ├── shot1.gif │ │ │ ├── shot2.gif │ │ │ ├── shot3.gif │ │ │ ├── shot4.gif │ │ │ ├── t04_1.gif │ │ │ ├── t05_1.gif │ │ │ ├── t05_2.gif │ │ │ ├── t05_3.gif │ │ │ ├── t06_1.gif │ │ │ ├── t07_1.gif │ │ │ ├── t07_2.gif │ │ │ ├── t07_3.gif │ │ │ ├── t08_1.gif │ │ │ ├── t08_2.gif │ │ │ ├── t08_3.gif │ │ │ ├── texasm__main.html │ │ │ ├── title.gif │ │ │ ├── tools_fed.gif │ │ │ ├── tools_med.gif │ │ │ ├── tools_ped.gif │ │ │ ├── tools_res.gif │ │ │ ├── tools_tex.gif │ │ │ ├── tutorials__main.html │ │ │ ├── tutorials_tut01.html │ │ │ ├── tutorials_tut02.html │ │ │ ├── tutorials_tut03.html │ │ │ ├── tutorials_tut04.html │ │ │ ├── tutorials_tut05.html │ │ │ ├── tutorials_tut06.html │ │ │ ├── tutorials_tut07.html │ │ │ ├── tutorials_tut08.html │ │ │ ├── vcsetup1.gif │ │ │ ├── vcsetup2.gif │ │ │ ├── vcsetup3.gif │ │ │ ├── vcsetup4.gif │ │ │ ├── vcsetup5.gif │ │ │ ├── vsnetsetup1.gif │ │ │ ├── vsnetsetup2.gif │ │ │ ├── vsnetsetup3.gif │ │ │ ├── vsnetsetup4.gif │ │ │ └── vsnetsetup5.gif │ │ └── index.html │ ├── include │ │ ├── hge.h │ │ ├── hgeanim.h │ │ ├── hgecolor.h │ │ ├── hgedistort.h │ │ ├── hgefont.h │ │ ├── hgegui.h │ │ ├── hgeguictrls.h │ │ ├── hgeparticle.h │ │ ├── hgerect.h │ │ ├── hgeresource.h │ │ ├── hgesprite.h │ │ ├── hgestrings.h │ │ └── hgevector.h │ ├── license.txt │ ├── readme.txt │ ├── src │ │ ├── core │ │ │ ├── BASS │ │ │ │ └── bass.h │ │ │ ├── Debug │ │ │ │ ├── BuildLog.htm │ │ │ │ ├── hge.dll.embed.manifest │ │ │ │ ├── vc90.idb │ │ │ │ └── vc90.pdb │ │ │ ├── Makefile.win │ │ │ ├── ZLIB │ │ │ │ ├── adler32.c │ │ │ │ ├── crc32.c │ │ │ │ ├── crc32.h │ │ │ │ ├── crypt.h │ │ │ │ ├── deflate.h │ │ │ │ ├── inffast.c │ │ │ │ ├── inffast.h │ │ │ │ ├── inffixed.h │ │ │ │ ├── inflate.c │ │ │ │ ├── inflate.h │ │ │ │ ├── inftrees.c │ │ │ │ ├── inftrees.h │ │ │ │ ├── ioapi.c │ │ │ │ ├── ioapi.h │ │ │ │ ├── trees.c │ │ │ │ ├── trees.h │ │ │ │ ├── uncompr.c │ │ │ │ ├── unzip.c │ │ │ │ ├── unzip.h │ │ │ │ ├── zconf.h │ │ │ │ ├── zconf.in.h │ │ │ │ ├── zip.h │ │ │ │ ├── zlib.h │ │ │ │ ├── zutil.c │ │ │ │ └── zutil.h │ │ │ ├── bcc_implib.bat │ │ │ ├── demo.cpp │ │ │ ├── graphics.cpp │ │ │ ├── hge.bpf │ │ │ ├── hge.bpr │ │ │ ├── hge.def │ │ │ ├── hge.dev │ │ │ ├── hge.dsp │ │ │ ├── hge.dsw │ │ │ ├── hge.sln │ │ │ ├── hge.vcproj │ │ │ ├── hge.vcproj.8.00.old │ │ │ ├── hge.vcproj.CY2011.shizehuan.user │ │ │ ├── hge_impl.h │ │ │ ├── ini.cpp │ │ │ ├── input.cpp │ │ │ ├── power.cpp │ │ │ ├── random.cpp │ │ │ ├── resource.cpp │ │ │ ├── sound.cpp │ │ │ ├── system.cpp │ │ │ └── timer.cpp │ │ ├── fontconv │ │ │ ├── fontconv.cpp │ │ │ ├── fontconv.dsp │ │ │ └── fontconv.dsw │ │ ├── fonted │ │ │ ├── ZLIB │ │ │ │ ├── adler32.c │ │ │ │ ├── compress.c │ │ │ │ ├── crc32.c │ │ │ │ ├── crc32.h │ │ │ │ ├── deflate.c │ │ │ │ ├── deflate.h │ │ │ │ ├── gzio.c │ │ │ │ ├── infback.c │ │ │ │ ├── inffast.c │ │ │ │ ├── inffast.h │ │ │ │ ├── inffixed.h │ │ │ │ ├── inflate.c │ │ │ │ ├── inflate.h │ │ │ │ ├── inftrees.c │ │ │ │ ├── inftrees.h │ │ │ │ ├── trees.c │ │ │ │ ├── trees.h │ │ │ │ ├── uncompr.c │ │ │ │ ├── zconf.h │ │ │ │ ├── zconf.in.h │ │ │ │ ├── zlib.h │ │ │ │ ├── zutil.c │ │ │ │ └── zutil.h │ │ │ ├── commands.cpp │ │ │ ├── fonted.cpp │ │ │ ├── fonted.dsp │ │ │ ├── fonted.dsw │ │ │ ├── fonted.h │ │ │ ├── fontlist.cpp │ │ │ ├── fontlist.h │ │ │ ├── generate.cpp │ │ │ ├── hgeguirange.cpp │ │ │ ├── hgeguirange.h │ │ │ ├── libPNG │ │ │ │ ├── png.c │ │ │ │ ├── png.h │ │ │ │ ├── pngconf.h │ │ │ │ ├── pngerror.c │ │ │ │ ├── pnggccrd.c │ │ │ │ ├── pngget.c │ │ │ │ ├── pngmem.c │ │ │ │ ├── pngpread.c │ │ │ │ ├── pngread.c │ │ │ │ ├── pngrio.c │ │ │ │ ├── pngrtran.c │ │ │ │ ├── pngrutil.c │ │ │ │ ├── pngset.c │ │ │ │ ├── pngtrans.c │ │ │ │ ├── pngvcrd.c │ │ │ │ ├── pngwio.c │ │ │ │ ├── pngwrite.c │ │ │ │ ├── pngwtran.c │ │ │ │ └── pngwutil.c │ │ │ ├── media │ │ │ │ ├── fgui.png │ │ │ │ ├── font3.fnt │ │ │ │ ├── font3.png │ │ │ │ └── fonted.ini │ │ │ └── savepng.cpp │ │ ├── helpers │ │ │ ├── Makefile.win │ │ │ ├── hgeanim.cpp │ │ │ ├── hgecolor.cpp │ │ │ ├── hgedistort.cpp │ │ │ ├── hgefont.cpp │ │ │ ├── hgegui.cpp │ │ │ ├── hgeguictrls.cpp │ │ │ ├── hgehelp.bpf │ │ │ ├── hgehelp.bpr │ │ │ ├── hgehelp.dev │ │ │ ├── hgehelp.dsp │ │ │ ├── hgehelp.dsw │ │ │ ├── hgeparticle.cpp │ │ │ ├── hgepmanager.cpp │ │ │ ├── hgerect.cpp │ │ │ ├── hgeresource.cpp │ │ │ ├── hgesprite.cpp │ │ │ ├── hgestrings.cpp │ │ │ ├── hgevector.cpp │ │ │ ├── parser.cpp │ │ │ ├── parser.h │ │ │ ├── resources.cpp │ │ │ └── resources.h │ │ ├── particleed │ │ │ ├── commands.cpp │ │ │ ├── media │ │ │ │ ├── font3.fnt │ │ │ │ ├── font3.png │ │ │ │ ├── particleed.ini │ │ │ │ ├── particles.png │ │ │ │ └── pgui.png │ │ │ ├── particleed.cpp │ │ │ ├── particleed.dsp │ │ │ ├── particleed.dsw │ │ │ └── particleed.h │ │ ├── pngopt │ │ │ ├── ZLIB │ │ │ │ ├── adler32.c │ │ │ │ ├── compress.c │ │ │ │ ├── crc32.c │ │ │ │ ├── crc32.h │ │ │ │ ├── deflate.c │ │ │ │ ├── deflate.h │ │ │ │ ├── gzio.c │ │ │ │ ├── infback.c │ │ │ │ ├── inffast.c │ │ │ │ ├── inffast.h │ │ │ │ ├── inffixed.h │ │ │ │ ├── inflate.c │ │ │ │ ├── inflate.h │ │ │ │ ├── inftrees.c │ │ │ │ ├── inftrees.h │ │ │ │ ├── trees.c │ │ │ │ ├── trees.h │ │ │ │ ├── uncompr.c │ │ │ │ ├── zconf.h │ │ │ │ ├── zconf.in.h │ │ │ │ ├── zlib.h │ │ │ │ ├── zutil.c │ │ │ │ └── zutil.h │ │ │ ├── libPNG │ │ │ │ ├── png.c │ │ │ │ ├── png.h │ │ │ │ ├── pngconf.h │ │ │ │ ├── pngerror.c │ │ │ │ ├── pnggccrd.c │ │ │ │ ├── pngget.c │ │ │ │ ├── pngmem.c │ │ │ │ ├── pngpread.c │ │ │ │ ├── pngread.c │ │ │ │ ├── pngrio.c │ │ │ │ ├── pngrtran.c │ │ │ │ ├── pngrutil.c │ │ │ │ ├── pngset.c │ │ │ │ ├── pngtrans.c │ │ │ │ ├── pngvcrd.c │ │ │ │ ├── pngwio.c │ │ │ │ ├── pngwrite.c │ │ │ │ ├── pngwtran.c │ │ │ │ └── pngwutil.c │ │ │ ├── pngopt.cpp │ │ │ ├── pngopt.dsp │ │ │ ├── pngopt.dsw │ │ │ ├── pngopt.h │ │ │ └── savepngpitch.cpp │ │ └── texasm │ │ │ ├── RectPlacement.cpp │ │ │ ├── RectPlacement.h │ │ │ ├── ZLIB │ │ │ ├── adler32.c │ │ │ ├── compress.c │ │ │ ├── crc32.c │ │ │ ├── crc32.h │ │ │ ├── deflate.c │ │ │ ├── deflate.h │ │ │ ├── gzio.c │ │ │ ├── infback.c │ │ │ ├── inffast.c │ │ │ ├── inffast.h │ │ │ ├── inffixed.h │ │ │ ├── inflate.c │ │ │ ├── inflate.h │ │ │ ├── inftrees.c │ │ │ ├── inftrees.h │ │ │ ├── trees.c │ │ │ ├── trees.h │ │ │ ├── uncompr.c │ │ │ ├── zconf.h │ │ │ ├── zconf.in.h │ │ │ ├── zlib.h │ │ │ ├── zutil.c │ │ │ └── zutil.h │ │ │ ├── gfx_object.h │ │ │ ├── libPNG │ │ │ ├── png.c │ │ │ ├── png.h │ │ │ ├── pngconf.h │ │ │ ├── pngerror.c │ │ │ ├── pnggccrd.c │ │ │ ├── pngget.c │ │ │ ├── pngmem.c │ │ │ ├── pngpread.c │ │ │ ├── pngread.c │ │ │ ├── pngrio.c │ │ │ ├── pngrtran.c │ │ │ ├── pngrutil.c │ │ │ ├── pngset.c │ │ │ ├── pngtrans.c │ │ │ ├── pngvcrd.c │ │ │ ├── pngwio.c │ │ │ ├── pngwrite.c │ │ │ ├── pngwtran.c │ │ │ └── pngwutil.c │ │ │ ├── optimized_texture.cpp │ │ │ ├── optimized_texture.h │ │ │ ├── sprite_object.cpp │ │ │ ├── sprite_object.h │ │ │ ├── texasm.cpp │ │ │ ├── texasm.dsp │ │ │ ├── texasm.dsw │ │ │ ├── texasm.h │ │ │ ├── texasm.sln │ │ │ ├── texasm.vcproj │ │ │ ├── texture_assembler.cpp │ │ │ ├── texture_assembler.h │ │ │ └── writePNG.cpp │ ├── tools │ │ ├── fonted │ │ │ ├── fonted.ini │ │ │ └── fonted.paq │ │ └── particleed │ │ │ ├── particle1.psi │ │ │ ├── particle2.psi │ │ │ ├── particle3.psi │ │ │ ├── particle4.psi │ │ │ ├── particle5.psi │ │ │ ├── particle6.psi │ │ │ ├── particle7.psi │ │ │ ├── particle8.psi │ │ │ ├── particle9.psi │ │ │ ├── particleed.ini │ │ │ ├── particleed.paq │ │ │ └── particles.png │ └── tutorials │ │ ├── precompiled │ │ ├── bg.png │ │ ├── bg2.png │ │ ├── cursor.png │ │ ├── font1.fnt │ │ ├── font1.png │ │ ├── font2.fnt │ │ ├── font2.png │ │ ├── menu.wav │ │ ├── objects.png │ │ ├── particles.png │ │ ├── texture.jpg │ │ ├── trail.psi │ │ └── zazaka.png │ │ ├── tutorial01 │ │ ├── hge_tut01.cpp │ │ ├── hge_tut01.dsp │ │ └── hge_tut01.dsw │ │ ├── tutorial02 │ │ ├── hge_tut02.cpp │ │ ├── hge_tut02.dsp │ │ └── hge_tut02.dsw │ │ ├── tutorial03 │ │ ├── hge_tut03.cpp │ │ ├── hge_tut03.dsp │ │ └── hge_tut03.dsw │ │ ├── tutorial04 │ │ ├── hge_tut04.cpp │ │ ├── hge_tut04.dsp │ │ └── hge_tut04.dsw │ │ ├── tutorial05 │ │ ├── hge_tut05.cpp │ │ ├── hge_tut05.dsp │ │ └── hge_tut05.dsw │ │ ├── tutorial06 │ │ ├── hge_tut06.cpp │ │ ├── hge_tut06.dsp │ │ ├── hge_tut06.dsw │ │ ├── menuitem.cpp │ │ └── menuitem.h │ │ ├── tutorial07 │ │ ├── hge_tut07.cpp │ │ ├── hge_tut07.dsp │ │ └── hge_tut07.dsw │ │ └── tutorial08 │ │ ├── hge_tut08.cpp │ │ ├── hge_tut08.dsp │ │ └── hge_tut08.dsw ├── intel_xml │ └── include │ │ ├── common │ │ ├── constants.h │ │ ├── defines.h │ │ ├── errorhandler.h │ │ ├── exception.h │ │ ├── result.h │ │ ├── source.h │ │ ├── types.h │ │ ├── version.h │ │ ├── xfunction.h │ │ └── xobject.h │ │ ├── util │ │ ├── filereader.h │ │ ├── filewriter.h │ │ ├── memoryreader.h │ │ ├── memorywriter.h │ │ ├── reader.h │ │ ├── stdoutwriter.h │ │ ├── writer.h │ │ ├── xmlstring.h │ │ └── xvector.h │ │ ├── xpa │ │ ├── dom │ │ │ ├── attr.h │ │ │ ├── cdatasection.h │ │ │ ├── characterdata.h │ │ │ ├── comment.h │ │ │ ├── document.h │ │ │ ├── documentfragment.h │ │ │ ├── documenttype.h │ │ │ ├── dom.h │ │ │ ├── domexception.h │ │ │ ├── domimplementation.h │ │ │ ├── domimplementationfactory.h │ │ │ ├── domparseexception.h │ │ │ ├── domparser.h │ │ │ ├── domwriter.h │ │ │ ├── element.h │ │ │ ├── entity.h │ │ │ ├── entityreference.h │ │ │ ├── namednodemap.h │ │ │ ├── namespace.h │ │ │ ├── node.h │ │ │ ├── nodelist.h │ │ │ ├── notation.h │ │ │ ├── pi.h │ │ │ └── text.h │ │ ├── sax │ │ │ ├── contenthandler.h │ │ │ ├── dtdhandler.h │ │ │ ├── entityresolver.h │ │ │ ├── lexicalhandler.h │ │ │ ├── locator.h │ │ │ ├── locator2.h │ │ │ ├── sax.h │ │ │ ├── saxattribute.h │ │ │ ├── saxexception.h │ │ │ ├── saxparser.h │ │ │ └── saxparserfactory.h │ │ └── xmldoc │ │ │ ├── xmldoc.h │ │ │ ├── xmldocfactory.h │ │ │ ├── xmldocnode.h │ │ │ ├── xmldocparseexception.h │ │ │ ├── xmldocparser.h │ │ │ ├── xmldocument.h │ │ │ └── xmldocwriter.h │ │ ├── xpatha │ │ ├── xpath.h │ │ ├── xpathexception.h │ │ └── xpathfactory.h │ │ ├── xsa │ │ ├── resourceresolver.h │ │ ├── schema.h │ │ ├── schemafactory.h │ │ ├── schemavalidator.h │ │ ├── validationexception.h │ │ └── validator.h │ │ └── xslta │ │ ├── templates.h │ │ ├── transform.h │ │ ├── transformer.h │ │ ├── transformexception.h │ │ ├── transformfactory.h │ │ ├── transformtypes.h │ │ └── uriresolver.h ├── itc │ ├── examples_linux │ │ ├── bin │ │ │ ├── cdemo │ │ │ ├── itcs_demo │ │ │ ├── itcsvr │ │ │ └── 说明.txt │ │ ├── cfg │ │ │ └── itc.xml │ │ ├── client_demo │ │ │ ├── Debug │ │ │ │ ├── BuildLog.htm │ │ │ │ ├── cdemo.exe.embed.manifest │ │ │ │ ├── cdemo.exe.embed.manifest.res │ │ │ │ ├── cdemo.exe.intermediate.manifest │ │ │ │ ├── cdemod.exe.embed.manifest │ │ │ │ ├── cdemod.exe.embed.manifest.res │ │ │ │ ├── cdemod.exe.intermediate.manifest │ │ │ │ ├── mt.dep │ │ │ │ ├── vc80.idb │ │ │ │ ├── vc80.pdb │ │ │ │ ├── vc90.idb │ │ │ │ └── vc90.pdb │ │ │ ├── Release │ │ │ │ ├── BuildLog.htm │ │ │ │ ├── cdemo.exe.intermediate.manifest │ │ │ │ ├── mt.dep │ │ │ │ ├── vc80.idb │ │ │ │ ├── vc80.pdb │ │ │ │ ├── vc90.idb │ │ │ │ └── vc90.pdb │ │ │ ├── UpgradeLog.XML │ │ │ ├── client_demo.ncb │ │ │ ├── client_demo.sln │ │ │ ├── client_demo.vcproj │ │ │ ├── dmain.cpp │ │ │ ├── makefile │ │ │ └── makefile.bak │ │ └── log │ │ │ ├── itc.log │ │ │ ├── itc.log.20110929 │ │ │ └── itc.log.20111128 │ ├── examples_win │ │ ├── bin │ │ │ ├── cdemo.pdb │ │ │ ├── cdemod.ilk │ │ │ └── cdemod.pdb │ │ ├── cfg │ │ │ └── itc.xml │ │ ├── client_demo │ │ │ ├── Debug │ │ │ │ ├── BuildLog.htm │ │ │ │ ├── cdemo.exe.embed.manifest │ │ │ │ ├── cdemo.exe.embed.manifest.res │ │ │ │ ├── cdemo.exe.intermediate.manifest │ │ │ │ ├── cdemod.exe.embed.manifest │ │ │ │ ├── cdemod.exe.embed.manifest.res │ │ │ │ ├── cdemod.exe.intermediate.manifest │ │ │ │ ├── mt.dep │ │ │ │ ├── vc80.idb │ │ │ │ ├── vc80.pdb │ │ │ │ ├── vc90.idb │ │ │ │ └── vc90.pdb │ │ │ ├── Release │ │ │ │ ├── BuildLog.htm │ │ │ │ ├── cdemo.exe.intermediate.manifest │ │ │ │ ├── mt.dep │ │ │ │ ├── vc80.idb │ │ │ │ ├── vc80.pdb │ │ │ │ ├── vc90.idb │ │ │ │ └── vc90.pdb │ │ │ ├── UpgradeLog.XML │ │ │ ├── client_demo.sln │ │ │ ├── client_demo.vcproj │ │ │ ├── dmain.cpp │ │ │ └── makefile │ │ └── log │ │ │ ├── itc.log │ │ │ ├── itc.log.20110929 │ │ │ └── itc.log.20111128 │ ├── include │ │ ├── boost │ │ │ ├── config.hpp │ │ │ ├── config │ │ │ │ ├── abi │ │ │ │ │ ├── borland_prefix.hpp │ │ │ │ │ ├── borland_suffix.hpp │ │ │ │ │ ├── msvc_prefix.hpp │ │ │ │ │ └── msvc_suffix.hpp │ │ │ │ ├── abi_prefix.hpp │ │ │ │ ├── abi_suffix.hpp │ │ │ │ ├── auto_link.hpp │ │ │ │ ├── compiler │ │ │ │ │ ├── borland.hpp │ │ │ │ │ ├── clang.hpp │ │ │ │ │ ├── codegear.hpp │ │ │ │ │ ├── comeau.hpp │ │ │ │ │ ├── common_edg.hpp │ │ │ │ │ ├── compaq_cxx.hpp │ │ │ │ │ ├── digitalmars.hpp │ │ │ │ │ ├── gcc.hpp │ │ │ │ │ ├── gcc_xml.hpp │ │ │ │ │ ├── greenhills.hpp │ │ │ │ │ ├── hp_acc.hpp │ │ │ │ │ ├── intel.hpp │ │ │ │ │ ├── kai.hpp │ │ │ │ │ ├── metrowerks.hpp │ │ │ │ │ ├── mpw.hpp │ │ │ │ │ ├── nvcc.hpp │ │ │ │ │ ├── pathscale.hpp │ │ │ │ │ ├── pgi.hpp │ │ │ │ │ ├── sgi_mipspro.hpp │ │ │ │ │ ├── sunpro_cc.hpp │ │ │ │ │ ├── vacpp.hpp │ │ │ │ │ └── visualc.hpp │ │ │ │ ├── no_tr1 │ │ │ │ │ ├── cmath.hpp │ │ │ │ │ ├── complex.hpp │ │ │ │ │ ├── functional.hpp │ │ │ │ │ ├── memory.hpp │ │ │ │ │ └── utility.hpp │ │ │ │ ├── platform │ │ │ │ │ ├── aix.hpp │ │ │ │ │ ├── amigaos.hpp │ │ │ │ │ ├── beos.hpp │ │ │ │ │ ├── bsd.hpp │ │ │ │ │ ├── cygwin.hpp │ │ │ │ │ ├── hpux.hpp │ │ │ │ │ ├── irix.hpp │ │ │ │ │ ├── linux.hpp │ │ │ │ │ ├── macos.hpp │ │ │ │ │ ├── qnxnto.hpp │ │ │ │ │ ├── solaris.hpp │ │ │ │ │ ├── symbian.hpp │ │ │ │ │ ├── vms.hpp │ │ │ │ │ ├── vxworks.hpp │ │ │ │ │ └── win32.hpp │ │ │ │ ├── posix_features.hpp │ │ │ │ ├── requires_threads.hpp │ │ │ │ ├── select_compiler_config.hpp │ │ │ │ ├── select_platform_config.hpp │ │ │ │ ├── select_stdlib_config.hpp │ │ │ │ ├── stdlib │ │ │ │ │ ├── dinkumware.hpp │ │ │ │ │ ├── libcomo.hpp │ │ │ │ │ ├── libcpp.hpp │ │ │ │ │ ├── libstdcpp3.hpp │ │ │ │ │ ├── modena.hpp │ │ │ │ │ ├── msl.hpp │ │ │ │ │ ├── roguewave.hpp │ │ │ │ │ ├── sgi.hpp │ │ │ │ │ ├── stlport.hpp │ │ │ │ │ └── vacpp.hpp │ │ │ │ ├── suffix.hpp │ │ │ │ ├── user.hpp │ │ │ │ └── warning_disable.hpp │ │ │ ├── cstdint.hpp │ │ │ └── limits.hpp │ │ └── itc │ │ │ ├── client.hpp │ │ │ └── types.hpp │ ├── itc提供的api错误码列表.txt │ ├── lib_linux64 │ │ └── 版本信息.txt │ ├── readme.doc │ └── 点券系统客户端API使用说明文档.doc ├── libsigc++-2.2.8 │ ├── AUTHORS │ ├── COPYING │ ├── ChangeLog │ ├── INSTALL │ ├── NEWS │ ├── README │ ├── TODO │ ├── aclocal.m4 │ ├── autogen.sh │ ├── build │ │ ├── config.guess │ │ ├── config.sub │ │ ├── cxx.m4 │ │ ├── cxx_std.m4 │ │ ├── depcomp │ │ ├── doc-reference.am │ │ ├── install-sh │ │ ├── libtool.m4 │ │ ├── ltmain.sh │ │ ├── ltoptions.m4 │ │ ├── ltsugar.m4 │ │ ├── ltversion.m4 │ │ ├── lt~obsolete.m4 │ │ └── missing │ ├── config.h.in │ ├── configure │ ├── configure.ac │ ├── other.zip │ ├── sigc++-uninstalled.pc.in │ ├── sigc++.pc.in │ ├── sigc++ │ │ ├── adaptors │ │ │ ├── adaptor_trait.h │ │ │ ├── adaptors.h │ │ │ ├── bind.h │ │ │ ├── bind_return.h │ │ │ ├── bound_argument.h │ │ │ ├── compose.h │ │ │ ├── deduce_result_type.h │ │ │ ├── exception_catch.h │ │ │ ├── hide.h │ │ │ ├── lambda │ │ │ │ ├── base.h │ │ │ │ ├── group.h │ │ │ │ ├── lambda.cc │ │ │ │ ├── lambda.h │ │ │ │ ├── macros │ │ │ │ │ ├── base.h.m4 │ │ │ │ │ ├── group.h.m4 │ │ │ │ │ ├── lambda.cc.m4 │ │ │ │ │ ├── operator.h.m4 │ │ │ │ │ └── select.h.m4 │ │ │ │ ├── operator.h │ │ │ │ └── select.h │ │ │ ├── macros │ │ │ │ ├── adaptor_trait.h.m4 │ │ │ │ ├── bind.h.m4 │ │ │ │ ├── bind_return.h.m4 │ │ │ │ ├── compose.h.m4 │ │ │ │ ├── deduce_result_type.h.m4 │ │ │ │ ├── exception_catch.h.m4 │ │ │ │ ├── hide.h.m4 │ │ │ │ ├── retype.h.m4 │ │ │ │ └── retype_return.h.m4 │ │ │ ├── retype.h │ │ │ └── retype_return.h │ │ ├── bind.h │ │ ├── bind_return.h │ │ ├── class_slot.h │ │ ├── connection.cc │ │ ├── connection.h │ │ ├── filelist.am │ │ ├── functors │ │ │ ├── functor_trait.h │ │ │ ├── functors.h │ │ │ ├── macros │ │ │ │ ├── functor_trait.h.m4 │ │ │ │ ├── mem_fun.h.m4 │ │ │ │ ├── ptr_fun.h.m4 │ │ │ │ └── slot.h.m4 │ │ │ ├── mem_fun.h │ │ │ ├── ptr_fun.h │ │ │ ├── slot.cc │ │ │ ├── slot.h │ │ │ ├── slot_base.cc │ │ │ └── slot_base.h │ │ ├── hide.h │ │ ├── limit_reference.h │ │ ├── macros │ │ │ ├── class_slot.h.m4 │ │ │ ├── hide.h.m4 │ │ │ ├── limit_reference.h.m4 │ │ │ ├── method_slot.h.m4 │ │ │ ├── object_slot.h.m4 │ │ │ ├── retype.h.m4 │ │ │ ├── signal.h.m4 │ │ │ ├── slot.h.m4 │ │ │ └── template.macros.m4 │ │ ├── method_slot.h │ │ ├── object.h │ │ ├── object_slot.h │ │ ├── reference_wrapper.h │ │ ├── retype.h │ │ ├── retype_return.h │ │ ├── sigc++.h │ │ ├── signal.cc │ │ ├── signal.h │ │ ├── signal_base.cc │ │ ├── signal_base.h │ │ ├── slot.h │ │ ├── trackable.cc │ │ ├── trackable.h │ │ ├── type_traits.h │ │ └── visit_each.h │ ├── sigc++config.h │ └── sigc++config.h.in ├── libtomcrypt │ ├── mycrypt.h │ ├── mycrypt_argchk.h │ ├── mycrypt_cfg.h │ ├── mycrypt_cipher.h │ ├── mycrypt_custom.h │ ├── mycrypt_gf.h │ ├── mycrypt_hash.h │ ├── mycrypt_kr.h │ ├── mycrypt_macros.h │ ├── mycrypt_misc.h │ ├── mycrypt_pk.h │ ├── mycrypt_prng.h │ └── tommath.h ├── lua-5.1.4 │ ├── COPYRIGHT │ ├── HISTORY │ ├── INSTALL │ ├── README │ ├── bin │ │ ├── lua │ │ └── luac │ ├── doc.zip │ ├── etc │ │ ├── README │ │ ├── all.c │ │ ├── lua.hpp │ │ ├── lua.ico │ │ ├── lua.pc │ │ ├── luavs.bat │ │ ├── min.c │ │ ├── noparser.c │ │ └── strict.lua │ ├── include │ │ ├── lauxlib.h │ │ ├── lua.h │ │ ├── lua.hpp │ │ ├── luaconf.h │ │ └── lualib.h │ ├── lua.vcproj │ ├── man │ │ └── man1 │ │ │ ├── lua.1 │ │ │ └── luac.1 │ ├── src │ │ ├── lapi.c │ │ ├── lapi.h │ │ ├── lauxlib.c │ │ ├── lauxlib.h │ │ ├── lbaselib.c │ │ ├── lcode.c │ │ ├── lcode.h │ │ ├── ldblib.c │ │ ├── ldebug.c │ │ ├── ldebug.h │ │ ├── ldo.c │ │ ├── ldo.h │ │ ├── ldump.c │ │ ├── lfunc.c │ │ ├── lfunc.h │ │ ├── lgc.c │ │ ├── lgc.h │ │ ├── linit.c │ │ ├── liolib.c │ │ ├── llex.c │ │ ├── llex.h │ │ ├── llimits.h │ │ ├── lmathlib.c │ │ ├── lmem.c │ │ ├── lmem.h │ │ ├── loadlib.c │ │ ├── lobject.c │ │ ├── lobject.h │ │ ├── lopcodes.c │ │ ├── lopcodes.h │ │ ├── loslib.c │ │ ├── lparser.c │ │ ├── lparser.h │ │ ├── lstate.c │ │ ├── lstate.h │ │ ├── lstring.c │ │ ├── lstring.h │ │ ├── lstrlib.c │ │ ├── ltable.c │ │ ├── ltable.h │ │ ├── ltablib.c │ │ ├── ltm.c │ │ ├── ltm.h │ │ ├── lua │ │ ├── lua.c │ │ ├── lua.h │ │ ├── luac │ │ ├── luac.c │ │ ├── luaconf.h │ │ ├── lualib.h │ │ ├── lundump.c │ │ ├── lundump.h │ │ ├── lvm.c │ │ ├── lvm.h │ │ ├── lzio.c │ │ ├── lzio.h │ │ └── print.c │ └── test.zip ├── mysql++-3.1.0 │ └── include │ │ └── mysql++ │ │ ├── autoflag.h │ │ ├── beemutex.h │ │ ├── cmdline.h │ │ ├── common.h │ │ ├── comparable.h │ │ ├── connection.h │ │ ├── cpool.h │ │ ├── datetime.h │ │ ├── dbdriver.h │ │ ├── exceptions.h │ │ ├── field.h │ │ ├── field_names.h │ │ ├── field_types.h │ │ ├── insertpolicy.h │ │ ├── manip.h │ │ ├── myset.h │ │ ├── mysql++.h │ │ ├── mystring.h │ │ ├── noexceptions.h │ │ ├── null.h │ │ ├── options.h │ │ ├── qparms.h │ │ ├── query.h │ │ ├── querydef.h │ │ ├── refcounted.h │ │ ├── result.h │ │ ├── row.h │ │ ├── scopedconnection.h │ │ ├── sql_buffer.h │ │ ├── sql_types.h │ │ ├── sqlstream.h │ │ ├── ssqls.h │ │ ├── ssqls.pl │ │ ├── ssqls2.h │ │ ├── stadapter.h │ │ ├── stream2string.h │ │ ├── tcp_connection.h │ │ ├── tiny_int.h │ │ ├── transaction.h │ │ ├── type_info.h │ │ ├── uds_connection.h │ │ ├── utility.h │ │ ├── vallist.h │ │ └── wnp_connection.h ├── mysql-connector-c-6.0.0 │ ├── COPYING │ ├── EXCEPTIONS-CLIENT │ ├── README │ ├── bin │ │ └── mysql_config │ └── include │ │ ├── atomic │ │ ├── gcc_builtins.h │ │ ├── generic-msvc.h │ │ ├── nolock.h │ │ ├── rwlock.h │ │ └── x86-gcc.h │ │ ├── base64.h │ │ ├── config-win.h │ │ ├── decimal.h │ │ ├── errmsg.h │ │ ├── hash.h │ │ ├── keycache.h │ │ ├── lf.h │ │ ├── m_ctype.h │ │ ├── m_string.h │ │ ├── my_aes.h │ │ ├── my_alarm.h │ │ ├── my_alloc.h │ │ ├── my_atomic.h │ │ ├── my_attribute.h │ │ ├── my_base.h │ │ ├── my_bit.h │ │ ├── my_bitmap.h │ │ ├── my_charsets.h │ │ ├── my_config.h │ │ ├── my_dbug.h │ │ ├── my_dir.h │ │ ├── my_getopt.h │ │ ├── my_global.h │ │ ├── my_libwrap.h │ │ ├── my_list.h │ │ ├── my_md5.h │ │ ├── my_net.h │ │ ├── my_no_pthread.h │ │ ├── my_nosys.h │ │ ├── my_pthread.h │ │ ├── my_stacktrace.h │ │ ├── my_sys.h │ │ ├── my_time.h │ │ ├── my_tree.h │ │ ├── my_trie.h │ │ ├── my_uctype.h │ │ ├── my_vle.h │ │ ├── my_xml.h │ │ ├── myisampack.h │ │ ├── mysql.h │ │ ├── mysql_com.h │ │ ├── mysql_time.h │ │ ├── mysql_version.h │ │ ├── mysqld_error.h │ │ ├── mysys │ │ └── rijndael.h │ │ ├── mysys_err.h │ │ ├── queues.h │ │ ├── service_versions.h │ │ ├── sha1.h │ │ ├── sha2.h │ │ ├── sql_common.h │ │ ├── sslopt-case.h │ │ ├── sslopt-longopts.h │ │ ├── sslopt-vars.h │ │ ├── t_ctype.h │ │ ├── thr_alarm.h │ │ ├── thr_lock.h │ │ ├── typelib.h │ │ ├── violite.h │ │ ├── waiting_threads.h │ │ └── wqueue.h ├── openssl-1.0.1 │ ├── README │ └── include │ │ └── openssl │ │ ├── aes.h │ │ ├── asn1.h │ │ ├── asn1_mac.h │ │ ├── asn1t.h │ │ ├── bio.h │ │ ├── blowfish.h │ │ ├── bn.h │ │ ├── buffer.h │ │ ├── camellia.h │ │ ├── cast.h │ │ ├── cmac.h │ │ ├── cms.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 │ │ ├── md4.h │ │ ├── md5.h │ │ ├── mdc2.h │ │ ├── modes.h │ │ ├── obj_mac.h │ │ ├── objects.h │ │ ├── ocsp.h │ │ ├── opensslconf.h │ │ ├── opensslv.h │ │ ├── ossl_typ.h │ │ ├── pem.h │ │ ├── pem2.h │ │ ├── pkcs12.h │ │ ├── pkcs7.h │ │ ├── pqueue.h │ │ ├── rand.h │ │ ├── rc2.h │ │ ├── rc4.h │ │ ├── ripemd.h │ │ ├── rsa.h │ │ ├── safestack.h │ │ ├── seed.h │ │ ├── sha.h │ │ ├── srp.h │ │ ├── srtp.h │ │ ├── ssl.h │ │ ├── ssl2.h │ │ ├── ssl23.h │ │ ├── ssl3.h │ │ ├── stack.h │ │ ├── symhacks.h │ │ ├── tls1.h │ │ ├── ts.h │ │ ├── txt_db.h │ │ ├── ui.h │ │ ├── ui_compat.h │ │ ├── whrlpool.h │ │ ├── x509.h │ │ ├── x509_vfy.h │ │ └── x509v3.h ├── protobuf-2.5.0 │ ├── CHANGES.txt │ ├── CONTRIBUTORS.txt │ ├── COPYING.txt │ ├── INSTALL.txt │ ├── Makefile │ ├── Makefile.am │ ├── Makefile.in │ ├── README.txt │ ├── aclocal.m4 │ ├── autogen.sh │ ├── config.guess │ ├── config.h │ ├── config.h.in │ ├── config.log │ ├── config.status │ ├── config.sub │ ├── configure │ ├── configure.ac │ ├── depcomp │ ├── editors │ │ ├── README.txt │ │ ├── proto.vim │ │ └── protobuf-mode.el │ ├── examples │ │ ├── AddPerson.java │ │ ├── ListPeople.java │ │ ├── Makefile │ │ ├── README.txt │ │ ├── add_person.cc │ │ ├── add_person.py │ │ ├── addressbook.proto │ │ ├── list_people.cc │ │ └── list_people.py │ ├── generate_descriptor_proto.sh │ ├── gtest │ │ ├── CHANGES │ │ ├── CMakeLists.txt │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── README │ │ ├── aclocal.m4 │ │ ├── build-aux │ │ │ ├── config.guess │ │ │ ├── config.h │ │ │ ├── config.h.in │ │ │ ├── config.sub │ │ │ ├── depcomp │ │ │ ├── install-sh │ │ │ ├── ltmain.sh │ │ │ ├── missing │ │ │ └── stamp-h1 │ │ ├── cmake │ │ │ └── internal_utils.cmake │ │ ├── codegear │ │ │ ├── gtest.cbproj │ │ │ ├── gtest.groupproj │ │ │ ├── gtest_all.cc │ │ │ ├── gtest_link.cc │ │ │ ├── gtest_main.cbproj │ │ │ └── gtest_unittest.cbproj │ │ ├── config.log │ │ ├── config.status │ │ ├── configure │ │ ├── configure.ac │ │ ├── fused-src │ │ │ └── gtest │ │ │ │ ├── .deps │ │ │ │ ├── test_fused_gtest_test-gtest-all.Po │ │ │ │ └── test_fused_gtest_test-gtest_main.Po │ │ │ │ ├── gtest-all.cc │ │ │ │ ├── gtest.h │ │ │ │ └── gtest_main.cc │ │ ├── include │ │ │ └── gtest │ │ │ │ ├── gtest-death-test.h │ │ │ │ ├── gtest-message.h │ │ │ │ ├── gtest-param-test.h │ │ │ │ ├── gtest-param-test.h.pump │ │ │ │ ├── gtest-printers.h │ │ │ │ ├── gtest-spi.h │ │ │ │ ├── gtest-test-part.h │ │ │ │ ├── gtest-typed-test.h │ │ │ │ ├── gtest.h │ │ │ │ ├── gtest_pred_impl.h │ │ │ │ ├── gtest_prod.h │ │ │ │ └── internal │ │ │ │ ├── gtest-death-test-internal.h │ │ │ │ ├── gtest-filepath.h │ │ │ │ ├── gtest-internal.h │ │ │ │ ├── gtest-linked_ptr.h │ │ │ │ ├── gtest-param-util-generated.h │ │ │ │ ├── gtest-param-util-generated.h.pump │ │ │ │ ├── gtest-param-util.h │ │ │ │ ├── gtest-port.h │ │ │ │ ├── gtest-string.h │ │ │ │ ├── gtest-tuple.h │ │ │ │ ├── gtest-tuple.h.pump │ │ │ │ ├── gtest-type-util.h │ │ │ │ └── gtest-type-util.h.pump │ │ ├── libtool │ │ ├── m4 │ │ │ ├── acx_pthread.m4 │ │ │ ├── gtest.m4 │ │ │ ├── libtool.m4 │ │ │ ├── ltoptions.m4 │ │ │ ├── ltsugar.m4 │ │ │ ├── ltversion.m4 │ │ │ └── lt~obsolete.m4 │ │ ├── make │ │ │ └── Makefile │ │ ├── msvc │ │ │ ├── gtest-md.sln │ │ │ ├── gtest-md.vcproj │ │ │ ├── gtest.sln │ │ │ ├── gtest.vcproj │ │ │ ├── gtest_main-md.vcproj │ │ │ ├── gtest_main.vcproj │ │ │ ├── gtest_prod_test-md.vcproj │ │ │ ├── gtest_prod_test.vcproj │ │ │ ├── gtest_unittest-md.vcproj │ │ │ └── gtest_unittest.vcproj │ │ ├── samples │ │ │ ├── .deps │ │ │ │ ├── sample1.Plo │ │ │ │ ├── sample10_unittest.Po │ │ │ │ ├── sample1_unittest.Po │ │ │ │ ├── sample2.Plo │ │ │ │ ├── sample4.Plo │ │ │ │ ├── test_fused_gtest_test-sample1.Po │ │ │ │ └── test_fused_gtest_test-sample1_unittest.Po │ │ │ ├── prime_tables.h │ │ │ ├── sample1.cc │ │ │ ├── sample1.h │ │ │ ├── sample10_unittest.cc │ │ │ ├── sample1_unittest.cc │ │ │ ├── sample2.cc │ │ │ ├── sample2.h │ │ │ ├── sample2_unittest.cc │ │ │ ├── sample3-inl.h │ │ │ ├── sample3_unittest.cc │ │ │ ├── sample4.cc │ │ │ ├── sample4.h │ │ │ ├── sample4_unittest.cc │ │ │ ├── sample5_unittest.cc │ │ │ ├── sample6_unittest.cc │ │ │ ├── sample7_unittest.cc │ │ │ ├── sample8_unittest.cc │ │ │ └── sample9_unittest.cc │ │ ├── scripts │ │ │ ├── fuse_gtest_files.py │ │ │ ├── gen_gtest_pred_impl.py │ │ │ ├── gtest-config │ │ │ ├── gtest-config.in │ │ │ ├── pump.py │ │ │ └── test │ │ │ │ └── Makefile │ │ ├── src │ │ │ ├── .deps │ │ │ │ ├── gtest-all.Plo │ │ │ │ └── gtest_main.Plo │ │ │ ├── gtest-all.cc │ │ │ ├── gtest-death-test.cc │ │ │ ├── gtest-filepath.cc │ │ │ ├── gtest-internal-inl.h │ │ │ ├── gtest-port.cc │ │ │ ├── gtest-printers.cc │ │ │ ├── gtest-test-part.cc │ │ │ ├── gtest-typed-test.cc │ │ │ ├── gtest.cc │ │ │ └── gtest_main.cc │ │ ├── test │ │ │ ├── .deps │ │ │ │ └── gtest_all_test.Po │ │ │ ├── gtest-death-test_ex_test.cc │ │ │ ├── gtest-death-test_test.cc │ │ │ ├── gtest-filepath_test.cc │ │ │ ├── gtest-linked_ptr_test.cc │ │ │ ├── gtest-listener_test.cc │ │ │ ├── gtest-message_test.cc │ │ │ ├── gtest-options_test.cc │ │ │ ├── gtest-param-test2_test.cc │ │ │ ├── gtest-param-test_test.cc │ │ │ ├── gtest-param-test_test.h │ │ │ ├── gtest-port_test.cc │ │ │ ├── gtest-printers_test.cc │ │ │ ├── gtest-test-part_test.cc │ │ │ ├── gtest-tuple_test.cc │ │ │ ├── gtest-typed-test2_test.cc │ │ │ ├── gtest-typed-test_test.cc │ │ │ ├── gtest-typed-test_test.h │ │ │ ├── gtest-unittest-api_test.cc │ │ │ ├── gtest_all_test.cc │ │ │ ├── gtest_break_on_failure_unittest.py │ │ │ ├── gtest_break_on_failure_unittest_.cc │ │ │ ├── gtest_catch_exceptions_test.py │ │ │ ├── gtest_catch_exceptions_test_.cc │ │ │ ├── gtest_color_test.py │ │ │ ├── gtest_color_test_.cc │ │ │ ├── gtest_env_var_test.py │ │ │ ├── gtest_env_var_test_.cc │ │ │ ├── gtest_environment_test.cc │ │ │ ├── gtest_filter_unittest.py │ │ │ ├── gtest_filter_unittest_.cc │ │ │ ├── gtest_help_test.py │ │ │ ├── gtest_help_test_.cc │ │ │ ├── gtest_list_tests_unittest.py │ │ │ ├── gtest_list_tests_unittest_.cc │ │ │ ├── gtest_main_unittest.cc │ │ │ ├── gtest_no_test_unittest.cc │ │ │ ├── gtest_output_test.py │ │ │ ├── gtest_output_test_.cc │ │ │ ├── gtest_output_test_golden_lin.txt │ │ │ ├── gtest_pred_impl_unittest.cc │ │ │ ├── gtest_prod_test.cc │ │ │ ├── gtest_repeat_test.cc │ │ │ ├── gtest_shuffle_test.py │ │ │ ├── gtest_shuffle_test_.cc │ │ │ ├── gtest_sole_header_test.cc │ │ │ ├── gtest_stress_test.cc │ │ │ ├── gtest_test_utils.py │ │ │ ├── gtest_throw_on_failure_ex_test.cc │ │ │ ├── gtest_throw_on_failure_test.py │ │ │ ├── gtest_throw_on_failure_test_.cc │ │ │ ├── gtest_uninitialized_test.py │ │ │ ├── gtest_uninitialized_test_.cc │ │ │ ├── gtest_unittest.cc │ │ │ ├── gtest_xml_outfile1_test_.cc │ │ │ ├── gtest_xml_outfile2_test_.cc │ │ │ ├── gtest_xml_outfiles_test.py │ │ │ ├── gtest_xml_output_unittest.py │ │ │ ├── gtest_xml_output_unittest_.cc │ │ │ ├── gtest_xml_test_utils.py │ │ │ ├── production.cc │ │ │ └── production.h │ │ └── xcode │ │ │ ├── Config │ │ │ ├── DebugProject.xcconfig │ │ │ ├── FrameworkTarget.xcconfig │ │ │ ├── General.xcconfig │ │ │ ├── ReleaseProject.xcconfig │ │ │ ├── StaticLibraryTarget.xcconfig │ │ │ └── TestTarget.xcconfig │ │ │ ├── Resources │ │ │ └── Info.plist │ │ │ ├── Samples │ │ │ └── FrameworkSample │ │ │ │ ├── Info.plist │ │ │ │ ├── WidgetFramework.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ │ ├── runtests.sh │ │ │ │ ├── widget.cc │ │ │ │ ├── widget.h │ │ │ │ └── widget_test.cc │ │ │ ├── Scripts │ │ │ ├── runtests.sh │ │ │ └── versiongenerate.py │ │ │ └── gtest.xcodeproj │ │ │ └── project.pbxproj │ ├── install-sh │ ├── java │ │ ├── README.txt │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── google │ │ │ │ └── protobuf │ │ │ │ ├── AbstractMessage.java │ │ │ │ ├── AbstractMessageLite.java │ │ │ │ ├── AbstractParser.java │ │ │ │ ├── BlockingRpcChannel.java │ │ │ │ ├── BlockingService.java │ │ │ │ ├── BoundedByteString.java │ │ │ │ ├── ByteString.java │ │ │ │ ├── CodedInputStream.java │ │ │ │ ├── CodedOutputStream.java │ │ │ │ ├── Descriptors.java │ │ │ │ ├── DynamicMessage.java │ │ │ │ ├── ExtensionRegistry.java │ │ │ │ ├── ExtensionRegistryLite.java │ │ │ │ ├── FieldSet.java │ │ │ │ ├── GeneratedMessage.java │ │ │ │ ├── GeneratedMessageLite.java │ │ │ │ ├── Internal.java │ │ │ │ ├── InvalidProtocolBufferException.java │ │ │ │ ├── LazyField.java │ │ │ │ ├── LazyStringArrayList.java │ │ │ │ ├── LazyStringList.java │ │ │ │ ├── LiteralByteString.java │ │ │ │ ├── Message.java │ │ │ │ ├── MessageLite.java │ │ │ │ ├── MessageLiteOrBuilder.java │ │ │ │ ├── MessageOrBuilder.java │ │ │ │ ├── Parser.java │ │ │ │ ├── ProtocolMessageEnum.java │ │ │ │ ├── RepeatedFieldBuilder.java │ │ │ │ ├── RopeByteString.java │ │ │ │ ├── RpcCallback.java │ │ │ │ ├── RpcChannel.java │ │ │ │ ├── RpcController.java │ │ │ │ ├── RpcUtil.java │ │ │ │ ├── Service.java │ │ │ │ ├── ServiceException.java │ │ │ │ ├── SingleFieldBuilder.java │ │ │ │ ├── SmallSortedMap.java │ │ │ │ ├── TextFormat.java │ │ │ │ ├── UninitializedMessageException.java │ │ │ │ ├── UnknownFieldSet.java │ │ │ │ ├── UnmodifiableLazyStringList.java │ │ │ │ ├── Utf8.java │ │ │ │ └── WireFormat.java │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── google │ │ │ └── protobuf │ │ │ ├── AbstractMessageTest.java │ │ │ ├── BoundedByteStringTest.java │ │ │ ├── ByteStringTest.java │ │ │ ├── CodedInputStreamTest.java │ │ │ ├── CodedOutputStreamTest.java │ │ │ ├── DeprecatedFieldTest.java │ │ │ ├── DescriptorsTest.java │ │ │ ├── DynamicMessageTest.java │ │ │ ├── ForceFieldBuildersPreRun.java │ │ │ ├── GeneratedMessageTest.java │ │ │ ├── IsValidUtf8Test.java │ │ │ ├── IsValidUtf8TestUtil.java │ │ │ ├── LazyStringArrayListTest.java │ │ │ ├── LazyStringEndToEndTest.java │ │ │ ├── LiteTest.java │ │ │ ├── LiteralByteStringTest.java │ │ │ ├── MessageTest.java │ │ │ ├── NestedBuildersTest.java │ │ │ ├── ParserTest.java │ │ │ ├── RepeatedFieldBuilderTest.java │ │ │ ├── RopeByteStringSubstringTest.java │ │ │ ├── RopeByteStringTest.java │ │ │ ├── ServiceTest.java │ │ │ ├── SingleFieldBuilderTest.java │ │ │ ├── SmallSortedMapTest.java │ │ │ ├── TestBadIdentifiers.java │ │ │ ├── TestUtil.java │ │ │ ├── TextFormatTest.java │ │ │ ├── UnknownFieldSetTest.java │ │ │ ├── UnmodifiableLazyStringListTest.java │ │ │ ├── WireFormatTest.java │ │ │ ├── multiple_files_test.proto │ │ │ ├── nested_builders_test.proto │ │ │ ├── nested_extension.proto │ │ │ ├── nested_extension_lite.proto │ │ │ ├── non_nested_extension.proto │ │ │ ├── non_nested_extension_lite.proto │ │ │ └── test_bad_identifiers.proto │ ├── libtool │ ├── ltmain.sh │ ├── m4 │ │ ├── ac_system_extensions.m4 │ │ ├── acx_check_suncc.m4 │ │ ├── acx_pthread.m4 │ │ ├── libtool.m4 │ │ ├── ltoptions.m4 │ │ ├── ltsugar.m4 │ │ ├── ltversion.m4 │ │ ├── lt~obsolete.m4 │ │ └── stl_hash.m4 │ ├── missing │ ├── protobuf-lite.pc │ ├── protobuf-lite.pc.in │ ├── protobuf.pc │ ├── protobuf.pc.in │ ├── python │ │ ├── README.txt │ │ ├── ez_setup.py │ │ ├── google │ │ │ ├── __init__.py │ │ │ └── protobuf │ │ │ │ ├── __init__.py │ │ │ │ ├── descriptor.py │ │ │ │ ├── descriptor_database.py │ │ │ │ ├── descriptor_pool.py │ │ │ │ ├── internal │ │ │ │ ├── __init__.py │ │ │ │ ├── api_implementation.py │ │ │ │ ├── containers.py │ │ │ │ ├── cpp_message.py │ │ │ │ ├── decoder.py │ │ │ │ ├── descriptor_database_test.py │ │ │ │ ├── descriptor_pool_test.py │ │ │ │ ├── descriptor_test.py │ │ │ │ ├── encoder.py │ │ │ │ ├── enum_type_wrapper.py │ │ │ │ ├── factory_test1.proto │ │ │ │ ├── factory_test2.proto │ │ │ │ ├── generator_test.py │ │ │ │ ├── message_cpp_test.py │ │ │ │ ├── message_factory_test.py │ │ │ │ ├── message_listener.py │ │ │ │ ├── message_test.py │ │ │ │ ├── more_extensions.proto │ │ │ │ ├── more_extensions_dynamic.proto │ │ │ │ ├── more_messages.proto │ │ │ │ ├── python_message.py │ │ │ │ ├── reflection_cpp_generated_test.py │ │ │ │ ├── reflection_test.py │ │ │ │ ├── service_reflection_test.py │ │ │ │ ├── test_bad_identifiers.proto │ │ │ │ ├── test_util.py │ │ │ │ ├── text_format_test.py │ │ │ │ ├── type_checkers.py │ │ │ │ ├── unknown_fields_test.py │ │ │ │ ├── wire_format.py │ │ │ │ └── wire_format_test.py │ │ │ │ ├── message.py │ │ │ │ ├── message_factory.py │ │ │ │ ├── pyext │ │ │ │ ├── python-proto2.cc │ │ │ │ ├── python_descriptor.cc │ │ │ │ ├── python_descriptor.h │ │ │ │ ├── python_protobuf.cc │ │ │ │ └── python_protobuf.h │ │ │ │ ├── reflection.py │ │ │ │ ├── service.py │ │ │ │ ├── service_reflection.py │ │ │ │ └── text_format.py │ │ ├── mox.py │ │ ├── setup.py │ │ └── stubout.py │ ├── src │ │ ├── .deps │ │ │ ├── atomicops_internals_x86_gcc.Plo │ │ │ ├── atomicops_internals_x86_msvc.Plo │ │ │ ├── code_generator.Plo │ │ │ ├── coded_stream.Plo │ │ │ ├── command_line_interface.Plo │ │ │ ├── common.Plo │ │ │ ├── cpp_enum.Plo │ │ │ ├── cpp_enum_field.Plo │ │ │ ├── cpp_extension.Plo │ │ │ ├── cpp_field.Plo │ │ │ ├── cpp_file.Plo │ │ │ ├── cpp_generator.Plo │ │ │ ├── cpp_helpers.Plo │ │ │ ├── cpp_message.Plo │ │ │ ├── cpp_message_field.Plo │ │ │ ├── cpp_primitive_field.Plo │ │ │ ├── cpp_service.Plo │ │ │ ├── cpp_string_field.Plo │ │ │ ├── descriptor.Plo │ │ │ ├── descriptor.pb.Plo │ │ │ ├── descriptor_database.Plo │ │ │ ├── dynamic_message.Plo │ │ │ ├── extension_set.Plo │ │ │ ├── extension_set_heavy.Plo │ │ │ ├── generated_message_reflection.Plo │ │ │ ├── generated_message_util.Plo │ │ │ ├── gzip_stream.Plo │ │ │ ├── importer.Plo │ │ │ ├── java_doc_comment.Plo │ │ │ ├── java_enum.Plo │ │ │ ├── java_enum_field.Plo │ │ │ ├── java_extension.Plo │ │ │ ├── java_field.Plo │ │ │ ├── java_file.Plo │ │ │ ├── java_generator.Plo │ │ │ ├── java_helpers.Plo │ │ │ ├── java_message.Plo │ │ │ ├── java_message_field.Plo │ │ │ ├── java_primitive_field.Plo │ │ │ ├── java_service.Plo │ │ │ ├── java_string_field.Plo │ │ │ ├── main.Po │ │ │ ├── message.Plo │ │ │ ├── message_lite.Plo │ │ │ ├── once.Plo │ │ │ ├── parser.Plo │ │ │ ├── plugin.Plo │ │ │ ├── plugin.pb.Plo │ │ │ ├── printer.Plo │ │ │ ├── protobuf_lazy_descriptor_test-cpp_test_bad_identifiers.pb.Po │ │ │ ├── protobuf_lazy_descriptor_test-cpp_unittest.Po │ │ │ ├── protobuf_lazy_descriptor_test-file.Po │ │ │ ├── protobuf_lazy_descriptor_test-googletest.Po │ │ │ ├── protobuf_lazy_descriptor_test-test_util.Po │ │ │ ├── protobuf_lazy_descriptor_test-unittest.pb.Po │ │ │ ├── protobuf_lazy_descriptor_test-unittest_custom_options.pb.Po │ │ │ ├── protobuf_lazy_descriptor_test-unittest_embed_optimize_for.pb.Po │ │ │ ├── protobuf_lazy_descriptor_test-unittest_empty.pb.Po │ │ │ ├── protobuf_lazy_descriptor_test-unittest_import.pb.Po │ │ │ ├── protobuf_lazy_descriptor_test-unittest_import_lite.pb.Po │ │ │ ├── protobuf_lazy_descriptor_test-unittest_import_public.pb.Po │ │ │ ├── protobuf_lazy_descriptor_test-unittest_import_public_lite.pb.Po │ │ │ ├── protobuf_lazy_descriptor_test-unittest_lite.pb.Po │ │ │ ├── protobuf_lazy_descriptor_test-unittest_lite_imports_nonlite.pb.Po │ │ │ ├── protobuf_lazy_descriptor_test-unittest_mset.pb.Po │ │ │ ├── protobuf_lazy_descriptor_test-unittest_no_generic_services.pb.Po │ │ │ ├── protobuf_lazy_descriptor_test-unittest_optimize_for.pb.Po │ │ │ ├── protobuf_lite_test-lite_unittest.Po │ │ │ ├── protobuf_lite_test-test_util_lite.Po │ │ │ ├── protobuf_lite_test-unittest_import_lite.pb.Po │ │ │ ├── protobuf_lite_test-unittest_import_public_lite.pb.Po │ │ │ ├── protobuf_lite_test-unittest_lite.pb.Po │ │ │ ├── protobuf_test-coded_stream_unittest.Po │ │ │ ├── protobuf_test-command_line_interface_unittest.Po │ │ │ ├── protobuf_test-common_unittest.Po │ │ │ ├── protobuf_test-cpp_bootstrap_unittest.Po │ │ │ ├── protobuf_test-cpp_plugin_unittest.Po │ │ │ ├── protobuf_test-cpp_test_bad_identifiers.pb.Po │ │ │ ├── protobuf_test-cpp_unittest.Po │ │ │ ├── protobuf_test-descriptor_database_unittest.Po │ │ │ ├── protobuf_test-descriptor_unittest.Po │ │ │ ├── protobuf_test-dynamic_message_unittest.Po │ │ │ ├── protobuf_test-extension_set_unittest.Po │ │ │ ├── protobuf_test-file.Po │ │ │ ├── protobuf_test-generated_message_reflection_unittest.Po │ │ │ ├── protobuf_test-googletest.Po │ │ │ ├── protobuf_test-importer_unittest.Po │ │ │ ├── protobuf_test-java_doc_comment_unittest.Po │ │ │ ├── protobuf_test-java_plugin_unittest.Po │ │ │ ├── protobuf_test-message_unittest.Po │ │ │ ├── protobuf_test-mock_code_generator.Po │ │ │ ├── protobuf_test-once_unittest.Po │ │ │ ├── protobuf_test-parser_unittest.Po │ │ │ ├── protobuf_test-printer_unittest.Po │ │ │ ├── protobuf_test-python_plugin_unittest.Po │ │ │ ├── protobuf_test-reflection_ops_unittest.Po │ │ │ ├── protobuf_test-repeated_field_reflection_unittest.Po │ │ │ ├── protobuf_test-repeated_field_unittest.Po │ │ │ ├── protobuf_test-stringprintf_unittest.Po │ │ │ ├── protobuf_test-structurally_valid_unittest.Po │ │ │ ├── protobuf_test-strutil_unittest.Po │ │ │ ├── protobuf_test-template_util_unittest.Po │ │ │ ├── protobuf_test-test_util.Po │ │ │ ├── protobuf_test-text_format_unittest.Po │ │ │ ├── protobuf_test-tokenizer_unittest.Po │ │ │ ├── protobuf_test-type_traits_unittest.Po │ │ │ ├── protobuf_test-unittest.pb.Po │ │ │ ├── protobuf_test-unittest_custom_options.pb.Po │ │ │ ├── protobuf_test-unittest_embed_optimize_for.pb.Po │ │ │ ├── protobuf_test-unittest_empty.pb.Po │ │ │ ├── protobuf_test-unittest_import.pb.Po │ │ │ ├── protobuf_test-unittest_import_lite.pb.Po │ │ │ ├── protobuf_test-unittest_import_public.pb.Po │ │ │ ├── protobuf_test-unittest_import_public_lite.pb.Po │ │ │ ├── protobuf_test-unittest_lite.pb.Po │ │ │ ├── protobuf_test-unittest_lite_imports_nonlite.pb.Po │ │ │ ├── protobuf_test-unittest_mset.pb.Po │ │ │ ├── protobuf_test-unittest_no_generic_services.pb.Po │ │ │ ├── protobuf_test-unittest_optimize_for.pb.Po │ │ │ ├── protobuf_test-unknown_field_set_unittest.Po │ │ │ ├── protobuf_test-wire_format_unittest.Po │ │ │ ├── protobuf_test-zero_copy_stream_unittest.Po │ │ │ ├── python_generator.Plo │ │ │ ├── reflection_ops.Plo │ │ │ ├── repeated_field.Plo │ │ │ ├── service.Plo │ │ │ ├── stringprintf.Plo │ │ │ ├── structurally_valid.Plo │ │ │ ├── strutil.Plo │ │ │ ├── subprocess.Plo │ │ │ ├── substitute.Plo │ │ │ ├── test_plugin-file.Po │ │ │ ├── test_plugin-mock_code_generator.Po │ │ │ ├── test_plugin-test_plugin.Po │ │ │ ├── text_format.Plo │ │ │ ├── tokenizer.Plo │ │ │ ├── unknown_field_set.Plo │ │ │ ├── wire_format.Plo │ │ │ ├── wire_format_lite.Plo │ │ │ ├── zcgunzip.Po │ │ │ ├── zcgzip.Po │ │ │ ├── zero_copy_stream.Plo │ │ │ ├── zero_copy_stream_impl.Plo │ │ │ ├── zero_copy_stream_impl_lite.Plo │ │ │ └── zip_writer.Plo │ │ ├── Makefile │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── google │ │ │ └── protobuf │ │ │ │ ├── compiler │ │ │ │ ├── code_generator.cc │ │ │ │ ├── code_generator.h │ │ │ │ ├── command_line_interface.cc │ │ │ │ ├── command_line_interface.h │ │ │ │ ├── command_line_interface_unittest.cc │ │ │ │ ├── cpp │ │ │ │ │ ├── cpp_bootstrap_unittest.cc │ │ │ │ │ ├── cpp_enum.cc │ │ │ │ │ ├── cpp_enum.h │ │ │ │ │ ├── cpp_enum_field.cc │ │ │ │ │ ├── cpp_enum_field.h │ │ │ │ │ ├── cpp_extension.cc │ │ │ │ │ ├── cpp_extension.h │ │ │ │ │ ├── cpp_field.cc │ │ │ │ │ ├── cpp_field.h │ │ │ │ │ ├── cpp_file.cc │ │ │ │ │ ├── cpp_file.h │ │ │ │ │ ├── cpp_generator.cc │ │ │ │ │ ├── cpp_generator.h │ │ │ │ │ ├── cpp_helpers.cc │ │ │ │ │ ├── cpp_helpers.h │ │ │ │ │ ├── cpp_message.cc │ │ │ │ │ ├── cpp_message.h │ │ │ │ │ ├── cpp_message_field.cc │ │ │ │ │ ├── cpp_message_field.h │ │ │ │ │ ├── cpp_options.h │ │ │ │ │ ├── cpp_plugin_unittest.cc │ │ │ │ │ ├── cpp_primitive_field.cc │ │ │ │ │ ├── cpp_primitive_field.h │ │ │ │ │ ├── cpp_service.cc │ │ │ │ │ ├── cpp_service.h │ │ │ │ │ ├── cpp_string_field.cc │ │ │ │ │ ├── cpp_string_field.h │ │ │ │ │ ├── cpp_test_bad_identifiers.pb.cc │ │ │ │ │ ├── cpp_test_bad_identifiers.pb.h │ │ │ │ │ ├── cpp_test_bad_identifiers.proto │ │ │ │ │ ├── cpp_unittest.cc │ │ │ │ │ └── cpp_unittest.h │ │ │ │ ├── importer.cc │ │ │ │ ├── importer.h │ │ │ │ ├── importer_unittest.cc │ │ │ │ ├── java │ │ │ │ │ ├── java_doc_comment.cc │ │ │ │ │ ├── java_doc_comment.h │ │ │ │ │ ├── java_doc_comment_unittest.cc │ │ │ │ │ ├── java_enum.cc │ │ │ │ │ ├── java_enum.h │ │ │ │ │ ├── java_enum_field.cc │ │ │ │ │ ├── java_enum_field.h │ │ │ │ │ ├── java_extension.cc │ │ │ │ │ ├── java_extension.h │ │ │ │ │ ├── java_field.cc │ │ │ │ │ ├── java_field.h │ │ │ │ │ ├── java_file.cc │ │ │ │ │ ├── java_file.h │ │ │ │ │ ├── java_generator.cc │ │ │ │ │ ├── java_generator.h │ │ │ │ │ ├── java_helpers.cc │ │ │ │ │ ├── java_helpers.h │ │ │ │ │ ├── java_message.cc │ │ │ │ │ ├── java_message.h │ │ │ │ │ ├── java_message_field.cc │ │ │ │ │ ├── java_message_field.h │ │ │ │ │ ├── java_plugin_unittest.cc │ │ │ │ │ ├── java_primitive_field.cc │ │ │ │ │ ├── java_primitive_field.h │ │ │ │ │ ├── java_service.cc │ │ │ │ │ ├── java_service.h │ │ │ │ │ ├── java_string_field.cc │ │ │ │ │ └── java_string_field.h │ │ │ │ ├── main.cc │ │ │ │ ├── mock_code_generator.cc │ │ │ │ ├── mock_code_generator.h │ │ │ │ ├── package_info.h │ │ │ │ ├── parser.cc │ │ │ │ ├── parser.h │ │ │ │ ├── parser_unittest.cc │ │ │ │ ├── plugin.cc │ │ │ │ ├── plugin.h │ │ │ │ ├── plugin.pb.cc │ │ │ │ ├── plugin.pb.h │ │ │ │ ├── plugin.proto │ │ │ │ ├── python │ │ │ │ │ ├── python_generator.cc │ │ │ │ │ ├── python_generator.h │ │ │ │ │ └── python_plugin_unittest.cc │ │ │ │ ├── subprocess.cc │ │ │ │ ├── subprocess.h │ │ │ │ ├── test_plugin.cc │ │ │ │ ├── zip_output_unittest.sh │ │ │ │ ├── zip_writer.cc │ │ │ │ └── zip_writer.h │ │ │ │ ├── descriptor.cc │ │ │ │ ├── descriptor.h │ │ │ │ ├── descriptor.pb.cc │ │ │ │ ├── descriptor.pb.h │ │ │ │ ├── descriptor.proto │ │ │ │ ├── descriptor_database.cc │ │ │ │ ├── descriptor_database.h │ │ │ │ ├── descriptor_database_unittest.cc │ │ │ │ ├── descriptor_unittest.cc │ │ │ │ ├── dynamic_message.cc │ │ │ │ ├── dynamic_message.h │ │ │ │ ├── dynamic_message_unittest.cc │ │ │ │ ├── extension_set.cc │ │ │ │ ├── extension_set.h │ │ │ │ ├── extension_set_heavy.cc │ │ │ │ ├── extension_set_unittest.cc │ │ │ │ ├── generated_enum_reflection.h │ │ │ │ ├── generated_message_reflection.cc │ │ │ │ ├── generated_message_reflection.h │ │ │ │ ├── generated_message_reflection_unittest.cc │ │ │ │ ├── generated_message_util.cc │ │ │ │ ├── generated_message_util.h │ │ │ │ ├── io │ │ │ │ ├── coded_stream.cc │ │ │ │ ├── coded_stream.h │ │ │ │ ├── coded_stream_inl.h │ │ │ │ ├── coded_stream_unittest.cc │ │ │ │ ├── gzip_stream.cc │ │ │ │ ├── gzip_stream.h │ │ │ │ ├── gzip_stream_unittest.sh │ │ │ │ ├── package_info.h │ │ │ │ ├── printer.cc │ │ │ │ ├── printer.h │ │ │ │ ├── printer_unittest.cc │ │ │ │ ├── tokenizer.cc │ │ │ │ ├── tokenizer.h │ │ │ │ ├── tokenizer_unittest.cc │ │ │ │ ├── zero_copy_stream.cc │ │ │ │ ├── zero_copy_stream.h │ │ │ │ ├── zero_copy_stream_impl.cc │ │ │ │ ├── zero_copy_stream_impl.h │ │ │ │ ├── zero_copy_stream_impl_lite.cc │ │ │ │ ├── zero_copy_stream_impl_lite.h │ │ │ │ └── zero_copy_stream_unittest.cc │ │ │ │ ├── lite_unittest.cc │ │ │ │ ├── message.cc │ │ │ │ ├── message.h │ │ │ │ ├── message_lite.cc │ │ │ │ ├── message_lite.h │ │ │ │ ├── message_unittest.cc │ │ │ │ ├── package_info.h │ │ │ │ ├── reflection_ops.cc │ │ │ │ ├── reflection_ops.h │ │ │ │ ├── reflection_ops_unittest.cc │ │ │ │ ├── repeated_field.cc │ │ │ │ ├── repeated_field.h │ │ │ │ ├── repeated_field_reflection_unittest.cc │ │ │ │ ├── repeated_field_unittest.cc │ │ │ │ ├── service.cc │ │ │ │ ├── service.h │ │ │ │ ├── stubs │ │ │ │ ├── atomicops.h │ │ │ │ ├── atomicops_internals_arm_gcc.h │ │ │ │ ├── atomicops_internals_arm_qnx.h │ │ │ │ ├── atomicops_internals_atomicword_compat.h │ │ │ │ ├── atomicops_internals_macosx.h │ │ │ │ ├── atomicops_internals_mips_gcc.h │ │ │ │ ├── atomicops_internals_pnacl.h │ │ │ │ ├── atomicops_internals_x86_gcc.cc │ │ │ │ ├── atomicops_internals_x86_gcc.h │ │ │ │ ├── atomicops_internals_x86_msvc.cc │ │ │ │ ├── atomicops_internals_x86_msvc.h │ │ │ │ ├── common.cc │ │ │ │ ├── common.h │ │ │ │ ├── common_unittest.cc │ │ │ │ ├── hash.h │ │ │ │ ├── map-util.h │ │ │ │ ├── once.cc │ │ │ │ ├── once.h │ │ │ │ ├── once_unittest.cc │ │ │ │ ├── platform_macros.h │ │ │ │ ├── stl_util.h │ │ │ │ ├── stringprintf.cc │ │ │ │ ├── stringprintf.h │ │ │ │ ├── stringprintf_unittest.cc │ │ │ │ ├── structurally_valid.cc │ │ │ │ ├── structurally_valid_unittest.cc │ │ │ │ ├── strutil.cc │ │ │ │ ├── strutil.h │ │ │ │ ├── strutil_unittest.cc │ │ │ │ ├── substitute.cc │ │ │ │ ├── substitute.h │ │ │ │ ├── template_util.h │ │ │ │ ├── template_util_unittest.cc │ │ │ │ ├── type_traits.h │ │ │ │ └── type_traits_unittest.cc │ │ │ │ ├── test_util.cc │ │ │ │ ├── test_util.h │ │ │ │ ├── test_util_lite.cc │ │ │ │ ├── test_util_lite.h │ │ │ │ ├── testdata │ │ │ │ ├── golden_message │ │ │ │ ├── golden_packed_fields_message │ │ │ │ ├── text_format_unittest_data.txt │ │ │ │ └── text_format_unittest_extensions_data.txt │ │ │ │ ├── testing │ │ │ │ ├── file.cc │ │ │ │ ├── file.h │ │ │ │ ├── googletest.cc │ │ │ │ ├── googletest.h │ │ │ │ ├── zcgunzip.cc │ │ │ │ └── zcgzip.cc │ │ │ │ ├── text_format.cc │ │ │ │ ├── text_format.h │ │ │ │ ├── text_format_unittest.cc │ │ │ │ ├── unittest.pb.cc │ │ │ │ ├── unittest.pb.h │ │ │ │ ├── unittest.proto │ │ │ │ ├── unittest_custom_options.pb.cc │ │ │ │ ├── unittest_custom_options.pb.h │ │ │ │ ├── unittest_custom_options.proto │ │ │ │ ├── unittest_embed_optimize_for.pb.cc │ │ │ │ ├── unittest_embed_optimize_for.pb.h │ │ │ │ ├── unittest_embed_optimize_for.proto │ │ │ │ ├── unittest_empty.pb.cc │ │ │ │ ├── unittest_empty.pb.h │ │ │ │ ├── unittest_empty.proto │ │ │ │ ├── unittest_enormous_descriptor.proto │ │ │ │ ├── unittest_import.pb.cc │ │ │ │ ├── unittest_import.pb.h │ │ │ │ ├── unittest_import.proto │ │ │ │ ├── unittest_import_lite.pb.cc │ │ │ │ ├── unittest_import_lite.pb.h │ │ │ │ ├── unittest_import_lite.proto │ │ │ │ ├── unittest_import_public.pb.cc │ │ │ │ ├── unittest_import_public.pb.h │ │ │ │ ├── unittest_import_public.proto │ │ │ │ ├── unittest_import_public_lite.pb.cc │ │ │ │ ├── unittest_import_public_lite.pb.h │ │ │ │ ├── unittest_import_public_lite.proto │ │ │ │ ├── unittest_lite.pb.cc │ │ │ │ ├── unittest_lite.pb.h │ │ │ │ ├── unittest_lite.proto │ │ │ │ ├── unittest_lite_imports_nonlite.pb.cc │ │ │ │ ├── unittest_lite_imports_nonlite.pb.h │ │ │ │ ├── unittest_lite_imports_nonlite.proto │ │ │ │ ├── unittest_mset.pb.cc │ │ │ │ ├── unittest_mset.pb.h │ │ │ │ ├── unittest_mset.proto │ │ │ │ ├── unittest_no_generic_services.pb.cc │ │ │ │ ├── unittest_no_generic_services.pb.h │ │ │ │ ├── unittest_no_generic_services.proto │ │ │ │ ├── unittest_optimize_for.pb.cc │ │ │ │ ├── unittest_optimize_for.pb.h │ │ │ │ ├── unittest_optimize_for.proto │ │ │ │ ├── unknown_field_set.cc │ │ │ │ ├── unknown_field_set.h │ │ │ │ ├── unknown_field_set_unittest.cc │ │ │ │ ├── wire_format.cc │ │ │ │ ├── wire_format.h │ │ │ │ ├── wire_format_lite.cc │ │ │ │ ├── wire_format_lite.h │ │ │ │ ├── wire_format_lite_inl.h │ │ │ │ └── wire_format_unittest.cc │ │ ├── protobuf-lazy-descriptor-test │ │ ├── protobuf-lite-test │ │ ├── protobuf-test │ │ ├── protoc │ │ ├── test_plugin │ │ ├── testzip.jar │ │ ├── testzip.list │ │ ├── testzip.proto │ │ ├── testzip.zip │ │ └── unittest_proto_middleman │ ├── stamp-h1 │ └── vsprojects │ │ ├── config.h │ │ ├── convert2008to2005.sh │ │ ├── extract_includes.bat │ │ ├── libprotobuf-lite.vcproj │ │ ├── libprotobuf.vcproj │ │ ├── libprotoc.vcproj │ │ ├── lite-test.vcproj │ │ ├── protobuf.sln │ │ ├── protoc.vcproj │ │ ├── readme.txt │ │ ├── test_plugin.vcproj │ │ └── tests.vcproj ├── python │ └── include │ │ ├── Python-ast.h │ │ ├── Python.h │ │ ├── abstract.h │ │ ├── asdl.h │ │ ├── ast.h │ │ ├── bitset.h │ │ ├── bltinmodule.h │ │ ├── boolobject.h │ │ ├── bytearrayobject.h │ │ ├── bytes_methods.h │ │ ├── bytesobject.h │ │ ├── cellobject.h │ │ ├── ceval.h │ │ ├── classobject.h │ │ ├── cobject.h │ │ ├── code.h │ │ ├── codecs.h │ │ ├── compile.h │ │ ├── complexobject.h │ │ ├── datetime.h │ │ ├── descrobject.h │ │ ├── dictobject.h │ │ ├── dtoa.h │ │ ├── enumobject.h │ │ ├── errcode.h │ │ ├── eval.h │ │ ├── fileobject.h │ │ ├── floatobject.h │ │ ├── frameobject.h │ │ ├── funcobject.h │ │ ├── genobject.h │ │ ├── graminit.h │ │ ├── grammar.h │ │ ├── import.h │ │ ├── intrcheck.h │ │ ├── iterobject.h │ │ ├── listobject.h │ │ ├── longintrepr.h │ │ ├── longobject.h │ │ ├── marshal.h │ │ ├── memoryobject.h │ │ ├── metagrammar.h │ │ ├── methodobject.h │ │ ├── modsupport.h │ │ ├── moduleobject.h │ │ ├── node.h │ │ ├── object.h │ │ ├── objimpl.h │ │ ├── opcode.h │ │ ├── osdefs.h │ │ ├── parsetok.h │ │ ├── patchlevel.h │ │ ├── pgen.h │ │ ├── pgenheaders.h │ │ ├── py_curses.h │ │ ├── pyarena.h │ │ ├── pycapsule.h │ │ ├── pyconfig.h │ │ ├── pyctype.h │ │ ├── pydebug.h │ │ ├── pyerrors.h │ │ ├── pyexpat.h │ │ ├── pyfpe.h │ │ ├── pygetopt.h │ │ ├── pymacconfig.h │ │ ├── pymath.h │ │ ├── pymem.h │ │ ├── pyport.h │ │ ├── pystate.h │ │ ├── pystrcmp.h │ │ ├── pystrtod.h │ │ ├── pythonrun.h │ │ ├── pythread.h │ │ ├── rangeobject.h │ │ ├── setobject.h │ │ ├── sliceobject.h │ │ ├── structmember.h │ │ ├── structseq.h │ │ ├── symtable.h │ │ ├── sysmodule.h │ │ ├── timefuncs.h │ │ ├── token.h │ │ ├── traceback.h │ │ ├── tupleobject.h │ │ ├── ucnhash.h │ │ ├── unicodeobject.h │ │ ├── warnings.h │ │ └── weakrefobject.h ├── rapidjson │ └── include │ │ └── rapidjson │ │ ├── document.h │ │ ├── filestream.h │ │ ├── internal │ │ ├── pow10.h │ │ ├── stack.h │ │ └── strfunc.h │ │ ├── prettywriter.h │ │ ├── rapidjson.h │ │ ├── reader.h │ │ ├── stringbuffer.h │ │ └── writer.h ├── snappy-1.1.1 │ └── include │ │ ├── snappy-c.h │ │ ├── snappy-sinksource.h │ │ ├── snappy-stubs-public.h │ │ └── snappy.h ├── tinyxml-2.6.1 │ ├── changes.txt │ ├── docs.zip │ ├── echo.dsp │ ├── readme.txt │ ├── tinyXmlTest.dsp │ ├── tinyXmlTest.vcproj │ ├── tinyXmlTestSTL.dsp │ ├── tinyXmlTestSTL.vcproj │ ├── tinystr.cpp │ ├── tinystr.h │ ├── tinyxml.cpp │ ├── tinyxml.dsw │ ├── tinyxml.h │ ├── tinyxml.sln │ ├── tinyxmlSTL.dsp │ ├── tinyxmlSTL.vcproj │ ├── tinyxml_lib.dsp │ ├── tinyxml_lib.vcproj │ ├── tinyxmlerror.cpp │ ├── tinyxmlparser.cpp │ ├── utf8test.gif │ ├── utf8test.xml │ ├── utf8testverify.xml │ └── xmltest.cpp ├── tolua++-1.0.93 │ ├── .svnignore │ ├── COPYRIGHT │ ├── INSTALL │ ├── README │ ├── README-5.1 │ ├── SConstruct │ ├── bin │ │ ├── .svnignore │ │ └── tolua++ │ ├── config_linux.py │ ├── config_msvc.py │ ├── config_posix.py │ ├── custom-5.1.py │ ├── debian.zip │ ├── doc.zip │ ├── include │ │ └── tolua++.h │ ├── src │ │ ├── bin │ │ │ ├── .svnignore │ │ │ ├── SCsub │ │ │ ├── lua │ │ │ │ ├── all.lua │ │ │ │ ├── array.lua │ │ │ │ ├── basic.lua │ │ │ │ ├── class.lua │ │ │ │ ├── clean.lua │ │ │ │ ├── code.lua │ │ │ │ ├── compat-5.1.lua │ │ │ │ ├── compat.lua │ │ │ │ ├── container.lua │ │ │ │ ├── custom.lua │ │ │ │ ├── declaration.lua │ │ │ │ ├── define.lua │ │ │ │ ├── doit.lua │ │ │ │ ├── enumerate.lua │ │ │ │ ├── feature.lua │ │ │ │ ├── function.lua │ │ │ │ ├── module.lua │ │ │ │ ├── namespace.lua │ │ │ │ ├── operator.lua │ │ │ │ ├── package.lua │ │ │ │ ├── template_class.lua │ │ │ │ ├── typedef.lua │ │ │ │ ├── variable.lua │ │ │ │ └── verbatim.lua │ │ │ ├── tolua.c │ │ │ ├── tolua_scons.pkg │ │ │ ├── toluabind.c │ │ │ ├── toluabind.h │ │ │ ├── toluabind_default.c │ │ │ └── toluabind_default.h │ │ ├── lib │ │ │ ├── SCsub │ │ │ ├── tolua_event.c │ │ │ ├── tolua_event.h │ │ │ ├── tolua_is.c │ │ │ ├── tolua_map.c │ │ │ ├── tolua_push.c │ │ │ └── tolua_to.c │ │ └── tests │ │ │ ├── SCsub │ │ │ ├── tarray.c │ │ │ ├── tarray.h │ │ │ ├── tarray.lua │ │ │ ├── tarray.pkg │ │ │ ├── tarraybind.c │ │ │ ├── tclass.cpp │ │ │ ├── tclass.h │ │ │ ├── tclass.lua │ │ │ ├── tclass.pkg │ │ │ ├── tconstant.h │ │ │ ├── tconstant.lua │ │ │ ├── tconstant.pkg │ │ │ ├── tdirective.lua │ │ │ ├── tdirective.pkg │ │ │ ├── tdirectivebind.c │ │ │ ├── tdirectivelua.lua │ │ │ ├── tdirectivepkg.pkg │ │ │ ├── tfunction.h │ │ │ ├── tfunction.lua │ │ │ ├── tfunction.pkg │ │ │ ├── tmodule.c │ │ │ ├── tmodule.h │ │ │ ├── tmodule.lua │ │ │ ├── tmodule.pkg │ │ │ ├── tmodulebind.c │ │ │ ├── tnamespace.h │ │ │ ├── tnamespace.lua │ │ │ ├── tnamespace.pkg │ │ │ ├── tvariable.c │ │ │ ├── tvariable.h │ │ │ ├── tvariable.lua │ │ │ ├── tvariable.pkg │ │ │ └── tvariablebind.c │ └── win32 │ │ ├── vc7 │ │ ├── toluapp.sln │ │ └── toluapp.vcproj │ │ └── vc8 │ │ ├── tolua++.sln │ │ ├── toluaexe.sln │ │ ├── toluaexe.vcproj │ │ └── tolualib.vcproj ├── zlib-1.2.4 │ ├── CMakeLists.txt │ ├── ChangeLog │ ├── FAQ │ ├── INDEX │ ├── README │ ├── adler32.c │ ├── amiga.zip │ ├── compress.c │ ├── configure │ ├── contrib │ │ ├── README.contrib │ │ ├── ada │ │ │ ├── buffer_demo.adb │ │ │ ├── mtest.adb │ │ │ ├── read.adb │ │ │ ├── readme.txt │ │ │ ├── test.adb │ │ │ ├── zlib-streams.adb │ │ │ ├── zlib-streams.ads │ │ │ ├── zlib-thin.adb │ │ │ ├── zlib-thin.ads │ │ │ ├── zlib.adb │ │ │ ├── zlib.ads │ │ │ └── zlib.gpr │ │ ├── amd64 │ │ │ └── amd64-match.S │ │ ├── asm686 │ │ │ ├── README.686 │ │ │ └── match.S │ │ ├── blast │ │ │ ├── README │ │ │ ├── blast.c │ │ │ ├── blast.h │ │ │ ├── test.pk │ │ │ └── test.txt │ │ ├── delphi │ │ │ ├── ZLib.pas │ │ │ ├── ZLibConst.pas │ │ │ ├── readme.txt │ │ │ └── zlibd32.mak │ │ ├── dotzlib │ │ │ ├── DotZLib.build │ │ │ ├── DotZLib.chm │ │ │ ├── DotZLib.sln │ │ │ ├── DotZLib │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── ChecksumImpl.cs │ │ │ │ ├── CircularBuffer.cs │ │ │ │ ├── CodecBase.cs │ │ │ │ ├── Deflater.cs │ │ │ │ ├── DotZLib.cs │ │ │ │ ├── DotZLib.csproj │ │ │ │ ├── GZipStream.cs │ │ │ │ ├── Inflater.cs │ │ │ │ └── UnitTests.cs │ │ │ ├── LICENSE_1_0.txt │ │ │ └── readme.txt │ │ ├── gcc_gvmat64 │ │ │ └── gvmat64.S │ │ ├── infback9 │ │ │ ├── README │ │ │ ├── infback9.c │ │ │ ├── infback9.h │ │ │ ├── inffix9.h │ │ │ ├── inflate9.h │ │ │ ├── inftree9.c │ │ │ └── inftree9.h │ │ ├── inflate86 │ │ │ ├── inffas86.c │ │ │ └── inffast.S │ │ ├── iostream │ │ │ ├── test.cpp │ │ │ ├── zfstream.cpp │ │ │ └── zfstream.h │ │ ├── iostream2 │ │ │ ├── zstream.h │ │ │ └── zstream_test.cpp │ │ ├── iostream3 │ │ │ ├── README │ │ │ ├── TODO │ │ │ ├── test.cc │ │ │ ├── zfstream.cc │ │ │ └── zfstream.h │ │ ├── masmx64 │ │ │ ├── bld_ml64.bat │ │ │ ├── gvmat64.asm │ │ │ ├── inffas8664.c │ │ │ ├── inffasx64.asm │ │ │ └── readme.txt │ │ ├── masmx86 │ │ │ ├── bld_ml32.bat │ │ │ ├── inffas32.asm │ │ │ ├── match686.asm │ │ │ └── readme.txt │ │ ├── minizip │ │ │ ├── MiniZip64_Changes.txt │ │ │ ├── MiniZip64_info.txt │ │ │ ├── crypt.h │ │ │ ├── ioapi.c │ │ │ ├── ioapi.h │ │ │ ├── iowin32.c │ │ │ ├── iowin32.h │ │ │ ├── make_vms.com │ │ │ ├── miniunz.c │ │ │ ├── minizip.c │ │ │ ├── mztools.c │ │ │ ├── mztools.h │ │ │ ├── unzip.c │ │ │ ├── unzip.h │ │ │ ├── zip.c │ │ │ └── zip.h │ │ ├── pascal │ │ │ ├── example.pas │ │ │ ├── readme.txt │ │ │ ├── zlibd32.mak │ │ │ └── zlibpas.pas │ │ ├── puff │ │ │ ├── README │ │ │ ├── puff.c │ │ │ ├── puff.h │ │ │ └── zeros.raw │ │ ├── testzlib │ │ │ ├── testzlib.c │ │ │ └── testzlib.txt │ │ ├── untgz │ │ │ ├── Makefile.msc │ │ │ └── untgz.c │ │ └── vstudio │ │ │ ├── readme.txt │ │ │ ├── vc10 │ │ │ ├── miniunz.vcxproj │ │ │ ├── miniunz.vcxproj.filters │ │ │ ├── minizip.vcxproj │ │ │ ├── minizip.vcxproj.filters │ │ │ ├── testzlib.vcxproj │ │ │ ├── testzlib.vcxproj.filters │ │ │ ├── testzlibdll.vcxproj │ │ │ ├── testzlibdll.vcxproj.filters │ │ │ ├── zlib.rc │ │ │ ├── zlibstat.vcxproj │ │ │ ├── zlibstat.vcxproj.filters │ │ │ ├── zlibvc.def │ │ │ ├── zlibvc.sln │ │ │ ├── zlibvc.vcxproj │ │ │ └── zlibvc.vcxproj.filters │ │ │ └── vc9 │ │ │ ├── miniunz.vcproj │ │ │ ├── minizip.vcproj │ │ │ ├── testzlib.vcproj │ │ │ ├── testzlibdll.vcproj │ │ │ ├── zlib.rc │ │ │ ├── zlib.vcproj │ │ │ ├── zlibstat.vcproj │ │ │ ├── zlibvc.def │ │ │ ├── zlibvc.sln │ │ │ └── zlibvc.vcproj │ ├── crc32.c │ ├── crc32.h │ ├── deflate.c │ ├── deflate.h │ ├── doc.zip │ ├── example.c │ ├── examples.zip │ ├── gzclose.c │ ├── gzguts.h │ ├── gzlib.c │ ├── gzread.c │ ├── gzwrite.c │ ├── infback.c │ ├── inffast.c │ ├── inffast.h │ ├── inffixed.h │ ├── inflate.c │ ├── inflate.h │ ├── inftrees.c │ ├── inftrees.h │ ├── make_vms.com │ ├── minigzip.c │ ├── msdos.zip │ ├── nintendods.zip │ ├── old.zip │ ├── projects.zip │ ├── qnx.zip │ ├── treebuild.xml │ ├── trees.c │ ├── trees.h │ ├── uncompr.c │ ├── watcom.zip │ ├── win32.zip │ ├── zconf.h │ ├── zconf.h.cmakein │ ├── zconf.h.in │ ├── zlib.3 │ ├── zlib.3.pdf │ ├── zlib.h │ ├── zlib.map │ ├── zlib.pc.in │ ├── zlib2ansi │ ├── zutil.c │ └── zutil.h └── zziplib-0.13.59 │ ├── msvc9 │ ├── README.TXT │ ├── test.zip │ ├── test1.zip │ ├── zzcat.vcproj │ ├── zzdir.vcproj │ ├── zzip.vcproj │ ├── zzipfseeko.vcproj │ ├── zziplib.sln │ ├── zziplib.vcproj │ ├── zzipmmapped.vcproj │ ├── zzipself.bat │ ├── zzipself.txt │ ├── zzipself.vcproj │ ├── zzipsetstub.vcproj │ ├── zziptest.vcproj │ └── zzobfuscated.vcproj │ ├── other.zip │ └── zzip │ ├── __debug.h │ ├── __dirent.h │ ├── __fnmatch.h │ ├── __hints.h │ ├── __mmap.h │ ├── _config.h │ ├── _msvc.h │ ├── _msvc.sed │ ├── autoconf.h │ ├── conf.h │ ├── dir.c │ ├── err.c │ ├── fetch.c │ ├── fetch.h │ ├── file.c │ ├── file.h │ ├── format.h │ ├── fseeko.c │ ├── fseeko.h │ ├── info.c │ ├── info.h │ ├── lib.h │ ├── memdisk.c │ ├── memdisk.h │ ├── mmapped.c │ ├── mmapped.h │ ├── plugin.c │ ├── plugin.h │ ├── stat.c │ ├── stdint.h │ ├── types.h │ ├── write.c │ ├── write.h │ ├── zip.c │ ├── zzip-zlib-config.pc │ ├── zzip.h │ ├── zzip32.h │ ├── zzipfseeko.pc │ ├── zziplib.pc │ ├── zziplib.wpj │ └── zzipmmapped.pc ├── tools ├── .bashrc ├── .gdb │ └── luagdb ├── .gdbinit ├── .svnignore ├── .vimrc ├── AssertAnalyze.sh ├── AutoDownloadLog.sh ├── AutoRun.sh ├── AutoRunAdmin.sh ├── AutoTools.sh ├── AutoUpload.sh ├── ClientResTools.bat ├── InstallConfig.sh.example ├── Log.sh ├── LogAnalyze.sh ├── MonitorSystem.sh ├── Run.sh.example ├── SetNetDelay.sh ├── UserDataOperate.py.example ├── cinclude2dot.pl ├── dayData.sh ├── dumpSqlToCSV.sql.exmple ├── freshSVNIgnore.sh ├── gdbc ├── gencode.py.example ├── initNewMode.sh ├── install.sh ├── newGameMode.txt ├── privilege.sql.example ├── readSqlData.py ├── release.sh ├── sedFile.sh ├── serverVersionData.ini.example ├── serverVersionTools.zip ├── updateVersion.py ├── upload.sh ├── vim │ ├── a.vim │ └── cscope_maps.vim ├── zonelist.txt └── zonemanage.py └── zoneServer ├── Mail └── zoMailService.cpp ├── Monitor └── zoMonitorService.cpp ├── Relation ├── zoRelationManager.h ├── zoRelationUser.cpp ├── zoRelationUser.h └── zoRelationUserService.cpp ├── zoConfigService.cpp ├── zoConfigService.h ├── zoGatewayConn.cpp ├── zoGatewayConn.h ├── zoIDPool.cpp ├── zoIDPool.h ├── zoLogicConn.cpp ├── zoLogicConn.h ├── zoLoginService.cpp ├── zoLoginService.h ├── zoLoginSession.cpp ├── zoLoginSession.h ├── zoLoginSessionManager.cpp ├── zoLoginSessionManager.h ├── zoMailService.h ├── zoMap.cpp ├── zoMap.h ├── zoMapService.cpp ├── zoMapService.h ├── zoMessageService.cpp ├── zoMessageService.h ├── zoMonitorService.h ├── zoParseForward.cpp ├── zoParseProtoLogin.cpp ├── zoParseProtoUser.cpp ├── zoParseProtocol.cpp ├── zoParseSerialize.cpp ├── zoParseServerRun.cpp ├── zoRelationUserService.h ├── zoScheduleService.cpp ├── zoScheduleService.h ├── zoScriptService.h ├── zoServer.cpp ├── zoServer.h ├── zoSsqls.cpp ├── zoSsqls.h ├── zoSsqlsData.h ├── zoTaskConn.cpp ├── zoTaskConn.h ├── zoUser.cpp ├── zoUser.h ├── zoUserService.cpp └── zoUserService.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Log.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/Log.sh -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # GameServerFramework 2 | 游戏服务器基础框架。 3 | -------------------------------------------------------------------------------- /Run.sh.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/Run.sh.example -------------------------------------------------------------------------------- /base/Imp/nAnalysis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/Imp/nAnalysis.cpp -------------------------------------------------------------------------------- /base/Imp/nAny.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/Imp/nAny.cpp -------------------------------------------------------------------------------- /base/Imp/nArgp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/Imp/nArgp.cpp -------------------------------------------------------------------------------- /base/Imp/nArgp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/Imp/nArgp.h -------------------------------------------------------------------------------- /base/Imp/nAssert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/Imp/nAssert.cpp -------------------------------------------------------------------------------- /base/Imp/nAsyncSqlThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/Imp/nAsyncSqlThread.cpp -------------------------------------------------------------------------------- /base/Imp/nBaseCommandCtl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/Imp/nBaseCommandCtl.cpp -------------------------------------------------------------------------------- /base/Imp/nBaseFilterService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/Imp/nBaseFilterService.cpp -------------------------------------------------------------------------------- /base/Imp/nBaseHttpService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/Imp/nBaseHttpService.cpp -------------------------------------------------------------------------------- /base/Imp/nBaseMessageService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/Imp/nBaseMessageService.cpp -------------------------------------------------------------------------------- /base/Imp/nBaseMonitorService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/Imp/nBaseMonitorService.cpp -------------------------------------------------------------------------------- /base/Imp/nBaseScriptObj.cpp: -------------------------------------------------------------------------------- 1 | #include "base/nLuaState.h" 2 | namespace Tidy 3 | { 4 | nBaseScriptObj *luaNullParam = NULL; 5 | }; 6 | -------------------------------------------------------------------------------- /base/Imp/nBaseServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/Imp/nBaseServer.cpp -------------------------------------------------------------------------------- /base/Imp/nBaseTickService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/Imp/nBaseTickService.cpp -------------------------------------------------------------------------------- /base/Imp/nBinaryQueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/Imp/nBinaryQueue.cpp -------------------------------------------------------------------------------- /base/Imp/nBloomFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/Imp/nBloomFilter.cpp -------------------------------------------------------------------------------- /base/Imp/nBloomFilterImp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/Imp/nBloomFilterImp.h -------------------------------------------------------------------------------- /base/Imp/nByteBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/Imp/nByteBuffer.cpp -------------------------------------------------------------------------------- /base/Imp/nClientConn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/Imp/nClientConn.cpp -------------------------------------------------------------------------------- /base/Imp/nClientConnService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/Imp/nClientConnService.cpp -------------------------------------------------------------------------------- /base/Imp/nClientConnService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/Imp/nClientConnService.h -------------------------------------------------------------------------------- /base/Imp/nCmdQueue.cpp: -------------------------------------------------------------------------------- 1 | #include "base/nCmdQueue.h" 2 | -------------------------------------------------------------------------------- /base/Imp/nConfigFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/Imp/nConfigFile.cpp -------------------------------------------------------------------------------- /base/Imp/nConnectServerData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/Imp/nConnectServerData.cpp -------------------------------------------------------------------------------- /base/Imp/nDBConnection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/Imp/nDBConnection.cpp -------------------------------------------------------------------------------- /base/Imp/nDBConnectionPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/Imp/nDBConnectionPool.cpp -------------------------------------------------------------------------------- /base/Imp/nDBUrlManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/Imp/nDBUrlManager.cpp -------------------------------------------------------------------------------- /base/Imp/nDataManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/Imp/nDataManager.cpp -------------------------------------------------------------------------------- /base/Imp/nDebugger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/Imp/nDebugger.cpp -------------------------------------------------------------------------------- /base/Imp/nDictionary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/Imp/nDictionary.cpp -------------------------------------------------------------------------------- /base/Imp/nEncoding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/Imp/nEncoding.cpp -------------------------------------------------------------------------------- /base/Imp/nEncrypt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/Imp/nEncrypt.cpp -------------------------------------------------------------------------------- /base/Imp/nEventLaunch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/Imp/nEventLaunch.cpp -------------------------------------------------------------------------------- /base/Imp/nEventObserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/Imp/nEventObserver.cpp -------------------------------------------------------------------------------- /base/Imp/nFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/Imp/nFile.cpp -------------------------------------------------------------------------------- /base/Imp/nHttpClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/Imp/nHttpClient.cpp -------------------------------------------------------------------------------- /base/Imp/nHttpCommandCtl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/Imp/nHttpCommandCtl.cpp -------------------------------------------------------------------------------- /base/Imp/nHttpRequest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/Imp/nHttpRequest.cpp -------------------------------------------------------------------------------- /base/Imp/nListenService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/Imp/nListenService.cpp -------------------------------------------------------------------------------- /base/Imp/nListenService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/Imp/nListenService.h -------------------------------------------------------------------------------- /base/Imp/nLogger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/Imp/nLogger.cpp -------------------------------------------------------------------------------- /base/Imp/nLoggerThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/Imp/nLoggerThread.cpp -------------------------------------------------------------------------------- /base/Imp/nLoggerThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/Imp/nLoggerThread.h -------------------------------------------------------------------------------- /base/Imp/nLuaState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/Imp/nLuaState.cpp -------------------------------------------------------------------------------- /base/Imp/nMailClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/Imp/nMailClient.cpp -------------------------------------------------------------------------------- /base/Imp/nMemoryMappedFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/Imp/nMemoryMappedFile.cpp -------------------------------------------------------------------------------- /base/Imp/nMisc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/Imp/nMisc.cpp -------------------------------------------------------------------------------- /base/Imp/nObj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/Imp/nObj.cpp -------------------------------------------------------------------------------- /base/Imp/nParamMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/Imp/nParamMap.cpp -------------------------------------------------------------------------------- /base/Imp/nQQCloudCommandCtl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/Imp/nQQCloudCommandCtl.cpp -------------------------------------------------------------------------------- /base/Imp/nRTXClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/Imp/nRTXClient.cpp -------------------------------------------------------------------------------- /base/Imp/nRegex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/Imp/nRegex.cpp -------------------------------------------------------------------------------- /base/Imp/nScheduleService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/Imp/nScheduleService.cpp -------------------------------------------------------------------------------- /base/Imp/nScheduleTimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/Imp/nScheduleTimer.cpp -------------------------------------------------------------------------------- /base/Imp/nSelfConn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/Imp/nSelfConn.cpp -------------------------------------------------------------------------------- /base/Imp/nServerConn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/Imp/nServerConn.cpp -------------------------------------------------------------------------------- /base/Imp/nServerConnManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/Imp/nServerConnManager.cpp -------------------------------------------------------------------------------- /base/Imp/nServerTickTimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/Imp/nServerTickTimer.cpp -------------------------------------------------------------------------------- /base/Imp/nShareMemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/Imp/nShareMemory.cpp -------------------------------------------------------------------------------- /base/Imp/nSocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/Imp/nSocket.cpp -------------------------------------------------------------------------------- /base/Imp/nSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/Imp/nSocket.h -------------------------------------------------------------------------------- /base/Imp/nSocketPortData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/Imp/nSocketPortData.cpp -------------------------------------------------------------------------------- /base/Imp/nStringTool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/Imp/nStringTool.cpp -------------------------------------------------------------------------------- /base/Imp/nTaskConn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/Imp/nTaskConn.cpp -------------------------------------------------------------------------------- /base/Imp/nTaskConnService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/Imp/nTaskConnService.cpp -------------------------------------------------------------------------------- /base/Imp/nTaskConnService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/Imp/nTaskConnService.h -------------------------------------------------------------------------------- /base/Imp/nTaskThreadManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/Imp/nTaskThreadManager.h -------------------------------------------------------------------------------- /base/Imp/nTelnetCommandCtl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/Imp/nTelnetCommandCtl.cpp -------------------------------------------------------------------------------- /base/Imp/nThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/Imp/nThread.cpp -------------------------------------------------------------------------------- /base/Imp/nThreadManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/Imp/nThreadManager.cpp -------------------------------------------------------------------------------- /base/Imp/nThreadManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/Imp/nThreadManager.h -------------------------------------------------------------------------------- /base/Imp/nThreadMonitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/Imp/nThreadMonitor.cpp -------------------------------------------------------------------------------- /base/Imp/nThreadMonitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/Imp/nThreadMonitor.h -------------------------------------------------------------------------------- /base/Imp/nTime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/Imp/nTime.cpp -------------------------------------------------------------------------------- /base/Imp/nTimerManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/Imp/nTimerManager.cpp -------------------------------------------------------------------------------- /base/Imp/nXMLParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/Imp/nXMLParser.cpp -------------------------------------------------------------------------------- /base/Imp/nZip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/Imp/nZip.cpp -------------------------------------------------------------------------------- /base/Imp/nZlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/Imp/nZlib.cpp -------------------------------------------------------------------------------- /base/Tidy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/Tidy.h -------------------------------------------------------------------------------- /base/nAnalysis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/nAnalysis.h -------------------------------------------------------------------------------- /base/nAny.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/nAny.h -------------------------------------------------------------------------------- /base/nAssert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/nAssert.h -------------------------------------------------------------------------------- /base/nAsyncSqlThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/nAsyncSqlThread.h -------------------------------------------------------------------------------- /base/nBase.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /base/nBaseFilterService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/nBaseFilterService.h -------------------------------------------------------------------------------- /base/nBaseHttpService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/nBaseHttpService.h -------------------------------------------------------------------------------- /base/nBaseMessageService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/nBaseMessageService.h -------------------------------------------------------------------------------- /base/nBaseMonitorService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/nBaseMonitorService.h -------------------------------------------------------------------------------- /base/nBaseScriptObj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/nBaseScriptObj.h -------------------------------------------------------------------------------- /base/nBaseServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/nBaseServer.h -------------------------------------------------------------------------------- /base/nBaseTickService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/nBaseTickService.h -------------------------------------------------------------------------------- /base/nBinaryQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/nBinaryQueue.h -------------------------------------------------------------------------------- /base/nBloomFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/nBloomFilter.h -------------------------------------------------------------------------------- /base/nByteBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/nByteBuffer.h -------------------------------------------------------------------------------- /base/nClassManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/nClassManager.h -------------------------------------------------------------------------------- /base/nClientConn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/nClientConn.h -------------------------------------------------------------------------------- /base/nCmdQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/nCmdQueue.h -------------------------------------------------------------------------------- /base/nCommandCtl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/nCommandCtl.h -------------------------------------------------------------------------------- /base/nCondition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/nCondition.h -------------------------------------------------------------------------------- /base/nConfigFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/nConfigFile.h -------------------------------------------------------------------------------- /base/nConnectServerData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/nConnectServerData.h -------------------------------------------------------------------------------- /base/nConstLengthReadOnlyArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/nConstLengthReadOnlyArray.h -------------------------------------------------------------------------------- /base/nConstructInPlace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/nConstructInPlace.h -------------------------------------------------------------------------------- /base/nDBConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/nDBConnection.h -------------------------------------------------------------------------------- /base/nDBConnectionPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/nDBConnectionPool.h -------------------------------------------------------------------------------- /base/nDBUrlManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/nDBUrlManager.h -------------------------------------------------------------------------------- /base/nDataManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/nDataManager.h -------------------------------------------------------------------------------- /base/nDataSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/nDataSet.h -------------------------------------------------------------------------------- /base/nDebugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/nDebugger.h -------------------------------------------------------------------------------- /base/nDictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/nDictionary.h -------------------------------------------------------------------------------- /base/nEncoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/nEncoding.h -------------------------------------------------------------------------------- /base/nEncrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/nEncrypt.h -------------------------------------------------------------------------------- /base/nEventCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/nEventCheck.h -------------------------------------------------------------------------------- /base/nEventLaunch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/nEventLaunch.h -------------------------------------------------------------------------------- /base/nEventObserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/nEventObserver.h -------------------------------------------------------------------------------- /base/nFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/nFile.h -------------------------------------------------------------------------------- /base/nGroupManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/nGroupManager.h -------------------------------------------------------------------------------- /base/nHashListTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/nHashListTable.h -------------------------------------------------------------------------------- /base/nHashTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/nHashTable.h -------------------------------------------------------------------------------- /base/nHttpClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/nHttpClient.h -------------------------------------------------------------------------------- /base/nHttpRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/nHttpRequest.h -------------------------------------------------------------------------------- /base/nIDManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/nIDManager.h -------------------------------------------------------------------------------- /base/nListTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/nListTable.h -------------------------------------------------------------------------------- /base/nLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/nLogger.h -------------------------------------------------------------------------------- /base/nLuaState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/nLuaState.h -------------------------------------------------------------------------------- /base/nMailClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/nMailClient.h -------------------------------------------------------------------------------- /base/nManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/nManager.h -------------------------------------------------------------------------------- /base/nMemoryMappedFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/nMemoryMappedFile.h -------------------------------------------------------------------------------- /base/nMisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/nMisc.h -------------------------------------------------------------------------------- /base/nMutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/nMutex.h -------------------------------------------------------------------------------- /base/nObj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/nObj.h -------------------------------------------------------------------------------- /base/nObjLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/nObjLogger.h -------------------------------------------------------------------------------- /base/nParamMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/nParamMap.h -------------------------------------------------------------------------------- /base/nRTXClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/nRTXClient.h -------------------------------------------------------------------------------- /base/nRWLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/nRWLock.h -------------------------------------------------------------------------------- /base/nRandom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/nRandom.h -------------------------------------------------------------------------------- /base/nRange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/nRange.h -------------------------------------------------------------------------------- /base/nRegex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/nRegex.h -------------------------------------------------------------------------------- /base/nSTL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/nSTL.h -------------------------------------------------------------------------------- /base/nScheduleService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/nScheduleService.h -------------------------------------------------------------------------------- /base/nScheduleTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/nScheduleTimer.h -------------------------------------------------------------------------------- /base/nSelfConn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/nSelfConn.h -------------------------------------------------------------------------------- /base/nSequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/nSequence.h -------------------------------------------------------------------------------- /base/nServerConn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/nServerConn.h -------------------------------------------------------------------------------- /base/nServerConnManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/nServerConnManager.h -------------------------------------------------------------------------------- /base/nServerTickTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/nServerTickTimer.h -------------------------------------------------------------------------------- /base/nShareMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/nShareMemory.h -------------------------------------------------------------------------------- /base/nSig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/nSig.h -------------------------------------------------------------------------------- /base/nSingleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/nSingleton.h -------------------------------------------------------------------------------- /base/nSocketPortData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/nSocketPortData.h -------------------------------------------------------------------------------- /base/nState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/nState.h -------------------------------------------------------------------------------- /base/nStateMachine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/nStateMachine.h -------------------------------------------------------------------------------- /base/nStringTool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/nStringTool.h -------------------------------------------------------------------------------- /base/nSys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/nSys.h -------------------------------------------------------------------------------- /base/nTableManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/nTableManager.h -------------------------------------------------------------------------------- /base/nTaskConn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/nTaskConn.h -------------------------------------------------------------------------------- /base/nTaskQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/nTaskQueue.h -------------------------------------------------------------------------------- /base/nThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/nThread.h -------------------------------------------------------------------------------- /base/nTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/nTime.h -------------------------------------------------------------------------------- /base/nTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/nTimer.h -------------------------------------------------------------------------------- /base/nTimerManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/nTimerManager.h -------------------------------------------------------------------------------- /base/nType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/nType.h -------------------------------------------------------------------------------- /base/nVectorTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/nVectorTable.h -------------------------------------------------------------------------------- /base/nXMLParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/nXMLParser.h -------------------------------------------------------------------------------- /base/nZip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/nZip.h -------------------------------------------------------------------------------- /base/nZlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/base/nZlib.h -------------------------------------------------------------------------------- /config/CommonFuncConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/config/CommonFuncConfig.xml -------------------------------------------------------------------------------- /config/CommonFuncConfig.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/config/CommonFuncConfig.xsd -------------------------------------------------------------------------------- /config/Filter.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/config/Filter.dat -------------------------------------------------------------------------------- /config/GameConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/config/GameConfig.xml -------------------------------------------------------------------------------- /config/Schedule.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/config/Schedule.xml -------------------------------------------------------------------------------- /config/Table/FilterBaseTable.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/config/Table/FilterBaseTable.tbl -------------------------------------------------------------------------------- /config/Table/ItemBaseTable.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/config/Table/ItemBaseTable.tbl -------------------------------------------------------------------------------- /config/Table/SceneTable.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/config/Table/SceneTable.tbl -------------------------------------------------------------------------------- /config/TableConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/config/TableConfig.xml -------------------------------------------------------------------------------- /config/ZoneConfig.xml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/config/ZoneConfig.xml.example -------------------------------------------------------------------------------- /config/ZoneConfig.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/config/ZoneConfig.xsd -------------------------------------------------------------------------------- /dataServer/Mail/dtMailService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/dataServer/Mail/dtMailService.cpp -------------------------------------------------------------------------------- /dataServer/dtGMCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/dataServer/dtGMCommand.cpp -------------------------------------------------------------------------------- /dataServer/dtGMCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/dataServer/dtGMCommand.h -------------------------------------------------------------------------------- /dataServer/dtLoginService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/dataServer/dtLoginService.cpp -------------------------------------------------------------------------------- /dataServer/dtLoginService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/dataServer/dtLoginService.h -------------------------------------------------------------------------------- /dataServer/dtMailService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/dataServer/dtMailService.h -------------------------------------------------------------------------------- /dataServer/dtMessageService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/dataServer/dtMessageService.cpp -------------------------------------------------------------------------------- /dataServer/dtMessageService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/dataServer/dtMessageService.h -------------------------------------------------------------------------------- /dataServer/dtParseForward.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/dataServer/dtParseForward.cpp -------------------------------------------------------------------------------- /dataServer/dtParseProto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/dataServer/dtParseProto.cpp -------------------------------------------------------------------------------- /dataServer/dtParseProtoLogin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/dataServer/dtParseProtoLogin.cpp -------------------------------------------------------------------------------- /dataServer/dtParseProtoUser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/dataServer/dtParseProtoUser.cpp -------------------------------------------------------------------------------- /dataServer/dtParseServerRun.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/dataServer/dtParseServerRun.cpp -------------------------------------------------------------------------------- /dataServer/dtSerializeService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/dataServer/dtSerializeService.cpp -------------------------------------------------------------------------------- /dataServer/dtSerializeService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/dataServer/dtSerializeService.h -------------------------------------------------------------------------------- /dataServer/dtServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/dataServer/dtServer.cpp -------------------------------------------------------------------------------- /dataServer/dtServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/dataServer/dtServer.h -------------------------------------------------------------------------------- /dataServer/dtUser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/dataServer/dtUser.cpp -------------------------------------------------------------------------------- /dataServer/dtUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/dataServer/dtUser.h -------------------------------------------------------------------------------- /dataServer/dtUserService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/dataServer/dtUserService.cpp -------------------------------------------------------------------------------- /dataServer/dtUserService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/dataServer/dtUserService.h -------------------------------------------------------------------------------- /game/Imp/SpecialType.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/Imp/nAlgebra.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/game/Imp/nAlgebra.cpp -------------------------------------------------------------------------------- /game/Imp/nBaseMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/game/Imp/nBaseMap.cpp -------------------------------------------------------------------------------- /game/Imp/nEquipData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/game/Imp/nEquipData.cpp -------------------------------------------------------------------------------- /game/Imp/nGameScript.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/game/Imp/nGameScript.cpp -------------------------------------------------------------------------------- /game/Imp/nGameServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/game/Imp/nGameServer.cpp -------------------------------------------------------------------------------- /game/Imp/nGameTickService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/game/Imp/nGameTickService.cpp -------------------------------------------------------------------------------- /game/Imp/nItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/game/Imp/nItem.cpp -------------------------------------------------------------------------------- /game/Imp/nItemData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/game/Imp/nItemData.cpp -------------------------------------------------------------------------------- /game/Imp/nMiscDataSerialize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/game/Imp/nMiscDataSerialize.cpp -------------------------------------------------------------------------------- /game/Imp/nParamConfig.cpp: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /game/Imp/nParseProtoServerRun.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/game/Imp/nParseProtoServerRun.cpp -------------------------------------------------------------------------------- /game/Imp/nPublicDefine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/game/Imp/nPublicDefine.cpp -------------------------------------------------------------------------------- /game/Imp/nSpecialType.cpp: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /game/Imp/nSsqls.cpp: -------------------------------------------------------------------------------- 1 | #include "game/nSqlData.h" 2 | -------------------------------------------------------------------------------- /game/Imp/nTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/game/Imp/nTable.cpp -------------------------------------------------------------------------------- /game/Imp/nTableBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/game/Imp/nTableBase.cpp -------------------------------------------------------------------------------- /game/Imp/nTableManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/game/Imp/nTableManager.cpp -------------------------------------------------------------------------------- /game/LuaPkg/nGameScript.pkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/game/LuaPkg/nGameScript.pkg -------------------------------------------------------------------------------- /game/LuaPkg/nScriptObj.pkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/game/LuaPkg/nScriptObj.pkg -------------------------------------------------------------------------------- /game/nAlgebra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/game/nAlgebra.h -------------------------------------------------------------------------------- /game/nAlgo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/game/nAlgo.h -------------------------------------------------------------------------------- /game/nBaseGameMessageService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/game/nBaseGameMessageService.h -------------------------------------------------------------------------------- /game/nBaseManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/game/nBaseManager.h -------------------------------------------------------------------------------- /game/nBaseMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/game/nBaseMap.h -------------------------------------------------------------------------------- /game/nBasePackage.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /game/nBaseRoom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/game/nBaseRoom.h -------------------------------------------------------------------------------- /game/nChatService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/game/nChatService.h -------------------------------------------------------------------------------- /game/nConvert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/game/nConvert.h -------------------------------------------------------------------------------- /game/nDuplManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/game/nDuplManager.h -------------------------------------------------------------------------------- /game/nEquipData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/game/nEquipData.h -------------------------------------------------------------------------------- /game/nEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/game/nEvent.h -------------------------------------------------------------------------------- /game/nGMCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/game/nGMCommand.h -------------------------------------------------------------------------------- /game/nGame.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/nGameMessageService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/game/nGameMessageService.h -------------------------------------------------------------------------------- /game/nGameScript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/game/nGameScript.h -------------------------------------------------------------------------------- /game/nGameServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/game/nGameServer.h -------------------------------------------------------------------------------- /game/nGameTickService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/game/nGameTickService.h -------------------------------------------------------------------------------- /game/nItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/game/nItem.h -------------------------------------------------------------------------------- /game/nItemData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/game/nItemData.h -------------------------------------------------------------------------------- /game/nItemManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/game/nItemManager.h -------------------------------------------------------------------------------- /game/nItemPackage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/game/nItemPackage.h -------------------------------------------------------------------------------- /game/nMailService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/game/nMailService.h -------------------------------------------------------------------------------- /game/nMapService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/game/nMapService.h -------------------------------------------------------------------------------- /game/nMiscDataSerialize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/game/nMiscDataSerialize.h -------------------------------------------------------------------------------- /game/nObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/game/nObject.h -------------------------------------------------------------------------------- /game/nParamConfigData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/game/nParamConfigData.h -------------------------------------------------------------------------------- /game/nPetManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/game/nPetManager.h -------------------------------------------------------------------------------- /game/nPos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/game/nPos.h -------------------------------------------------------------------------------- /game/nPublicDefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/game/nPublicDefine.h -------------------------------------------------------------------------------- /game/nRect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/game/nRect.h -------------------------------------------------------------------------------- /game/nRegion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/game/nRegion.h -------------------------------------------------------------------------------- /game/nRoomObj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/game/nRoomObj.h -------------------------------------------------------------------------------- /game/nScriptObj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/game/nScriptObj.h -------------------------------------------------------------------------------- /game/nService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/game/nService.h -------------------------------------------------------------------------------- /game/nSpecialType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/game/nSpecialType.h -------------------------------------------------------------------------------- /game/nSqlData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/game/nSqlData.h -------------------------------------------------------------------------------- /game/nSsqls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/game/nSsqls.h -------------------------------------------------------------------------------- /game/nStaticIndex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/game/nStaticIndex.h -------------------------------------------------------------------------------- /game/nTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/game/nTable.h -------------------------------------------------------------------------------- /game/nTableBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/game/nTableBase.h -------------------------------------------------------------------------------- /game/nTableFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/game/nTableFactory.h -------------------------------------------------------------------------------- /game/nTableManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/game/nTableManager.h -------------------------------------------------------------------------------- /game/nTableRegister.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/game/nTableRegister.h -------------------------------------------------------------------------------- /game/nTaskManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/game/nTaskManager.h -------------------------------------------------------------------------------- /game/nTrumpManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/game/nTrumpManager.h -------------------------------------------------------------------------------- /game/nUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/game/nUser.h -------------------------------------------------------------------------------- /game/nUserManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/game/nUserManager.h -------------------------------------------------------------------------------- /gatewayServer/gwConfigService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/gatewayServer/gwConfigService.cpp -------------------------------------------------------------------------------- /gatewayServer/gwConfigService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/gatewayServer/gwConfigService.h -------------------------------------------------------------------------------- /gatewayServer/gwFilterService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/gatewayServer/gwFilterService.h -------------------------------------------------------------------------------- /gatewayServer/gwLogicConn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/gatewayServer/gwLogicConn.cpp -------------------------------------------------------------------------------- /gatewayServer/gwLogicConn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/gatewayServer/gwLogicConn.h -------------------------------------------------------------------------------- /gatewayServer/gwLoginService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/gatewayServer/gwLoginService.cpp -------------------------------------------------------------------------------- /gatewayServer/gwLoginService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/gatewayServer/gwLoginService.h -------------------------------------------------------------------------------- /gatewayServer/gwLoginSession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/gatewayServer/gwLoginSession.cpp -------------------------------------------------------------------------------- /gatewayServer/gwLoginSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/gatewayServer/gwLoginSession.h -------------------------------------------------------------------------------- /gatewayServer/gwMessageService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/gatewayServer/gwMessageService.cpp -------------------------------------------------------------------------------- /gatewayServer/gwMessageService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/gatewayServer/gwMessageService.h -------------------------------------------------------------------------------- /gatewayServer/gwParseForward.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/gatewayServer/gwParseForward.cpp -------------------------------------------------------------------------------- /gatewayServer/gwParseProtoUser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/gatewayServer/gwParseProtoUser.cpp -------------------------------------------------------------------------------- /gatewayServer/gwParseProtocol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/gatewayServer/gwParseProtocol.cpp -------------------------------------------------------------------------------- /gatewayServer/gwParseServerRun.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/gatewayServer/gwParseServerRun.cpp -------------------------------------------------------------------------------- /gatewayServer/gwServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/gatewayServer/gwServer.cpp -------------------------------------------------------------------------------- /gatewayServer/gwServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/gatewayServer/gwServer.h -------------------------------------------------------------------------------- /gatewayServer/gwTelnetService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/gatewayServer/gwTelnetService.cpp -------------------------------------------------------------------------------- /gatewayServer/gwTelnetService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/gatewayServer/gwTelnetService.h -------------------------------------------------------------------------------- /gatewayServer/gwUser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/gatewayServer/gwUser.cpp -------------------------------------------------------------------------------- /gatewayServer/gwUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/gatewayServer/gwUser.h -------------------------------------------------------------------------------- /gatewayServer/gwUserNet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/gatewayServer/gwUserNet.cpp -------------------------------------------------------------------------------- /gatewayServer/gwUserService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/gatewayServer/gwUserService.cpp -------------------------------------------------------------------------------- /gatewayServer/gwUserService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/gatewayServer/gwUserService.h -------------------------------------------------------------------------------- /gatewayServer/gwUserTaskConn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/gatewayServer/gwUserTaskConn.cpp -------------------------------------------------------------------------------- /gatewayServer/gwUserTaskConn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/gatewayServer/gwUserTaskConn.h -------------------------------------------------------------------------------- /protocol/Proto/Club.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/protocol/Proto/Club.pb.cc -------------------------------------------------------------------------------- /protocol/Proto/Club.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/protocol/Proto/Club.pb.h -------------------------------------------------------------------------------- /protocol/Proto/Club.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/protocol/Proto/Club.proto -------------------------------------------------------------------------------- /protocol/Proto/Club_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/protocol/Proto/Club_pb2.py -------------------------------------------------------------------------------- /protocol/Proto/EquipAttribute.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/protocol/Proto/EquipAttribute.pb.h -------------------------------------------------------------------------------- /protocol/Proto/ItemData.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/protocol/Proto/ItemData.pb.cc -------------------------------------------------------------------------------- /protocol/Proto/ItemData.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/protocol/Proto/ItemData.pb.h -------------------------------------------------------------------------------- /protocol/Proto/ItemData.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/protocol/Proto/ItemData.proto -------------------------------------------------------------------------------- /protocol/Proto/ItemData_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/protocol/Proto/ItemData_pb2.py -------------------------------------------------------------------------------- /protocol/Proto/Licence.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/protocol/Proto/Licence.txt -------------------------------------------------------------------------------- /protocol/Proto/Mail.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/protocol/Proto/Mail.pb.cc -------------------------------------------------------------------------------- /protocol/Proto/Mail.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/protocol/Proto/Mail.pb.h -------------------------------------------------------------------------------- /protocol/Proto/Mail.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/protocol/Proto/Mail.proto -------------------------------------------------------------------------------- /protocol/Proto/Mail_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/protocol/Proto/Mail_pb2.py -------------------------------------------------------------------------------- /protocol/Proto/Platform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/protocol/Proto/Platform.cs -------------------------------------------------------------------------------- /protocol/Proto/Platform.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/protocol/Proto/Platform.pb.cc -------------------------------------------------------------------------------- /protocol/Proto/Platform.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/protocol/Proto/Platform.pb.h -------------------------------------------------------------------------------- /protocol/Proto/Platform.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/protocol/Proto/Platform.proto -------------------------------------------------------------------------------- /protocol/Proto/Platform_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/protocol/Proto/Platform_pb2.py -------------------------------------------------------------------------------- /protocol/Proto/RoomData.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/protocol/Proto/RoomData.pb.cc -------------------------------------------------------------------------------- /protocol/Proto/RoomData.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/protocol/Proto/RoomData.pb.h -------------------------------------------------------------------------------- /protocol/Proto/RoomData.proto: -------------------------------------------------------------------------------- 1 | package protocol.room; 2 | 3 | -------------------------------------------------------------------------------- /protocol/Proto/RoomData_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/protocol/Proto/RoomData_pb2.py -------------------------------------------------------------------------------- /protocol/Proto/SequenceData.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/protocol/Proto/SequenceData.pb.cc -------------------------------------------------------------------------------- /protocol/Proto/SequenceData.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/protocol/Proto/SequenceData.pb.h -------------------------------------------------------------------------------- /protocol/Proto/SequenceData.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/protocol/Proto/SequenceData.proto -------------------------------------------------------------------------------- /protocol/Proto/SequenceData_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/protocol/Proto/SequenceData_pb2.py -------------------------------------------------------------------------------- /protocol/Proto/SerializeData.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/protocol/Proto/SerializeData.pb.cc -------------------------------------------------------------------------------- /protocol/Proto/SerializeData.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/protocol/Proto/SerializeData.pb.h -------------------------------------------------------------------------------- /protocol/Proto/SerializeData.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/protocol/Proto/SerializeData.proto -------------------------------------------------------------------------------- /protocol/Proto/ServerRunData.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/protocol/Proto/ServerRunData.pb.cc -------------------------------------------------------------------------------- /protocol/Proto/ServerRunData.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/protocol/Proto/ServerRunData.pb.h -------------------------------------------------------------------------------- /protocol/Proto/ServerRunData.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/protocol/Proto/ServerRunData.proto -------------------------------------------------------------------------------- /protocol/Proto/UserData.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/protocol/Proto/UserData.pb.cc -------------------------------------------------------------------------------- /protocol/Proto/UserData.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/protocol/Proto/UserData.pb.h -------------------------------------------------------------------------------- /protocol/Proto/UserData.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/protocol/Proto/UserData.proto -------------------------------------------------------------------------------- /protocol/Proto/UserData_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/protocol/Proto/UserData_pb2.py -------------------------------------------------------------------------------- /protocol/Proto/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /protocol/Proto/common.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/protocol/Proto/common.xslt -------------------------------------------------------------------------------- /protocol/Proto/csharp.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/protocol/Proto/csharp.xslt -------------------------------------------------------------------------------- /protocol/Proto/protobuf-net.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/protocol/Proto/protobuf-net.xml -------------------------------------------------------------------------------- /protocol/Proto/protoc-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/protocol/Proto/protoc-license.txt -------------------------------------------------------------------------------- /protocol/Proto/vb.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/protocol/Proto/vb.xslt -------------------------------------------------------------------------------- /protocol/Proto/xml.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/protocol/Proto/xml.xslt -------------------------------------------------------------------------------- /protocol/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /protocol/adminCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/protocol/adminCommand.h -------------------------------------------------------------------------------- /protocol/adminCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/protocol/adminCommon.h -------------------------------------------------------------------------------- /protocol/baseCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/protocol/baseCommand.cpp -------------------------------------------------------------------------------- /protocol/baseCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/protocol/baseCommand.h -------------------------------------------------------------------------------- /protocol/commonType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/protocol/commonType.h -------------------------------------------------------------------------------- /protocol/equipAttribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/protocol/equipAttribute.h -------------------------------------------------------------------------------- /protocol/equipData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/protocol/equipData.h -------------------------------------------------------------------------------- /protocol/forwardCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/protocol/forwardCommand.h -------------------------------------------------------------------------------- /protocol/itemAttribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/protocol/itemAttribute.h -------------------------------------------------------------------------------- /protocol/itemCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/protocol/itemCommand.h -------------------------------------------------------------------------------- /protocol/itemCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/protocol/itemCommon.h -------------------------------------------------------------------------------- /protocol/loginCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/protocol/loginCommand.h -------------------------------------------------------------------------------- /protocol/loginCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/protocol/loginCommon.h -------------------------------------------------------------------------------- /protocol/magicCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/protocol/magicCommon.h -------------------------------------------------------------------------------- /protocol/mailCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/protocol/mailCommand.h -------------------------------------------------------------------------------- /protocol/mailCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/protocol/mailCommon.h -------------------------------------------------------------------------------- /protocol/moneyCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/protocol/moneyCommon.h -------------------------------------------------------------------------------- /protocol/netCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/protocol/netCommand.h -------------------------------------------------------------------------------- /protocol/packageCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/protocol/packageCommon.h -------------------------------------------------------------------------------- /protocol/platformCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/protocol/platformCommand.h -------------------------------------------------------------------------------- /protocol/platformCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/protocol/platformCommon.h -------------------------------------------------------------------------------- /protocol/relationCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/protocol/relationCommand.h -------------------------------------------------------------------------------- /protocol/relationCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/protocol/relationCommon.h -------------------------------------------------------------------------------- /protocol/serializeCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/protocol/serializeCommand.h -------------------------------------------------------------------------------- /protocol/serializeCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/protocol/serializeCommon.h -------------------------------------------------------------------------------- /protocol/serverInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/protocol/serverInfo.h -------------------------------------------------------------------------------- /protocol/serverRunCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/protocol/serverRunCommand.h -------------------------------------------------------------------------------- /protocol/serverRunCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/protocol/serverRunCommon.h -------------------------------------------------------------------------------- /protocol/userCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/protocol/userCommand.h -------------------------------------------------------------------------------- /protocol/userCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/protocol/userCommon.h -------------------------------------------------------------------------------- /sql/.svnignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/sql/.svnignore -------------------------------------------------------------------------------- /sql/database.py.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/sql/database.py.example -------------------------------------------------------------------------------- /sql/dbtool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/sql/dbtool.py -------------------------------------------------------------------------------- /sql/installAdmin.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/sql/installAdmin.sql -------------------------------------------------------------------------------- /sql/installGame.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/sql/installGame.sql -------------------------------------------------------------------------------- /sql/my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/sql/my.cnf -------------------------------------------------------------------------------- /sql/updateAdmin.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/sql/updateAdmin.sql -------------------------------------------------------------------------------- /sql/updateGame.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/sql/updateGame.sql -------------------------------------------------------------------------------- /sql/versionAdmin.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/sql/versionAdmin.sql -------------------------------------------------------------------------------- /sql/versionGame.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/sql/versionGame.sql -------------------------------------------------------------------------------- /third_party/7z-4.65/C/7z.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/7z-4.65/C/7z.sln -------------------------------------------------------------------------------- /third_party/7z-4.65/C/7zBuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/7z-4.65/C/7zBuf.c -------------------------------------------------------------------------------- /third_party/7z-4.65/C/7zBuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/7z-4.65/C/7zBuf.h -------------------------------------------------------------------------------- /third_party/7z-4.65/C/7zBuf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/7z-4.65/C/7zBuf2.c -------------------------------------------------------------------------------- /third_party/7z-4.65/C/7zCrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/7z-4.65/C/7zCrc.c -------------------------------------------------------------------------------- /third_party/7z-4.65/C/7zCrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/7z-4.65/C/7zCrc.h -------------------------------------------------------------------------------- /third_party/7z-4.65/C/7zCrcT8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/7z-4.65/C/7zCrcT8.c -------------------------------------------------------------------------------- /third_party/7z-4.65/C/7zFile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/7z-4.65/C/7zFile.c -------------------------------------------------------------------------------- /third_party/7z-4.65/C/7zFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/7z-4.65/C/7zFile.h -------------------------------------------------------------------------------- /third_party/7z-4.65/C/7zStream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/7z-4.65/C/7zStream.c -------------------------------------------------------------------------------- /third_party/7z-4.65/C/7zVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/7z-4.65/C/7zVersion.h -------------------------------------------------------------------------------- /third_party/7z-4.65/C/Aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/7z-4.65/C/Aes.c -------------------------------------------------------------------------------- /third_party/7z-4.65/C/Aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/7z-4.65/C/Aes.h -------------------------------------------------------------------------------- /third_party/7z-4.65/C/Alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/7z-4.65/C/Alloc.c -------------------------------------------------------------------------------- /third_party/7z-4.65/C/Alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/7z-4.65/C/Alloc.h -------------------------------------------------------------------------------- /third_party/7z-4.65/C/Bcj2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/7z-4.65/C/Bcj2.c -------------------------------------------------------------------------------- /third_party/7z-4.65/C/Bcj2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/7z-4.65/C/Bcj2.h -------------------------------------------------------------------------------- /third_party/7z-4.65/C/Bra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/7z-4.65/C/Bra.c -------------------------------------------------------------------------------- /third_party/7z-4.65/C/Bra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/7z-4.65/C/Bra.h -------------------------------------------------------------------------------- /third_party/7z-4.65/C/Bra86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/7z-4.65/C/Bra86.c -------------------------------------------------------------------------------- /third_party/7z-4.65/C/BraIA64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/7z-4.65/C/BraIA64.c -------------------------------------------------------------------------------- /third_party/7z-4.65/C/BwtSort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/7z-4.65/C/BwtSort.c -------------------------------------------------------------------------------- /third_party/7z-4.65/C/BwtSort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/7z-4.65/C/BwtSort.h -------------------------------------------------------------------------------- /third_party/7z-4.65/C/CpuArch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/7z-4.65/C/CpuArch.h -------------------------------------------------------------------------------- /third_party/7z-4.65/C/HuffEnc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/7z-4.65/C/HuffEnc.c -------------------------------------------------------------------------------- /third_party/7z-4.65/C/HuffEnc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/7z-4.65/C/HuffEnc.h -------------------------------------------------------------------------------- /third_party/7z-4.65/C/LzFind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/7z-4.65/C/LzFind.c -------------------------------------------------------------------------------- /third_party/7z-4.65/C/LzFind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/7z-4.65/C/LzFind.h -------------------------------------------------------------------------------- /third_party/7z-4.65/C/LzFindMt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/7z-4.65/C/LzFindMt.c -------------------------------------------------------------------------------- /third_party/7z-4.65/C/LzFindMt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/7z-4.65/C/LzFindMt.h -------------------------------------------------------------------------------- /third_party/7z-4.65/C/LzHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/7z-4.65/C/LzHash.h -------------------------------------------------------------------------------- /third_party/7z-4.65/C/LzmaDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/7z-4.65/C/LzmaDec.c -------------------------------------------------------------------------------- /third_party/7z-4.65/C/LzmaDec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/7z-4.65/C/LzmaDec.h -------------------------------------------------------------------------------- /third_party/7z-4.65/C/LzmaEnc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/7z-4.65/C/LzmaEnc.c -------------------------------------------------------------------------------- /third_party/7z-4.65/C/LzmaEnc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/7z-4.65/C/LzmaEnc.h -------------------------------------------------------------------------------- /third_party/7z-4.65/C/LzmaLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/7z-4.65/C/LzmaLib.c -------------------------------------------------------------------------------- /third_party/7z-4.65/C/LzmaLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/7z-4.65/C/LzmaLib.h -------------------------------------------------------------------------------- /third_party/7z-4.65/C/RotateDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/7z-4.65/C/RotateDefs.h -------------------------------------------------------------------------------- /third_party/7z-4.65/C/Sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/7z-4.65/C/Sha256.c -------------------------------------------------------------------------------- /third_party/7z-4.65/C/Sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/7z-4.65/C/Sha256.h -------------------------------------------------------------------------------- /third_party/7z-4.65/C/Sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/7z-4.65/C/Sort.c -------------------------------------------------------------------------------- /third_party/7z-4.65/C/Sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/7z-4.65/C/Sort.h -------------------------------------------------------------------------------- /third_party/7z-4.65/C/Threads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/7z-4.65/C/Threads.c -------------------------------------------------------------------------------- /third_party/7z-4.65/C/Threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/7z-4.65/C/Threads.h -------------------------------------------------------------------------------- /third_party/7z-4.65/C/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/7z-4.65/C/Types.h -------------------------------------------------------------------------------- /third_party/7z-4.65/CPP/7zip/Archive/7z/7zCompressionMode.cpp: -------------------------------------------------------------------------------- 1 | // CompressionMethod.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /third_party/7z-4.65/CPP/7zip/Bundles/Alone/afxres.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /third_party/7z-4.65/CPP/7zip/UI/Explorer/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // StdAfx.cpp 2 | 3 | #include "stdafx.h" 4 | -------------------------------------------------------------------------------- /third_party/7z-4.65/CPP/Build.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/7z-4.65/CPP/Build.mak -------------------------------------------------------------------------------- /third_party/7z-4.65/DOC.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/7z-4.65/DOC.zip -------------------------------------------------------------------------------- /third_party/IPCreditApi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/IPCreditApi/Makefile -------------------------------------------------------------------------------- /third_party/IPCreditApi/demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/IPCreditApi/demo.cpp -------------------------------------------------------------------------------- /third_party/antibot/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | SUBDIRS = wrapper 3 | -------------------------------------------------------------------------------- /third_party/awesomium/JSValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/awesomium/JSValue.h -------------------------------------------------------------------------------- /third_party/awesomium/WebCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/awesomium/WebCore.h -------------------------------------------------------------------------------- /third_party/awesomium/WebView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/awesomium/WebView.h -------------------------------------------------------------------------------- /third_party/build/3Party.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/build/3Party.sln -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/3way.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/cryptopp-5.6.0/3way.h -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/adhoc.cpp.copied: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/cryptopp-5.6.0/aes.h -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/arc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/cryptopp-5.6.0/arc4.h -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/asn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/cryptopp-5.6.0/asn.cpp -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/asn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/cryptopp-5.6.0/asn.h -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/bench.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/cryptopp-5.6.0/bench.h -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/cryptopp-5.6.0/cast.h -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/ccm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/cryptopp-5.6.0/ccm.cpp -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/ccm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/cryptopp-5.6.0/ccm.h -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/cmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/cryptopp-5.6.0/cmac.h -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/cryptopp-5.6.0/cpu.cpp -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/cryptopp-5.6.0/cpu.h -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/crc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/cryptopp-5.6.0/crc.cpp -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/cryptopp-5.6.0/crc.h -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/des.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/cryptopp-5.6.0/des.cpp -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/cryptopp-5.6.0/des.h -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/dh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/cryptopp-5.6.0/dh.cpp -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/dh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/cryptopp-5.6.0/dh.h -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/dh2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/cryptopp-5.6.0/dh2.cpp -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/dh2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/cryptopp-5.6.0/dh2.h -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/dll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/cryptopp-5.6.0/dll.cpp -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/dll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/cryptopp-5.6.0/dll.h -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/dmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/cryptopp-5.6.0/dmac.h -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/dsa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/cryptopp-5.6.0/dsa.cpp -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/dsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/cryptopp-5.6.0/dsa.h -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/eax.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/cryptopp-5.6.0/eax.cpp -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/eax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/cryptopp-5.6.0/eax.h -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/ec2n.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/cryptopp-5.6.0/ec2n.h -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/ecp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/cryptopp-5.6.0/ecp.cpp -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/ecp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/cryptopp-5.6.0/ecp.h -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/emsa2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/cryptopp-5.6.0/emsa2.h -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/esign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/cryptopp-5.6.0/esign.h -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/files.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/cryptopp-5.6.0/files.h -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/gcm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/cryptopp-5.6.0/gcm.cpp -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/gcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/cryptopp-5.6.0/gcm.h -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/gf256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/cryptopp-5.6.0/gf256.h -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/gf2n.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/cryptopp-5.6.0/gf2n.h -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/gost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/cryptopp-5.6.0/gost.h -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/gzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/cryptopp-5.6.0/gzip.h -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/hex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/cryptopp-5.6.0/hex.cpp -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/hex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/cryptopp-5.6.0/hex.h -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/cryptopp-5.6.0/hmac.h -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/ida.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/cryptopp-5.6.0/ida.cpp -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/ida.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/cryptopp-5.6.0/ida.h -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/idea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/cryptopp-5.6.0/idea.h -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/luc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/cryptopp-5.6.0/luc.cpp -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/luc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/cryptopp-5.6.0/luc.h -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/mars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/cryptopp-5.6.0/mars.h -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/md2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/cryptopp-5.6.0/md2.cpp -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/md2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/cryptopp-5.6.0/md2.h -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/md4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/cryptopp-5.6.0/md4.cpp -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/md4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/cryptopp-5.6.0/md4.h -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/md5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/cryptopp-5.6.0/md5.cpp -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/cryptopp-5.6.0/md5.h -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/mdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/cryptopp-5.6.0/mdc.h -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/cryptopp-5.6.0/misc.h -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/modes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/cryptopp-5.6.0/modes.h -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/mqv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/cryptopp-5.6.0/mqv.cpp -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/mqv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/cryptopp-5.6.0/mqv.h -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/nr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/cryptopp-5.6.0/nr.h -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/oaep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/cryptopp-5.6.0/oaep.h -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/oids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/cryptopp-5.6.0/oids.h -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/osrng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/cryptopp-5.6.0/osrng.h -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/cryptopp-5.6.0/pch.h -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/pssr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/cryptopp-5.6.0/pssr.h -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/cryptopp-5.6.0/queue.h -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/rabin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/cryptopp-5.6.0/rabin.h -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/rc2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/cryptopp-5.6.0/rc2.cpp -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/rc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/cryptopp-5.6.0/rc2.h -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/rc5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/cryptopp-5.6.0/rc5.cpp -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/rc5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/cryptopp-5.6.0/rc5.h -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/rc6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/cryptopp-5.6.0/rc6.cpp -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/rc6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/cryptopp-5.6.0/rc6.h -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/rng.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/cryptopp-5.6.0/rng.cpp -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/rng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/cryptopp-5.6.0/rng.h -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/rsa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/cryptopp-5.6.0/rsa.cpp -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/cryptopp-5.6.0/rsa.h -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/rw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/cryptopp-5.6.0/rw.cpp -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/rw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/cryptopp-5.6.0/rw.h -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/safer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/cryptopp-5.6.0/safer.h -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/salsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/cryptopp-5.6.0/salsa.h -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/seal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/cryptopp-5.6.0/seal.h -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/seed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/cryptopp-5.6.0/seed.h -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/sha.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/cryptopp-5.6.0/sha.cpp -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/cryptopp-5.6.0/sha.h -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/shark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/cryptopp-5.6.0/shark.h -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/tea.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/cryptopp-5.6.0/tea.cpp -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/tea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/cryptopp-5.6.0/tea.h -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/tiger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/cryptopp-5.6.0/tiger.h -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/ttmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/cryptopp-5.6.0/ttmac.h -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/vmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/cryptopp-5.6.0/vmac.h -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/wait.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/cryptopp-5.6.0/wait.h -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/wake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/cryptopp-5.6.0/wake.h -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/words.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/cryptopp-5.6.0/words.h -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/xtr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/cryptopp-5.6.0/xtr.cpp -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/xtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/cryptopp-5.6.0/xtr.h -------------------------------------------------------------------------------- /third_party/cryptopp-5.6.0/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/cryptopp-5.6.0/zlib.h -------------------------------------------------------------------------------- /third_party/curl-4.2.0/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/curl-4.2.0/README -------------------------------------------------------------------------------- /third_party/encrypt/blowfish.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/encrypt/blowfish.cpp -------------------------------------------------------------------------------- /third_party/encrypt/blowfish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/encrypt/blowfish.h -------------------------------------------------------------------------------- /third_party/encrypt/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/encrypt/des.h -------------------------------------------------------------------------------- /third_party/encrypt/encrypt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/encrypt/encrypt.cpp -------------------------------------------------------------------------------- /third_party/encrypt/encrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/encrypt/encrypt.h -------------------------------------------------------------------------------- /third_party/encrypt/md5c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/encrypt/md5c.c -------------------------------------------------------------------------------- /third_party/encrypt/md5c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/encrypt/md5c.cpp -------------------------------------------------------------------------------- /third_party/encrypt/md5c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/encrypt/md5c.h -------------------------------------------------------------------------------- /third_party/encrypt/md5ex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/encrypt/md5ex.cpp -------------------------------------------------------------------------------- /third_party/encrypt/md5ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/encrypt/md5ex.h -------------------------------------------------------------------------------- /third_party/encrypt/mycast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/encrypt/mycast.cpp -------------------------------------------------------------------------------- /third_party/encrypt/mycast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/encrypt/mycast.h -------------------------------------------------------------------------------- /third_party/encrypt/mydes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/encrypt/mydes.cpp -------------------------------------------------------------------------------- /third_party/encrypt/mydes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/encrypt/mydes.h -------------------------------------------------------------------------------- /third_party/encrypt/myidea.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/encrypt/myidea.cpp -------------------------------------------------------------------------------- /third_party/encrypt/myidea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/encrypt/myidea.h -------------------------------------------------------------------------------- /third_party/encrypt/myrc5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/encrypt/myrc5.cpp -------------------------------------------------------------------------------- /third_party/encrypt/myrc5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/encrypt/myrc5.h -------------------------------------------------------------------------------- /third_party/hge181/doc/html/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/hge181/doc/html/1.gif -------------------------------------------------------------------------------- /third_party/hge181/doc/html/hge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/hge181/doc/html/hge.js -------------------------------------------------------------------------------- /third_party/hge181/doc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/hge181/doc/index.html -------------------------------------------------------------------------------- /third_party/hge181/include/hge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/hge181/include/hge.h -------------------------------------------------------------------------------- /third_party/hge181/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/hge181/license.txt -------------------------------------------------------------------------------- /third_party/hge181/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/hge181/readme.txt -------------------------------------------------------------------------------- /third_party/hge181/src/core/ZLIB/crc32.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /third_party/hge181/src/fonted/media/fonted.ini: -------------------------------------------------------------------------------- 1 | [HGE] 2 | FullScreen=0 3 | 4 | -------------------------------------------------------------------------------- /third_party/hge181/src/particleed/media/particleed.ini: -------------------------------------------------------------------------------- 1 | [HGE] 2 | FullScreen=0 3 | Background=bg.jpg -------------------------------------------------------------------------------- /third_party/hge181/tools/particleed/particleed.ini: -------------------------------------------------------------------------------- 1 | [HGE] 2 | FullScreen=0 3 | Background=bg.jpg -------------------------------------------------------------------------------- /third_party/itc/itc提供的api错误码列表.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/itc/itc提供的api错误码列表.txt -------------------------------------------------------------------------------- /third_party/itc/lib_linux64/版本信息.txt: -------------------------------------------------------------------------------- 1 | e5ce8523509e3d9c8f592dd29ba509a1 libitc_client.so.4.0 -------------------------------------------------------------------------------- /third_party/itc/readme.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/itc/readme.doc -------------------------------------------------------------------------------- /third_party/libsigc++-2.2.8/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/libsigc++-2.2.8/NEWS -------------------------------------------------------------------------------- /third_party/libsigc++-2.2.8/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/libsigc++-2.2.8/README -------------------------------------------------------------------------------- /third_party/libsigc++-2.2.8/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/libsigc++-2.2.8/TODO -------------------------------------------------------------------------------- /third_party/libtomcrypt/mycrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/libtomcrypt/mycrypt.h -------------------------------------------------------------------------------- /third_party/libtomcrypt/tommath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/libtomcrypt/tommath.h -------------------------------------------------------------------------------- /third_party/lua-5.1.4/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/lua-5.1.4/COPYRIGHT -------------------------------------------------------------------------------- /third_party/lua-5.1.4/HISTORY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/lua-5.1.4/HISTORY -------------------------------------------------------------------------------- /third_party/lua-5.1.4/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/lua-5.1.4/INSTALL -------------------------------------------------------------------------------- /third_party/lua-5.1.4/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/lua-5.1.4/README -------------------------------------------------------------------------------- /third_party/lua-5.1.4/bin/lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/lua-5.1.4/bin/lua -------------------------------------------------------------------------------- /third_party/lua-5.1.4/bin/luac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/lua-5.1.4/bin/luac -------------------------------------------------------------------------------- /third_party/lua-5.1.4/doc.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/lua-5.1.4/doc.zip -------------------------------------------------------------------------------- /third_party/lua-5.1.4/etc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/lua-5.1.4/etc/README -------------------------------------------------------------------------------- /third_party/lua-5.1.4/etc/all.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/lua-5.1.4/etc/all.c -------------------------------------------------------------------------------- /third_party/lua-5.1.4/etc/lua.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/lua-5.1.4/etc/lua.hpp -------------------------------------------------------------------------------- /third_party/lua-5.1.4/etc/lua.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/lua-5.1.4/etc/lua.ico -------------------------------------------------------------------------------- /third_party/lua-5.1.4/etc/lua.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/lua-5.1.4/etc/lua.pc -------------------------------------------------------------------------------- /third_party/lua-5.1.4/etc/min.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/lua-5.1.4/etc/min.c -------------------------------------------------------------------------------- /third_party/lua-5.1.4/lua.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/lua-5.1.4/lua.vcproj -------------------------------------------------------------------------------- /third_party/lua-5.1.4/src/lapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/lua-5.1.4/src/lapi.c -------------------------------------------------------------------------------- /third_party/lua-5.1.4/src/lapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/lua-5.1.4/src/lapi.h -------------------------------------------------------------------------------- /third_party/lua-5.1.4/src/lcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/lua-5.1.4/src/lcode.c -------------------------------------------------------------------------------- /third_party/lua-5.1.4/src/lcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/lua-5.1.4/src/lcode.h -------------------------------------------------------------------------------- /third_party/lua-5.1.4/src/ldblib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/lua-5.1.4/src/ldblib.c -------------------------------------------------------------------------------- /third_party/lua-5.1.4/src/ldebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/lua-5.1.4/src/ldebug.c -------------------------------------------------------------------------------- /third_party/lua-5.1.4/src/ldebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/lua-5.1.4/src/ldebug.h -------------------------------------------------------------------------------- /third_party/lua-5.1.4/src/ldo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/lua-5.1.4/src/ldo.c -------------------------------------------------------------------------------- /third_party/lua-5.1.4/src/ldo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/lua-5.1.4/src/ldo.h -------------------------------------------------------------------------------- /third_party/lua-5.1.4/src/ldump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/lua-5.1.4/src/ldump.c -------------------------------------------------------------------------------- /third_party/lua-5.1.4/src/lfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/lua-5.1.4/src/lfunc.c -------------------------------------------------------------------------------- /third_party/lua-5.1.4/src/lfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/lua-5.1.4/src/lfunc.h -------------------------------------------------------------------------------- /third_party/lua-5.1.4/src/lgc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/lua-5.1.4/src/lgc.c -------------------------------------------------------------------------------- /third_party/lua-5.1.4/src/lgc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/lua-5.1.4/src/lgc.h -------------------------------------------------------------------------------- /third_party/lua-5.1.4/src/linit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/lua-5.1.4/src/linit.c -------------------------------------------------------------------------------- /third_party/lua-5.1.4/src/liolib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/lua-5.1.4/src/liolib.c -------------------------------------------------------------------------------- /third_party/lua-5.1.4/src/llex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/lua-5.1.4/src/llex.c -------------------------------------------------------------------------------- /third_party/lua-5.1.4/src/llex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/lua-5.1.4/src/llex.h -------------------------------------------------------------------------------- /third_party/lua-5.1.4/src/lmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/lua-5.1.4/src/lmem.c -------------------------------------------------------------------------------- /third_party/lua-5.1.4/src/lmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/lua-5.1.4/src/lmem.h -------------------------------------------------------------------------------- /third_party/lua-5.1.4/src/loslib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/lua-5.1.4/src/loslib.c -------------------------------------------------------------------------------- /third_party/lua-5.1.4/src/lstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/lua-5.1.4/src/lstate.c -------------------------------------------------------------------------------- /third_party/lua-5.1.4/src/lstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/lua-5.1.4/src/lstate.h -------------------------------------------------------------------------------- /third_party/lua-5.1.4/src/ltable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/lua-5.1.4/src/ltable.c -------------------------------------------------------------------------------- /third_party/lua-5.1.4/src/ltable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/lua-5.1.4/src/ltable.h -------------------------------------------------------------------------------- /third_party/lua-5.1.4/src/ltm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/lua-5.1.4/src/ltm.c -------------------------------------------------------------------------------- /third_party/lua-5.1.4/src/ltm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/lua-5.1.4/src/ltm.h -------------------------------------------------------------------------------- /third_party/lua-5.1.4/src/lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/lua-5.1.4/src/lua -------------------------------------------------------------------------------- /third_party/lua-5.1.4/src/lua.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/lua-5.1.4/src/lua.c -------------------------------------------------------------------------------- /third_party/lua-5.1.4/src/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/lua-5.1.4/src/lua.h -------------------------------------------------------------------------------- /third_party/lua-5.1.4/src/luac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/lua-5.1.4/src/luac -------------------------------------------------------------------------------- /third_party/lua-5.1.4/src/luac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/lua-5.1.4/src/luac.c -------------------------------------------------------------------------------- /third_party/lua-5.1.4/src/lualib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/lua-5.1.4/src/lualib.h -------------------------------------------------------------------------------- /third_party/lua-5.1.4/src/lvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/lua-5.1.4/src/lvm.c -------------------------------------------------------------------------------- /third_party/lua-5.1.4/src/lvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/lua-5.1.4/src/lvm.h -------------------------------------------------------------------------------- /third_party/lua-5.1.4/src/lzio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/lua-5.1.4/src/lzio.c -------------------------------------------------------------------------------- /third_party/lua-5.1.4/src/lzio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/lua-5.1.4/src/lzio.h -------------------------------------------------------------------------------- /third_party/lua-5.1.4/src/print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/lua-5.1.4/src/print.c -------------------------------------------------------------------------------- /third_party/lua-5.1.4/test.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/lua-5.1.4/test.zip -------------------------------------------------------------------------------- /third_party/openssl-1.0.1/README: -------------------------------------------------------------------------------- 1 | ./config shared 2 | -------------------------------------------------------------------------------- /third_party/protobuf-2.5.0/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/protobuf-2.5.0/depcomp -------------------------------------------------------------------------------- /third_party/protobuf-2.5.0/gtest/build-aux/stamp-h1: -------------------------------------------------------------------------------- 1 | timestamp for build-aux/config.h 2 | -------------------------------------------------------------------------------- /third_party/protobuf-2.5.0/gtest/fused-src/gtest/.deps/test_fused_gtest_test-gtest-all.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /third_party/protobuf-2.5.0/gtest/fused-src/gtest/.deps/test_fused_gtest_test-gtest_main.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /third_party/protobuf-2.5.0/gtest/samples/.deps/sample1.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /third_party/protobuf-2.5.0/gtest/samples/.deps/sample10_unittest.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /third_party/protobuf-2.5.0/gtest/samples/.deps/sample1_unittest.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /third_party/protobuf-2.5.0/gtest/samples/.deps/sample2.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /third_party/protobuf-2.5.0/gtest/samples/.deps/sample4.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /third_party/protobuf-2.5.0/gtest/samples/.deps/test_fused_gtest_test-sample1.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /third_party/protobuf-2.5.0/gtest/samples/.deps/test_fused_gtest_test-sample1_unittest.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /third_party/protobuf-2.5.0/gtest/src/.deps/gtest-all.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /third_party/protobuf-2.5.0/gtest/src/.deps/gtest_main.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /third_party/protobuf-2.5.0/gtest/test/.deps/gtest_all_test.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /third_party/protobuf-2.5.0/libtool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/protobuf-2.5.0/libtool -------------------------------------------------------------------------------- /third_party/protobuf-2.5.0/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/protobuf-2.5.0/missing -------------------------------------------------------------------------------- /third_party/protobuf-2.5.0/python/google/protobuf/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/protobuf-2.5.0/python/google/protobuf/internal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/protobuf-2.5.0/src/.deps/protobuf_lazy_descriptor_test-cpp_test_bad_identifiers.pb.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /third_party/protobuf-2.5.0/src/.deps/protobuf_lazy_descriptor_test-cpp_unittest.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /third_party/protobuf-2.5.0/src/.deps/protobuf_lazy_descriptor_test-file.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /third_party/protobuf-2.5.0/src/.deps/protobuf_lazy_descriptor_test-googletest.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /third_party/protobuf-2.5.0/src/.deps/protobuf_lazy_descriptor_test-test_util.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /third_party/protobuf-2.5.0/src/.deps/protobuf_lazy_descriptor_test-unittest.pb.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /third_party/protobuf-2.5.0/src/.deps/protobuf_lazy_descriptor_test-unittest_custom_options.pb.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /third_party/protobuf-2.5.0/src/.deps/protobuf_lazy_descriptor_test-unittest_embed_optimize_for.pb.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /third_party/protobuf-2.5.0/src/.deps/protobuf_lazy_descriptor_test-unittest_empty.pb.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /third_party/protobuf-2.5.0/src/.deps/protobuf_lazy_descriptor_test-unittest_import.pb.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /third_party/protobuf-2.5.0/src/.deps/protobuf_lazy_descriptor_test-unittest_import_lite.pb.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /third_party/protobuf-2.5.0/src/.deps/protobuf_lazy_descriptor_test-unittest_import_public.pb.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /third_party/protobuf-2.5.0/src/.deps/protobuf_lazy_descriptor_test-unittest_import_public_lite.pb.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /third_party/protobuf-2.5.0/src/.deps/protobuf_lazy_descriptor_test-unittest_lite.pb.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /third_party/protobuf-2.5.0/src/.deps/protobuf_lazy_descriptor_test-unittest_lite_imports_nonlite.pb.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /third_party/protobuf-2.5.0/src/.deps/protobuf_lazy_descriptor_test-unittest_mset.pb.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /third_party/protobuf-2.5.0/src/.deps/protobuf_lazy_descriptor_test-unittest_no_generic_services.pb.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /third_party/protobuf-2.5.0/src/.deps/protobuf_lazy_descriptor_test-unittest_optimize_for.pb.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /third_party/protobuf-2.5.0/src/.deps/protobuf_lite_test-lite_unittest.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /third_party/protobuf-2.5.0/src/.deps/protobuf_lite_test-test_util_lite.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /third_party/protobuf-2.5.0/src/.deps/protobuf_lite_test-unittest_import_lite.pb.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /third_party/protobuf-2.5.0/src/.deps/protobuf_lite_test-unittest_import_public_lite.pb.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /third_party/protobuf-2.5.0/src/.deps/protobuf_lite_test-unittest_lite.pb.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /third_party/protobuf-2.5.0/src/.deps/protobuf_test-coded_stream_unittest.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /third_party/protobuf-2.5.0/src/.deps/protobuf_test-command_line_interface_unittest.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /third_party/protobuf-2.5.0/src/.deps/protobuf_test-common_unittest.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /third_party/protobuf-2.5.0/src/.deps/protobuf_test-cpp_bootstrap_unittest.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /third_party/protobuf-2.5.0/src/.deps/protobuf_test-cpp_plugin_unittest.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /third_party/protobuf-2.5.0/src/.deps/protobuf_test-cpp_test_bad_identifiers.pb.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /third_party/protobuf-2.5.0/src/.deps/protobuf_test-cpp_unittest.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /third_party/protobuf-2.5.0/src/.deps/protobuf_test-descriptor_database_unittest.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /third_party/protobuf-2.5.0/src/.deps/protobuf_test-descriptor_unittest.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /third_party/protobuf-2.5.0/src/.deps/protobuf_test-dynamic_message_unittest.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /third_party/protobuf-2.5.0/src/.deps/protobuf_test-extension_set_unittest.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /third_party/protobuf-2.5.0/src/.deps/protobuf_test-file.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /third_party/protobuf-2.5.0/src/.deps/protobuf_test-generated_message_reflection_unittest.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /third_party/protobuf-2.5.0/src/.deps/protobuf_test-googletest.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /third_party/protobuf-2.5.0/src/.deps/protobuf_test-importer_unittest.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /third_party/protobuf-2.5.0/src/.deps/protobuf_test-java_doc_comment_unittest.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /third_party/protobuf-2.5.0/src/.deps/protobuf_test-java_plugin_unittest.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /third_party/protobuf-2.5.0/src/.deps/protobuf_test-message_unittest.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /third_party/protobuf-2.5.0/src/.deps/protobuf_test-mock_code_generator.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /third_party/protobuf-2.5.0/src/.deps/protobuf_test-once_unittest.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /third_party/protobuf-2.5.0/src/.deps/protobuf_test-parser_unittest.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /third_party/protobuf-2.5.0/src/.deps/protobuf_test-printer_unittest.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /third_party/protobuf-2.5.0/src/.deps/protobuf_test-python_plugin_unittest.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /third_party/protobuf-2.5.0/src/.deps/protobuf_test-reflection_ops_unittest.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /third_party/protobuf-2.5.0/src/.deps/protobuf_test-repeated_field_reflection_unittest.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /third_party/protobuf-2.5.0/src/.deps/protobuf_test-repeated_field_unittest.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /third_party/protobuf-2.5.0/src/.deps/protobuf_test-stringprintf_unittest.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /third_party/protobuf-2.5.0/src/.deps/protobuf_test-structurally_valid_unittest.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /third_party/protobuf-2.5.0/src/.deps/protobuf_test-strutil_unittest.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /third_party/protobuf-2.5.0/src/.deps/protobuf_test-template_util_unittest.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /third_party/protobuf-2.5.0/src/.deps/protobuf_test-test_util.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /third_party/protobuf-2.5.0/src/.deps/protobuf_test-text_format_unittest.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /third_party/protobuf-2.5.0/src/.deps/protobuf_test-tokenizer_unittest.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /third_party/protobuf-2.5.0/src/.deps/protobuf_test-type_traits_unittest.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /third_party/protobuf-2.5.0/src/.deps/protobuf_test-unittest.pb.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /third_party/protobuf-2.5.0/src/.deps/protobuf_test-unittest_custom_options.pb.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /third_party/protobuf-2.5.0/src/.deps/protobuf_test-unittest_embed_optimize_for.pb.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /third_party/protobuf-2.5.0/src/.deps/protobuf_test-unittest_empty.pb.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /third_party/protobuf-2.5.0/src/.deps/protobuf_test-unittest_import.pb.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /third_party/protobuf-2.5.0/src/.deps/protobuf_test-unittest_import_lite.pb.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /third_party/protobuf-2.5.0/src/.deps/protobuf_test-unittest_import_public.pb.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /third_party/protobuf-2.5.0/src/.deps/protobuf_test-unittest_import_public_lite.pb.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /third_party/protobuf-2.5.0/src/.deps/protobuf_test-unittest_lite.pb.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /third_party/protobuf-2.5.0/src/.deps/protobuf_test-unittest_lite_imports_nonlite.pb.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /third_party/protobuf-2.5.0/src/.deps/protobuf_test-unittest_mset.pb.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /third_party/protobuf-2.5.0/src/.deps/protobuf_test-unittest_no_generic_services.pb.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /third_party/protobuf-2.5.0/src/.deps/protobuf_test-unittest_optimize_for.pb.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /third_party/protobuf-2.5.0/src/.deps/protobuf_test-unknown_field_set_unittest.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /third_party/protobuf-2.5.0/src/.deps/protobuf_test-wire_format_unittest.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /third_party/protobuf-2.5.0/src/.deps/protobuf_test-zero_copy_stream_unittest.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /third_party/protobuf-2.5.0/src/.deps/test_plugin-file.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /third_party/protobuf-2.5.0/src/.deps/test_plugin-mock_code_generator.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /third_party/protobuf-2.5.0/src/.deps/test_plugin-test_plugin.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /third_party/protobuf-2.5.0/src/.deps/zcgunzip.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /third_party/protobuf-2.5.0/src/.deps/zcgzip.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /third_party/protobuf-2.5.0/src/unittest_proto_middleman: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/protobuf-2.5.0/stamp-h1: -------------------------------------------------------------------------------- 1 | timestamp for config.h 2 | -------------------------------------------------------------------------------- /third_party/python/include/asdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/python/include/asdl.h -------------------------------------------------------------------------------- /third_party/python/include/ast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/python/include/ast.h -------------------------------------------------------------------------------- /third_party/python/include/ceval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/python/include/ceval.h -------------------------------------------------------------------------------- /third_party/python/include/code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/python/include/code.h -------------------------------------------------------------------------------- /third_party/python/include/dtoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/python/include/dtoa.h -------------------------------------------------------------------------------- /third_party/python/include/eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/python/include/eval.h -------------------------------------------------------------------------------- /third_party/python/include/node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/python/include/node.h -------------------------------------------------------------------------------- /third_party/python/include/pgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/python/include/pgen.h -------------------------------------------------------------------------------- /third_party/python/include/pyfpe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/python/include/pyfpe.h -------------------------------------------------------------------------------- /third_party/python/include/pymem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/python/include/pymem.h -------------------------------------------------------------------------------- /third_party/python/include/token.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/python/include/token.h -------------------------------------------------------------------------------- /third_party/tinyxml-2.6.1/docs.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/tinyxml-2.6.1/docs.zip -------------------------------------------------------------------------------- /third_party/tinyxml-2.6.1/echo.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/tinyxml-2.6.1/echo.dsp -------------------------------------------------------------------------------- /third_party/tolua++-1.0.93/.svnignore: -------------------------------------------------------------------------------- 1 | .sconsign.dblite 2 | -------------------------------------------------------------------------------- /third_party/tolua++-1.0.93/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/tolua++-1.0.93/INSTALL -------------------------------------------------------------------------------- /third_party/tolua++-1.0.93/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/tolua++-1.0.93/README -------------------------------------------------------------------------------- /third_party/tolua++-1.0.93/bin/.svnignore: -------------------------------------------------------------------------------- 1 | tolua++_bootstrap 2 | -------------------------------------------------------------------------------- /third_party/tolua++-1.0.93/doc.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/tolua++-1.0.93/doc.zip -------------------------------------------------------------------------------- /third_party/tolua++-1.0.93/src/bin/toluabind_default.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/tolua++-1.0.93/src/tests/tdirectivelua.lua: -------------------------------------------------------------------------------- 1 | function func () 2 | return 5 3 | end 4 | -------------------------------------------------------------------------------- /third_party/tolua++-1.0.93/src/tests/tdirectivepkg.pkg: -------------------------------------------------------------------------------- 1 | extern int a; 2 | 3 | -------------------------------------------------------------------------------- /third_party/zlib-1.2.4/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/zlib-1.2.4/ChangeLog -------------------------------------------------------------------------------- /third_party/zlib-1.2.4/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/zlib-1.2.4/FAQ -------------------------------------------------------------------------------- /third_party/zlib-1.2.4/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/zlib-1.2.4/INDEX -------------------------------------------------------------------------------- /third_party/zlib-1.2.4/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/zlib-1.2.4/README -------------------------------------------------------------------------------- /third_party/zlib-1.2.4/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/zlib-1.2.4/adler32.c -------------------------------------------------------------------------------- /third_party/zlib-1.2.4/amiga.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/zlib-1.2.4/amiga.zip -------------------------------------------------------------------------------- /third_party/zlib-1.2.4/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/zlib-1.2.4/compress.c -------------------------------------------------------------------------------- /third_party/zlib-1.2.4/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/zlib-1.2.4/configure -------------------------------------------------------------------------------- /third_party/zlib-1.2.4/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/zlib-1.2.4/crc32.c -------------------------------------------------------------------------------- /third_party/zlib-1.2.4/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/zlib-1.2.4/crc32.h -------------------------------------------------------------------------------- /third_party/zlib-1.2.4/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/zlib-1.2.4/deflate.c -------------------------------------------------------------------------------- /third_party/zlib-1.2.4/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/zlib-1.2.4/deflate.h -------------------------------------------------------------------------------- /third_party/zlib-1.2.4/doc.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/zlib-1.2.4/doc.zip -------------------------------------------------------------------------------- /third_party/zlib-1.2.4/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/zlib-1.2.4/example.c -------------------------------------------------------------------------------- /third_party/zlib-1.2.4/gzclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/zlib-1.2.4/gzclose.c -------------------------------------------------------------------------------- /third_party/zlib-1.2.4/gzguts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/zlib-1.2.4/gzguts.h -------------------------------------------------------------------------------- /third_party/zlib-1.2.4/gzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/zlib-1.2.4/gzlib.c -------------------------------------------------------------------------------- /third_party/zlib-1.2.4/gzread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/zlib-1.2.4/gzread.c -------------------------------------------------------------------------------- /third_party/zlib-1.2.4/gzwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/zlib-1.2.4/gzwrite.c -------------------------------------------------------------------------------- /third_party/zlib-1.2.4/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/zlib-1.2.4/infback.c -------------------------------------------------------------------------------- /third_party/zlib-1.2.4/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/zlib-1.2.4/inffast.c -------------------------------------------------------------------------------- /third_party/zlib-1.2.4/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/zlib-1.2.4/inffast.h -------------------------------------------------------------------------------- /third_party/zlib-1.2.4/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/zlib-1.2.4/inffixed.h -------------------------------------------------------------------------------- /third_party/zlib-1.2.4/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/zlib-1.2.4/inflate.c -------------------------------------------------------------------------------- /third_party/zlib-1.2.4/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/zlib-1.2.4/inflate.h -------------------------------------------------------------------------------- /third_party/zlib-1.2.4/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/zlib-1.2.4/inftrees.c -------------------------------------------------------------------------------- /third_party/zlib-1.2.4/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/zlib-1.2.4/inftrees.h -------------------------------------------------------------------------------- /third_party/zlib-1.2.4/minigzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/zlib-1.2.4/minigzip.c -------------------------------------------------------------------------------- /third_party/zlib-1.2.4/msdos.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/zlib-1.2.4/msdos.zip -------------------------------------------------------------------------------- /third_party/zlib-1.2.4/old.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/zlib-1.2.4/old.zip -------------------------------------------------------------------------------- /third_party/zlib-1.2.4/qnx.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/zlib-1.2.4/qnx.zip -------------------------------------------------------------------------------- /third_party/zlib-1.2.4/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/zlib-1.2.4/trees.c -------------------------------------------------------------------------------- /third_party/zlib-1.2.4/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/zlib-1.2.4/trees.h -------------------------------------------------------------------------------- /third_party/zlib-1.2.4/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/zlib-1.2.4/uncompr.c -------------------------------------------------------------------------------- /third_party/zlib-1.2.4/watcom.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/zlib-1.2.4/watcom.zip -------------------------------------------------------------------------------- /third_party/zlib-1.2.4/win32.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/zlib-1.2.4/win32.zip -------------------------------------------------------------------------------- /third_party/zlib-1.2.4/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/zlib-1.2.4/zconf.h -------------------------------------------------------------------------------- /third_party/zlib-1.2.4/zconf.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/zlib-1.2.4/zconf.h.in -------------------------------------------------------------------------------- /third_party/zlib-1.2.4/zlib.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/zlib-1.2.4/zlib.3 -------------------------------------------------------------------------------- /third_party/zlib-1.2.4/zlib.3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/zlib-1.2.4/zlib.3.pdf -------------------------------------------------------------------------------- /third_party/zlib-1.2.4/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/zlib-1.2.4/zlib.h -------------------------------------------------------------------------------- /third_party/zlib-1.2.4/zlib.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/zlib-1.2.4/zlib.map -------------------------------------------------------------------------------- /third_party/zlib-1.2.4/zlib.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/zlib-1.2.4/zlib.pc.in -------------------------------------------------------------------------------- /third_party/zlib-1.2.4/zlib2ansi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/zlib-1.2.4/zlib2ansi -------------------------------------------------------------------------------- /third_party/zlib-1.2.4/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/zlib-1.2.4/zutil.c -------------------------------------------------------------------------------- /third_party/zlib-1.2.4/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/third_party/zlib-1.2.4/zutil.h -------------------------------------------------------------------------------- /tools/.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/tools/.bashrc -------------------------------------------------------------------------------- /tools/.gdb/luagdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/tools/.gdb/luagdb -------------------------------------------------------------------------------- /tools/.gdbinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/tools/.gdbinit -------------------------------------------------------------------------------- /tools/.svnignore: -------------------------------------------------------------------------------- 1 | AutoRun.sh 2 | InstallConfig.sh 3 | -------------------------------------------------------------------------------- /tools/.vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/tools/.vimrc -------------------------------------------------------------------------------- /tools/AssertAnalyze.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/tools/AssertAnalyze.sh -------------------------------------------------------------------------------- /tools/AutoDownloadLog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/tools/AutoDownloadLog.sh -------------------------------------------------------------------------------- /tools/AutoRun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/tools/AutoRun.sh -------------------------------------------------------------------------------- /tools/AutoRunAdmin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/tools/AutoRunAdmin.sh -------------------------------------------------------------------------------- /tools/AutoTools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/tools/AutoTools.sh -------------------------------------------------------------------------------- /tools/AutoUpload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/tools/AutoUpload.sh -------------------------------------------------------------------------------- /tools/ClientResTools.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/tools/ClientResTools.bat -------------------------------------------------------------------------------- /tools/InstallConfig.sh.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/tools/InstallConfig.sh.example -------------------------------------------------------------------------------- /tools/Log.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/tools/Log.sh -------------------------------------------------------------------------------- /tools/LogAnalyze.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/tools/LogAnalyze.sh -------------------------------------------------------------------------------- /tools/MonitorSystem.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/tools/MonitorSystem.sh -------------------------------------------------------------------------------- /tools/Run.sh.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/tools/Run.sh.example -------------------------------------------------------------------------------- /tools/SetNetDelay.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/tools/SetNetDelay.sh -------------------------------------------------------------------------------- /tools/UserDataOperate.py.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/tools/UserDataOperate.py.example -------------------------------------------------------------------------------- /tools/cinclude2dot.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/tools/cinclude2dot.pl -------------------------------------------------------------------------------- /tools/dayData.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/tools/dayData.sh -------------------------------------------------------------------------------- /tools/dumpSqlToCSV.sql.exmple: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/tools/dumpSqlToCSV.sql.exmple -------------------------------------------------------------------------------- /tools/freshSVNIgnore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/tools/freshSVNIgnore.sh -------------------------------------------------------------------------------- /tools/gdbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/tools/gdbc -------------------------------------------------------------------------------- /tools/gencode.py.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/tools/gencode.py.example -------------------------------------------------------------------------------- /tools/initNewMode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/tools/initNewMode.sh -------------------------------------------------------------------------------- /tools/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/tools/install.sh -------------------------------------------------------------------------------- /tools/newGameMode.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/tools/newGameMode.txt -------------------------------------------------------------------------------- /tools/privilege.sql.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/tools/privilege.sql.example -------------------------------------------------------------------------------- /tools/readSqlData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/tools/readSqlData.py -------------------------------------------------------------------------------- /tools/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/tools/release.sh -------------------------------------------------------------------------------- /tools/sedFile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/tools/sedFile.sh -------------------------------------------------------------------------------- /tools/serverVersionTools.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/tools/serverVersionTools.zip -------------------------------------------------------------------------------- /tools/updateVersion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/tools/updateVersion.py -------------------------------------------------------------------------------- /tools/upload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/tools/upload.sh -------------------------------------------------------------------------------- /tools/vim/a.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/tools/vim/a.vim -------------------------------------------------------------------------------- /tools/vim/cscope_maps.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/tools/vim/cscope_maps.vim -------------------------------------------------------------------------------- /tools/zonelist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/tools/zonelist.txt -------------------------------------------------------------------------------- /tools/zonemanage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/tools/zonemanage.py -------------------------------------------------------------------------------- /zoneServer/Mail/zoMailService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/zoneServer/Mail/zoMailService.cpp -------------------------------------------------------------------------------- /zoneServer/zoConfigService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/zoneServer/zoConfigService.cpp -------------------------------------------------------------------------------- /zoneServer/zoConfigService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/zoneServer/zoConfigService.h -------------------------------------------------------------------------------- /zoneServer/zoGatewayConn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/zoneServer/zoGatewayConn.cpp -------------------------------------------------------------------------------- /zoneServer/zoGatewayConn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/zoneServer/zoGatewayConn.h -------------------------------------------------------------------------------- /zoneServer/zoIDPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/zoneServer/zoIDPool.cpp -------------------------------------------------------------------------------- /zoneServer/zoIDPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/zoneServer/zoIDPool.h -------------------------------------------------------------------------------- /zoneServer/zoLogicConn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/zoneServer/zoLogicConn.cpp -------------------------------------------------------------------------------- /zoneServer/zoLogicConn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/zoneServer/zoLogicConn.h -------------------------------------------------------------------------------- /zoneServer/zoLoginService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/zoneServer/zoLoginService.cpp -------------------------------------------------------------------------------- /zoneServer/zoLoginService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/zoneServer/zoLoginService.h -------------------------------------------------------------------------------- /zoneServer/zoLoginSession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/zoneServer/zoLoginSession.cpp -------------------------------------------------------------------------------- /zoneServer/zoLoginSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/zoneServer/zoLoginSession.h -------------------------------------------------------------------------------- /zoneServer/zoLoginSessionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/zoneServer/zoLoginSessionManager.h -------------------------------------------------------------------------------- /zoneServer/zoMailService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/zoneServer/zoMailService.h -------------------------------------------------------------------------------- /zoneServer/zoMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/zoneServer/zoMap.cpp -------------------------------------------------------------------------------- /zoneServer/zoMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/zoneServer/zoMap.h -------------------------------------------------------------------------------- /zoneServer/zoMapService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/zoneServer/zoMapService.cpp -------------------------------------------------------------------------------- /zoneServer/zoMapService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/zoneServer/zoMapService.h -------------------------------------------------------------------------------- /zoneServer/zoMessageService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/zoneServer/zoMessageService.cpp -------------------------------------------------------------------------------- /zoneServer/zoMessageService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/zoneServer/zoMessageService.h -------------------------------------------------------------------------------- /zoneServer/zoMonitorService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/zoneServer/zoMonitorService.h -------------------------------------------------------------------------------- /zoneServer/zoParseForward.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/zoneServer/zoParseForward.cpp -------------------------------------------------------------------------------- /zoneServer/zoParseProtoUser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/zoneServer/zoParseProtoUser.cpp -------------------------------------------------------------------------------- /zoneServer/zoParseProtocol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/zoneServer/zoParseProtocol.cpp -------------------------------------------------------------------------------- /zoneServer/zoParseSerialize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/zoneServer/zoParseSerialize.cpp -------------------------------------------------------------------------------- /zoneServer/zoParseServerRun.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/zoneServer/zoParseServerRun.cpp -------------------------------------------------------------------------------- /zoneServer/zoScheduleService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/zoneServer/zoScheduleService.h -------------------------------------------------------------------------------- /zoneServer/zoScriptService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/zoneServer/zoScriptService.h -------------------------------------------------------------------------------- /zoneServer/zoServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/zoneServer/zoServer.cpp -------------------------------------------------------------------------------- /zoneServer/zoServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/zoneServer/zoServer.h -------------------------------------------------------------------------------- /zoneServer/zoSsqls.cpp: -------------------------------------------------------------------------------- 1 | #include "zoneServer/zoSsqlsData.h" 2 | -------------------------------------------------------------------------------- /zoneServer/zoSsqls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/zoneServer/zoSsqls.h -------------------------------------------------------------------------------- /zoneServer/zoSsqlsData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/zoneServer/zoSsqlsData.h -------------------------------------------------------------------------------- /zoneServer/zoTaskConn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/zoneServer/zoTaskConn.cpp -------------------------------------------------------------------------------- /zoneServer/zoTaskConn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/zoneServer/zoTaskConn.h -------------------------------------------------------------------------------- /zoneServer/zoUser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/zoneServer/zoUser.cpp -------------------------------------------------------------------------------- /zoneServer/zoUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/zoneServer/zoUser.h -------------------------------------------------------------------------------- /zoneServer/zoUserService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/zoneServer/zoUserService.cpp -------------------------------------------------------------------------------- /zoneServer/zoUserService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AtlasWing/GameServerFramework/HEAD/zoneServer/zoUserService.h --------------------------------------------------------------------------------