├── .editorconfig ├── .gitattributes ├── .github └── workflows │ └── build.yml ├── .gitignore ├── .gitmodules ├── .idea ├── .gitignore ├── .name ├── ZHMModSDK.iml ├── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml ├── deno.xml ├── editor.xml ├── misc.xml ├── modules.xml ├── runConfigurations │ └── Deno__editor_client_test_ts.xml └── vcs.xml ├── CMakeLists.txt ├── CMakePresets.json ├── CMakeUserPresets.json-epic_sample ├── CMakeUserPresets.json-steam_sample ├── DirectInputProxy ├── CMakeLists.txt └── Src │ └── DirectInputProxy.cpp ├── External └── RakNet │ ├── .gitignore │ ├── 3.x_to_4.x_upgrade.txt │ ├── CMakeLists.txt │ ├── CmakeIncludes │ ├── CmakeMacros.txt │ ├── FindBoost.cmake │ ├── FindFMODEx.cmake │ ├── FindIrrKlang.cmake │ ├── FindIrrlicht.cmake │ ├── FindMacros.txt │ ├── FindMySQL.cmake │ ├── FindPortAudio.cmake │ ├── FindPostgreSQL.cmake │ ├── FindSpeex.cmake │ ├── FindSpeexDSP.cmake │ └── Ogre3D │ │ ├── FindOGRE.cmake │ │ ├── FindOIS.cmake │ │ ├── FindPkgMacros.cmake │ │ └── PreprocessorUtils.cmake │ ├── DependentExtensions │ ├── Autopatcher │ │ ├── ApplyPatch.cpp │ │ ├── ApplyPatch.h │ │ ├── AutopatcherClient.cpp │ │ ├── AutopatcherClient.h │ │ ├── AutopatcherMySQLRepository │ │ │ ├── AutopatcherMySQLRepository.cpp │ │ │ ├── AutopatcherMySQLRepository.h │ │ │ ├── AutopatcherMySQLRepository.vcproj │ │ │ ├── CMakeLists.txt │ │ │ ├── FindMySQL.cmake │ │ │ └── readme.txt │ │ ├── AutopatcherPostgreRepository │ │ │ ├── AutopatcherPostgreRepository.cpp │ │ │ ├── AutopatcherPostgreRepository.h │ │ │ ├── AutopatcherPostgreRepository.vcproj │ │ │ ├── AutopatcherPostgreRepository_vc8.vcproj │ │ │ ├── AutopatcherPostgreRepository_vc9.vcproj │ │ │ ├── CMakeLists.txt │ │ │ └── Readme.txt │ │ ├── AutopatcherServer.cpp │ │ ├── AutopatcherServer.h │ │ ├── CMakeLists.txt │ │ ├── CreatePatch.cpp │ │ ├── CreatePatch.h │ │ ├── MemoryCompressor.cpp │ │ └── MemoryCompressor.h │ ├── CMakeLists.txt │ ├── DXTCompressor │ │ ├── DXTCompressor.sln │ │ ├── DXTCompressor.vcproj │ │ ├── External │ │ │ ├── include │ │ │ │ ├── Cg │ │ │ │ │ ├── cg.h │ │ │ │ │ ├── cgD3D10.h │ │ │ │ │ ├── cgD3D8.h │ │ │ │ │ ├── cgD3D9.h │ │ │ │ │ ├── cgGL.h │ │ │ │ │ ├── cgGL_profiles.h │ │ │ │ │ ├── cg_bindlocations.h │ │ │ │ │ ├── cg_datatypes.h │ │ │ │ │ ├── cg_enums.h │ │ │ │ │ ├── cg_errors.h │ │ │ │ │ └── cg_profiles.h │ │ │ │ ├── GL │ │ │ │ │ ├── glew.h │ │ │ │ │ ├── glext.h │ │ │ │ │ └── glut.h │ │ │ │ ├── png.h │ │ │ │ ├── pngconf.h │ │ │ │ ├── zconf.h │ │ │ │ └── zlib.h │ │ │ └── lib │ │ │ │ ├── cg.lib │ │ │ │ ├── cgD3D10.lib │ │ │ │ ├── cgD3D8.lib │ │ │ │ ├── cgD3D9.lib │ │ │ │ ├── cgGL.lib │ │ │ │ ├── glew32.lib │ │ │ │ ├── glut32.lib │ │ │ │ └── glutstatic.lib │ │ ├── Src │ │ │ ├── DDSHeader.h │ │ │ ├── DXTCompressor.cpp │ │ │ ├── DXTCompressor.h │ │ │ ├── FrameBufferRenderBuffer.hpp │ │ │ ├── OpenGLWindow.hpp │ │ │ ├── ShaderSource.h │ │ │ └── main.cpp │ │ ├── cg.dll │ │ ├── cgGL.dll │ │ ├── glew32.dll │ │ └── glut32.dll │ ├── GFx3 │ │ ├── FxGameDelegate.cpp │ │ └── FxGameDelegate.h │ ├── IrrlichtDemo │ │ ├── CDemo.cpp │ │ ├── CDemo.h │ │ ├── CMainMenu.cpp │ │ ├── CMainMenu.h │ │ ├── CMakeLists.txt │ │ ├── Irrlicht.dll │ │ ├── Irrlicht.exp │ │ ├── Irrlicht.lib │ │ ├── IrrlichtDemo.v8.vcproj │ │ ├── IrrlichtMedia │ │ │ ├── IrrlichtTheme.ogg │ │ │ ├── ball.wav │ │ │ ├── fireball.bmp │ │ │ ├── fonthaettenschweiler.bmp │ │ │ ├── impact.wav │ │ │ ├── irrlicht.dat │ │ │ ├── irrlicht2_bk.jpg │ │ │ ├── irrlicht2_dn.jpg │ │ │ ├── irrlicht2_ft.jpg │ │ │ ├── irrlicht2_lf.jpg │ │ │ ├── irrlicht2_rt.jpg │ │ │ ├── irrlicht2_up.jpg │ │ │ ├── irrlichtlogo2.png │ │ │ ├── map-20kdm2.pk3 │ │ │ ├── particlewhite.bmp │ │ │ ├── portal1.bmp │ │ │ ├── portal2.bmp │ │ │ ├── portal3.bmp │ │ │ ├── portal4.bmp │ │ │ ├── portal5.bmp │ │ │ ├── portal6.bmp │ │ │ ├── portal7.bmp │ │ │ ├── smoke.bmp │ │ │ ├── sydney.bmp │ │ │ └── sydney.md2 │ │ ├── RakNetStuff.cpp │ │ ├── RakNetStuff.h │ │ ├── demo.layout │ │ ├── icon.ico │ │ ├── irrKlang-1.1.3 │ │ │ ├── ik_ESoundEngineOptions.h │ │ │ ├── ik_ESoundOutputDrivers.h │ │ │ ├── ik_EStreamModes.h │ │ │ ├── ik_IAudioRecorder.h │ │ │ ├── ik_IAudioStream.h │ │ │ ├── ik_IAudioStreamLoader.h │ │ │ ├── ik_IFileFactory.h │ │ │ ├── ik_IFileReader.h │ │ │ ├── ik_IRefCounted.h │ │ │ ├── ik_ISound.h │ │ │ ├── ik_ISoundDeviceList.h │ │ │ ├── ik_ISoundEffectControl.h │ │ │ ├── ik_ISoundEngine.h │ │ │ ├── ik_ISoundSource.h │ │ │ ├── ik_ISoundStopEventReceiver.h │ │ │ ├── ik_IVirtualRefCounted.h │ │ │ ├── ik_SAudioStreamFormat.h │ │ │ ├── ik_irrKlangTypes.h │ │ │ ├── ik_vec3d.h │ │ │ ├── irrKlang.exp │ │ │ ├── irrKlang.h │ │ │ └── irrKlang.lib │ │ ├── irrKlang.dll │ │ ├── main.cpp │ │ ├── readme.txt │ │ ├── resource.h │ │ └── resscript.rc │ ├── Lobby2 │ │ ├── LibVoice │ │ │ ├── LibVoice.cpp │ │ │ └── LibVoice.h │ │ ├── Lobby2Client.cpp │ │ ├── Lobby2Client.h │ │ ├── Lobby2Message.cpp │ │ ├── Lobby2Message.h │ │ ├── Lobby2Plugin.cpp │ │ ├── Lobby2Plugin.h │ │ ├── Lobby2Presence.cpp │ │ ├── Lobby2Presence.h │ │ ├── Lobby2ResultCode.cpp │ │ ├── Lobby2ResultCode.h │ │ ├── Lobby2Server.cpp │ │ ├── Lobby2Server.h │ │ ├── PGSQL │ │ │ ├── Lobby2Message_PGSQL.cpp │ │ │ ├── Lobby2Message_PGSQL.h │ │ │ ├── Lobby2Server_PGSQL.cpp │ │ │ └── Lobby2Server_PGSQL.h │ │ ├── Rooms │ │ │ ├── IntervalTimer.cpp │ │ │ ├── IntervalTimer.h │ │ │ ├── ProfanityFilter.cpp │ │ │ ├── ProfanityFilter.h │ │ │ ├── RoomTypes.cpp │ │ │ ├── RoomTypes.h │ │ │ ├── RoomsContainer.cpp │ │ │ ├── RoomsContainer.h │ │ │ ├── RoomsErrorCodes.cpp │ │ │ ├── RoomsErrorCodes.h │ │ │ ├── RoomsPlugin.cpp │ │ │ └── RoomsPlugin.h │ │ └── Steam │ │ │ ├── Lobby2Client_Steam.cpp │ │ │ ├── Lobby2Client_Steam.h │ │ │ ├── Lobby2Client_Steam_Impl.cpp │ │ │ ├── Lobby2Client_Steam_Impl.h │ │ │ ├── Lobby2Message_Steam.cpp │ │ │ ├── Lobby2Message_Steam.h │ │ │ └── steamconsole.vcproj │ ├── Marmalade │ │ ├── RakNet.mkb │ │ └── RakNet.mkf │ ├── MySQLInterface │ │ ├── CMakeLists.txt │ │ ├── MySQLInterface.cpp │ │ └── MySQLInterface.h │ ├── Ogre3DInterpDemo │ │ ├── App3D.cpp │ │ ├── App3D.h │ │ ├── AppInterface.cpp │ │ ├── AppInterface.h │ │ ├── AppTypes.h │ │ ├── CMakeLists.txt │ │ ├── FSM.cpp │ │ ├── FSM.h │ │ ├── Ogre3DInterpDemo.vcproj │ │ ├── OgreResources │ │ │ ├── KernelTexture.dds │ │ │ ├── OgreCore.zip │ │ │ ├── OgreMeshUpgrade.exe │ │ │ ├── PopcornKernel.material │ │ │ ├── PopcornKernel.max │ │ │ ├── PopcornKernel.mesh │ │ │ ├── PopcornPopped.material │ │ │ ├── PopcornPopped.max │ │ │ ├── PopcornPopped.mesh │ │ │ ├── PoppedTexture.dds │ │ │ ├── SkyBox.material │ │ │ ├── UpgradeMesh.bat │ │ │ └── skybox.zip │ │ ├── OverlayHelper.cpp │ │ ├── OverlayHelper.h │ │ ├── Plugins.cfg │ │ ├── PluginsDebug.cfg │ │ ├── PluginsDebugL.cfg │ │ ├── PluginsL.cfg │ │ ├── RunnableState.cpp │ │ ├── RunnableState.h │ │ ├── State.cpp │ │ ├── State.h │ │ ├── TransformationHistory.cpp │ │ ├── TransformationHistory.h │ │ ├── WinMain.cpp │ │ ├── readme.txt │ │ └── resources.cfg │ ├── PatchTest │ │ ├── PatchTest.sln │ │ ├── PatchTest.vcproj │ │ ├── PatchTest_vc8.sln │ │ ├── PatchTest_vc8.vcproj │ │ ├── PatchTest_vc9.vcproj │ │ └── main.cpp │ ├── PostgreSQLInterface │ │ ├── CMakeLists.txt │ │ ├── PostgreSQLInterface.cpp │ │ └── PostgreSQLInterface.h │ ├── RPC3 │ │ ├── CMakeLists.txt │ │ ├── RPC3.cpp │ │ ├── RPC3.h │ │ └── RPC3_Boost.h │ ├── Rackspace │ │ ├── Rackspace2.cpp │ │ └── Rackspace2.h │ ├── RakVoice.cpp │ ├── RakVoice.h │ ├── SQLImageBuffer │ │ ├── SQLImageBuffer.vcproj │ │ └── main.cpp │ ├── SQLite3Plugin │ │ ├── Logger │ │ │ ├── ClientOnly │ │ │ │ ├── Optional │ │ │ │ │ ├── DX9_BackbufferGrabber.cpp │ │ │ │ │ ├── DX9_BackbufferGrabber.h │ │ │ │ │ ├── Ogre3D_DX9_BackbufferGrabber.cpp │ │ │ │ │ ├── Ogre3D_DX9_BackbufferGrabber.h │ │ │ │ │ ├── SQLiteClientLogger_PacketLogger.cpp │ │ │ │ │ ├── SQLiteClientLogger_PacketLogger.h │ │ │ │ │ ├── SQLiteClientLogger_RNSLogger.cpp │ │ │ │ │ └── SQLiteClientLogger_RNSLogger.h │ │ │ │ ├── SQLiteClientLoggerPlugin.cpp │ │ │ │ ├── SQLiteClientLoggerPlugin.h │ │ │ │ └── Samples │ │ │ │ │ ├── D3D9 │ │ │ │ │ ├── DXUT │ │ │ │ │ │ └── Optional │ │ │ │ │ │ │ └── directx.ico │ │ │ │ │ ├── Matrices.cpp │ │ │ │ │ ├── Matrices.manifest │ │ │ │ │ ├── Matrices.rc │ │ │ │ │ ├── Matrices_2005.sln │ │ │ │ │ ├── Matrices_2005.vcproj │ │ │ │ │ ├── Matrices_2008.sln │ │ │ │ │ ├── Matrices_2008.vcproj │ │ │ │ │ ├── Tut03_Matrices.jpg │ │ │ │ │ ├── readme.txt │ │ │ │ │ └── resource.h │ │ │ │ │ ├── Ogre3D │ │ │ │ │ ├── BspCollision.cpp │ │ │ │ │ ├── BspCollision_vc8.vcproj │ │ │ │ │ └── BspCollision_vc9.vcproj │ │ │ │ │ └── Simple │ │ │ │ │ ├── SQLiteClientLogger.vcproj │ │ │ │ │ └── SQLiteClientLoggerSample.cpp │ │ │ ├── SQLiteLoggerCommon.cpp │ │ │ ├── SQLiteLoggerCommon.h │ │ │ └── ServerOnly │ │ │ │ ├── SQLiteServerLogger.vcproj │ │ │ │ ├── SQLiteServerLoggerPlugin.cpp │ │ │ │ ├── SQLiteServerLoggerPlugin.h │ │ │ │ ├── SQLiteServerLoggerSample.cpp │ │ │ │ ├── jpeg_memory_dest.cpp │ │ │ │ └── jpeg_memory_dest.h │ │ ├── SQLite3ClientPlugin.cpp │ │ ├── SQLite3ClientPlugin.h │ │ ├── SQLite3Plugin.vcproj │ │ ├── SQLite3PluginCommon.cpp │ │ ├── SQLite3PluginCommon.h │ │ ├── SQLite3Sample.cpp │ │ ├── SQLite3ServerPlugin.cpp │ │ ├── SQLite3ServerPlugin.h │ │ ├── readme.txt │ │ ├── sqlite3.c │ │ ├── sqlite3.h │ │ └── sqlite3ext.h │ ├── Swig │ │ ├── DLL_Swig │ │ │ ├── PostBuildDebug.bat │ │ │ ├── PostBuildRelease.bat │ │ │ ├── PreBuild.bat │ │ │ ├── RakNet.sln │ │ │ ├── RakNet.vcproj │ │ │ └── ReadMe.txt │ │ ├── InternalSwigItems │ │ │ ├── CopyFilesToInternalProject.bat │ │ │ ├── InternalSwigDLLBuildAndCopy.bat │ │ │ └── InternalSwigWindowsCSharpSample │ │ │ │ ├── InternalSwigTestApp.sln │ │ │ │ └── InternalSwigTestApp │ │ │ │ ├── CallBacksAndSubclasses │ │ │ │ ├── FileListTransferCB.cs │ │ │ │ ├── TestNetworkIDObjectSubClass.cs │ │ │ │ ├── UDPProxyClientResultHandlerCB.cs │ │ │ │ └── UDPProxyServerResultHandlerCB.cs │ │ │ │ ├── InternalSwigTestApp.csproj │ │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── SwigFiles │ │ │ │ ├── AddressOrGUID.cs │ │ │ │ ├── BitStream.cs │ │ │ │ ├── ByteQueue.cs │ │ │ │ ├── Cell.cs │ │ │ │ ├── ColumnDescriptor.cs │ │ │ │ ├── CommandParserInterface.cs │ │ │ │ ├── ConnectionAttemptResult.cs │ │ │ │ ├── ConnectionGraph2.cs │ │ │ │ ├── ConnectionState.cs │ │ │ │ ├── DefaultMessageIDTypes.cs │ │ │ │ ├── DirectoryDeltaTransfer.cs │ │ │ │ ├── DownloadCompleteStruct.cs │ │ │ │ ├── FLP_Printf.cs │ │ │ │ ├── FileList.cs │ │ │ │ ├── FileListNode.cs │ │ │ │ ├── FileListNodeContext.cs │ │ │ │ ├── FileListProgress.cs │ │ │ │ ├── FileListTransfer.cs │ │ │ │ ├── FileListTransferCBInterface.cs │ │ │ │ ├── FileProgressStruct.cs │ │ │ │ ├── FilterQuery.cs │ │ │ │ ├── FullyConnectedMesh2.cs │ │ │ │ ├── IncrementalReadInterface.cs │ │ │ │ ├── JoinTeamType.cs │ │ │ │ ├── LogCommandParser.cs │ │ │ │ ├── MessageFilter.cs │ │ │ │ ├── MultilistType.cs │ │ │ │ ├── NatPunchthroughClient.cs │ │ │ │ ├── NatPunchthroughDebugInterface.cs │ │ │ │ ├── NatPunchthroughDebugInterface_PacketLogger.cs │ │ │ │ ├── NatPunchthroughDebugInterface_Printf.cs │ │ │ │ ├── NatPunchthroughServer.cs │ │ │ │ ├── NatPunchthroughServerDebugInterface.cs │ │ │ │ ├── NatPunchthroughServerDebugInterface_PacketLogger.cs │ │ │ │ ├── NatPunchthroughServerDebugInterface_Printf.cs │ │ │ │ ├── NatTypeDetectionClient.cs │ │ │ │ ├── NatTypeDetectionServer.cs │ │ │ │ ├── NetworkIDManager.cs │ │ │ │ ├── NetworkIDObject.cs │ │ │ │ ├── OnFileStruct.cs │ │ │ │ ├── OutOfBandIdentifiers.cs │ │ │ │ ├── Packet.cs │ │ │ │ ├── PacketConsoleLogger.cs │ │ │ │ ├── PacketFileLogger.cs │ │ │ │ ├── PacketLogger.cs │ │ │ │ ├── PacketPriority.cs │ │ │ │ ├── PacketReliability.cs │ │ │ │ ├── PluginInterface2.cs │ │ │ │ ├── PluginReceiveResult.cs │ │ │ │ ├── PublicKey.cs │ │ │ │ ├── PublicKeyMode.cs │ │ │ │ ├── PunchthroughConfiguration.cs │ │ │ │ ├── RNSPerSecondMetrics.cs │ │ │ │ ├── RakNet.cs │ │ │ │ ├── RakNetBPlusTreeRow.cs │ │ │ │ ├── RakNetGUID.cs │ │ │ │ ├── RakNetListCell.cs │ │ │ │ ├── RakNetListCellPointer.cs │ │ │ │ ├── RakNetListColumnDescriptor.cs │ │ │ │ ├── RakNetListFileListNode.cs │ │ │ │ ├── RakNetListFilterQuery.cs │ │ │ │ ├── RakNetListRakNetGUID.cs │ │ │ │ ├── RakNetListRakString.cs │ │ │ │ ├── RakNetListSortQuery.cs │ │ │ │ ├── RakNetListSystemAddress.cs │ │ │ │ ├── RakNetListTableRow.cs │ │ │ │ ├── RakNetListUnsignedInt.cs │ │ │ │ ├── RakNetListUnsignedShort.cs │ │ │ │ ├── RakNetPINVOKE.cs │ │ │ │ ├── RakNetPageRow.cs │ │ │ │ ├── RakNetSocket.cs │ │ │ │ ├── RakNetStatistics.cs │ │ │ │ ├── RakPeer.cs │ │ │ │ ├── RakPeerInterface.cs │ │ │ │ ├── RakString.cs │ │ │ │ ├── ReadyEvent.cs │ │ │ │ ├── ReadyEventSystemStatus.cs │ │ │ │ ├── RemoteSystemIndex.cs │ │ │ │ ├── Router2.cs │ │ │ │ ├── Router2DebugInterface.cs │ │ │ │ ├── Row.cs │ │ │ │ ├── SWIGTYPE_p_DataStructures__ListT_RakNet__TM_TeamMember_p_t.cs │ │ │ │ ├── SWIGTYPE_p_DataStructures__ListT_RakNet__TM_Team_p_t.cs │ │ │ │ ├── SWIGTYPE_p_RakNet__TM_World__JoinRequestHelper.cs │ │ │ │ ├── SWIGTYPE_p_bool.cs │ │ │ │ ├── SWIGTYPE_p_double.cs │ │ │ │ ├── SWIGTYPE_p_p_RakNet__TM_Team.cs │ │ │ │ ├── SWIGTYPE_p_p_RakNet__TM_TeamMember.cs │ │ │ │ ├── SWIGTYPE_p_p_RakNet__TM_World.cs │ │ │ │ ├── SWIGTYPE_p_unsigned_char.cs │ │ │ │ ├── SWIGTYPE_p_unsigned_int.cs │ │ │ │ ├── SWIGTYPE_p_unsigned_long_long.cs │ │ │ │ ├── SWIGTYPE_p_unsigned_short.cs │ │ │ │ ├── SWIGTYPE_p_void.cs │ │ │ │ ├── SWIGTYPE_p_wchar_t.cs │ │ │ │ ├── SimpleMutex.cs │ │ │ │ ├── SocketDescriptor.cs │ │ │ │ ├── SortQuery.cs │ │ │ │ ├── StartupResult.cs │ │ │ │ ├── SystemAddress.cs │ │ │ │ ├── TMTopology.cs │ │ │ │ ├── TM_Team.cs │ │ │ │ ├── TM_TeamMember.cs │ │ │ │ ├── TM_World.cs │ │ │ │ ├── Table.cs │ │ │ │ ├── TeamManager.cs │ │ │ │ ├── TeamSelection.cs │ │ │ │ ├── ThreadsafePacketLogger.cs │ │ │ │ ├── TransportInterface.cs │ │ │ │ ├── UDPForwarder.cs │ │ │ │ ├── UDPForwarderResult.cs │ │ │ │ ├── UDPProxyClient.cs │ │ │ │ ├── UDPProxyClientResultHandler.cs │ │ │ │ ├── UDPProxyCoordinator.cs │ │ │ │ ├── UDPProxyServer.cs │ │ │ │ ├── UDPProxyServerResultHandler.cs │ │ │ │ ├── UnsignedIntPointer.cs │ │ │ │ ├── UnsignedShortPointer.cs │ │ │ │ └── uint24_t.cs │ │ │ │ └── TestMain.cs │ │ ├── MakeSwig.bat │ │ ├── MakeSwig.sh │ │ ├── MakeSwigWithExtras.bat │ │ ├── MakeSwigWithExtras.sh │ │ ├── SwigInterfaceFiles │ │ │ ├── RakNet.i │ │ │ ├── RakNetCSharpCPlusIncludes.i │ │ │ ├── RakNetCSharpExtends.i │ │ │ ├── RakNetCSharpIgnores.i │ │ │ ├── RakNetCSharpMethodModifiers.i │ │ │ ├── RakNetCSharpPreprocessor.i │ │ │ ├── RakNetCSharpRenames.i │ │ │ ├── RakNetCSharpSwigIncludes.i │ │ │ ├── RakNetCSharpTemplateDefines.i │ │ │ ├── RakNetCSharpTypeMaps.i │ │ │ ├── RakNetStructsAndClasses.i │ │ │ ├── RakNetSwigMacros.i │ │ │ └── arrays_csharp.i │ │ └── SwigWindowsCSharpSample │ │ │ ├── SwigTestApp.sln │ │ │ └── SwigTestApp │ │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ │ ├── SwigTestApp.csproj │ │ │ └── TestMain.cs │ ├── THIRDPARTYLICENSES │ ├── WinPhone8 │ │ ├── Microsoft Permissive License.rtf │ │ ├── ThreadEmulation.cpp │ │ └── ThreadEmulation.h │ ├── WinRT │ │ ├── WinRTSockAddr.h │ │ ├── WinRTSocketAdapter.cpp │ │ └── WinRTSocketAdapter.h │ ├── XML │ │ ├── CMakeLists.txt │ │ ├── xmlParser.cpp │ │ └── xmlParser.h │ ├── bzip2-1.0.6 │ │ ├── CHANGES │ │ ├── LICENSE │ │ ├── Makefile-libbz2_so │ │ ├── README │ │ ├── README.COMPILATION.PROBLEMS │ │ ├── README.XML.STUFF │ │ ├── blocksort.c │ │ ├── bz-common.xsl │ │ ├── bz-fo.xsl │ │ ├── bz-html.xsl │ │ ├── bzdiff │ │ ├── bzdiff.1 │ │ ├── bzgrep │ │ ├── bzgrep.1 │ │ ├── bzip.css │ │ ├── bzip2.1 │ │ ├── bzip2.1.preformatted │ │ ├── bzip2.c │ │ ├── bzip2.txt │ │ ├── bzip2recover.c │ │ ├── bzlib.c │ │ ├── bzlib.h │ │ ├── bzlib_private.h │ │ ├── bzmore │ │ ├── bzmore.1 │ │ ├── compress.c │ │ ├── crctable.c │ │ ├── decompress.c │ │ ├── dlltest.c │ │ ├── dlltest.dsp │ │ ├── entities.xml │ │ ├── format.pl │ │ ├── huffman.c │ │ ├── libbz2.def │ │ ├── libbz2.dsp │ │ ├── makefile.msc │ │ ├── manual.html │ │ ├── manual.pdf │ │ ├── manual.ps │ │ ├── manual.xml │ │ ├── mk251.c │ │ ├── randtable.c │ │ ├── sample1.bz2 │ │ ├── sample1.ref │ │ ├── sample2.bz2 │ │ ├── sample2.ref │ │ ├── sample3.bz2 │ │ ├── sample3.ref │ │ ├── spewG.c │ │ ├── unzcrash.c │ │ ├── words0 │ │ ├── words1 │ │ ├── words2 │ │ ├── words3 │ │ └── xmlproc.sh │ ├── cat │ │ ├── AllCodec.hpp │ │ ├── AllCommon.hpp │ │ ├── AllCrypt.hpp │ │ ├── AllFramework.hpp │ │ ├── AllGraphics.hpp │ │ ├── AllMath.hpp │ │ ├── AllTunnel.hpp │ │ ├── Config.hpp │ │ ├── LIBCAT.README.txt │ │ ├── Platform.hpp │ │ ├── Singleton.hpp │ │ ├── asm │ │ │ └── big_x64_asm.hpp │ │ ├── codec │ │ │ ├── ChatText.stats │ │ │ └── RangeCoder.hpp │ │ ├── crypt │ │ │ ├── SecureCompare.hpp │ │ │ ├── cookie │ │ │ │ └── CookieJar.hpp │ │ │ ├── hash │ │ │ │ ├── HMAC_MD5.hpp │ │ │ │ ├── ICryptHash.hpp │ │ │ │ └── Skein.hpp │ │ │ ├── pass │ │ │ │ └── Passwords.hpp │ │ │ ├── rand │ │ │ │ └── Fortuna.hpp │ │ │ ├── symmetric │ │ │ │ └── ChaCha.hpp │ │ │ └── tunnel │ │ │ │ ├── AuthenticatedEncryption.hpp │ │ │ │ ├── EasyHandshake.hpp │ │ │ │ ├── KeyAgreement.hpp │ │ │ │ ├── KeyAgreementInitiator.hpp │ │ │ │ ├── KeyAgreementResponder.hpp │ │ │ │ └── KeyMaker.hpp │ │ ├── db │ │ │ ├── BombayTable.hpp │ │ │ └── BombayTableIndex.hpp │ │ ├── gfx │ │ │ ├── LoadBitmap.hpp │ │ │ ├── LoadPNG.hpp │ │ │ ├── Matrix.hpp │ │ │ ├── Quaternion.hpp │ │ │ ├── Scalar.hpp │ │ │ └── Vector.hpp │ │ ├── hash │ │ │ └── MurmurHash2.hpp │ │ ├── io │ │ │ ├── AsyncBuffer.hpp │ │ │ ├── Base64.hpp │ │ │ ├── Logging.hpp │ │ │ ├── MMapFile.hpp │ │ │ ├── PackageManager.hpp │ │ │ ├── Settings.hpp │ │ │ └── ThreadPoolFiles.hpp │ │ ├── lang │ │ │ └── Strings.hpp │ │ ├── lib │ │ │ └── cat │ │ │ │ ├── big_x64.lib │ │ │ │ └── big_x64.o │ │ ├── math │ │ │ ├── BigMontgomery.hpp │ │ │ ├── BigPseudoMersenne.hpp │ │ │ ├── BigRTL.hpp │ │ │ ├── BigTwistedEdwards.hpp │ │ │ ├── BitMath.hpp │ │ │ └── Legs.hpp │ │ ├── net │ │ │ ├── DNSClient.hpp │ │ │ ├── Sockets.hpp │ │ │ ├── SphynxClient.hpp │ │ │ ├── SphynxCollexion.hpp │ │ │ ├── SphynxServer.hpp │ │ │ ├── SphynxTransport.hpp │ │ │ ├── ThreadPoolSockets.hpp │ │ │ ├── bsd │ │ │ │ ├── TCPClient.hpp │ │ │ │ ├── TCPConnection.hpp │ │ │ │ ├── TCPServer.hpp │ │ │ │ └── UDPEndpoint.hpp │ │ │ ├── generic │ │ │ │ ├── TCPClient.hpp │ │ │ │ ├── TCPConnection.hpp │ │ │ │ ├── TCPServer.hpp │ │ │ │ └── UDPEndpoint.hpp │ │ │ ├── linux │ │ │ │ ├── TCPClient.hpp │ │ │ │ ├── TCPConnection.hpp │ │ │ │ ├── TCPServer.hpp │ │ │ │ └── UDPEndpoint.hpp │ │ │ └── win │ │ │ │ ├── TCPClient.hpp │ │ │ │ ├── TCPConnection.hpp │ │ │ │ ├── TCPConnexion.hpp │ │ │ │ ├── TCPServer.hpp │ │ │ │ └── UDPEndpoint.hpp │ │ ├── parse │ │ │ ├── BitStream.hpp │ │ │ ├── BufferStream.hpp │ │ │ ├── BufferTok.hpp │ │ │ ├── FastDelegate.h │ │ │ └── MessageRouter.hpp │ │ ├── port │ │ │ ├── AlignedAlloc.hpp │ │ │ ├── EndianNeutral.hpp │ │ │ └── WindowsInclude.hpp │ │ ├── rand │ │ │ ├── IRandom.hpp │ │ │ ├── MersenneTwister.hpp │ │ │ └── StdRand.hpp │ │ ├── src │ │ │ ├── Framework.cpp │ │ │ ├── codec │ │ │ │ └── RangeCoder.cpp │ │ │ ├── crypt │ │ │ │ ├── SecureCompare.cpp │ │ │ │ ├── cookie │ │ │ │ │ └── CookieJar.cpp │ │ │ │ ├── hash │ │ │ │ │ ├── HMAC_MD5.cpp │ │ │ │ │ ├── Skein.cpp │ │ │ │ │ ├── Skein256.cpp │ │ │ │ │ └── Skein512.cpp │ │ │ │ ├── pass │ │ │ │ │ └── Passwords.cpp │ │ │ │ ├── privatekey │ │ │ │ │ └── ChaCha.cpp │ │ │ │ ├── rand │ │ │ │ │ ├── EntropyGeneric.cpp │ │ │ │ │ ├── EntropyLinux.cpp │ │ │ │ │ ├── EntropyWindows.cpp │ │ │ │ │ ├── EntropyWindowsCE.cpp │ │ │ │ │ └── Fortuna.cpp │ │ │ │ └── tunnel │ │ │ │ │ ├── AuthenticatedEncryption.cpp │ │ │ │ │ ├── EasyHandshake.cpp │ │ │ │ │ ├── KeyAgreement.cpp │ │ │ │ │ ├── KeyAgreementInitiator.cpp │ │ │ │ │ ├── KeyAgreementResponder.cpp │ │ │ │ │ └── KeyMaker.cpp │ │ │ ├── db │ │ │ │ ├── BombayTable.cpp │ │ │ │ └── BombayTableIndex.cpp │ │ │ ├── gfx │ │ │ │ ├── LoadBitmap.cpp │ │ │ │ ├── LoadPNG.cpp │ │ │ │ ├── Matrix.cpp │ │ │ │ ├── Quaternion.cpp │ │ │ │ ├── Scalar.cpp │ │ │ │ └── Vector.cpp │ │ │ ├── hash │ │ │ │ └── MurmurHash2.cpp │ │ │ ├── io │ │ │ │ ├── Base64.cpp │ │ │ │ ├── Logging.cpp │ │ │ │ ├── MMapFile.cpp │ │ │ │ ├── PackageManager.cpp │ │ │ │ ├── Settings.cpp │ │ │ │ └── ThreadPoolFiles.cpp │ │ │ ├── lang │ │ │ │ └── Strings.cpp │ │ │ ├── math │ │ │ │ ├── BigMontgomery.cpp │ │ │ │ ├── BigPseudoMersenne.cpp │ │ │ │ ├── BigRTL.cpp │ │ │ │ ├── BigTwistedEdwards.cpp │ │ │ │ ├── big_x64_elf.asm │ │ │ │ ├── big_x64_mscoff.asm │ │ │ │ ├── edward │ │ │ │ │ ├── addsub │ │ │ │ │ │ ├── PtAdd.cpp │ │ │ │ │ │ ├── PtDouble.cpp │ │ │ │ │ │ ├── PtDoubleZ1.cpp │ │ │ │ │ │ ├── PtNegate.cpp │ │ │ │ │ │ └── PtSubtract.cpp │ │ │ │ │ ├── io │ │ │ │ │ │ ├── PtFillRandomX.cpp │ │ │ │ │ │ ├── PtGenerate.cpp │ │ │ │ │ │ ├── PtNormalize.cpp │ │ │ │ │ │ ├── PtSolveAffineY.cpp │ │ │ │ │ │ ├── PtValidAffine.cpp │ │ │ │ │ │ ├── SaveAffineX.cpp │ │ │ │ │ │ └── SaveAffineXY.cpp │ │ │ │ │ └── mul │ │ │ │ │ │ ├── PtMultiply.cpp │ │ │ │ │ │ ├── PtMultiplyPrecomp.cpp │ │ │ │ │ │ ├── PtPrecompAddSub.cpp │ │ │ │ │ │ └── RefMul.cpp │ │ │ │ ├── mersenne │ │ │ │ │ ├── addsub │ │ │ │ │ │ ├── MrAdd.cpp │ │ │ │ │ │ ├── MrNegate.cpp │ │ │ │ │ │ └── MrSubtract.cpp │ │ │ │ │ ├── expm │ │ │ │ │ │ ├── MrInvert.cpp │ │ │ │ │ │ └── MrSquareRoot.cpp │ │ │ │ │ ├── mul │ │ │ │ │ │ ├── MrMultiply.cpp │ │ │ │ │ │ ├── MrMultiplyX.cpp │ │ │ │ │ │ └── MrSquare.cpp │ │ │ │ │ └── reduce │ │ │ │ │ │ ├── MrReduce.cpp │ │ │ │ │ │ └── MrReduceProduct.cpp │ │ │ │ ├── montgomery │ │ │ │ │ ├── addsub │ │ │ │ │ │ ├── MonAdd.cpp │ │ │ │ │ │ ├── MonNegate.cpp │ │ │ │ │ │ └── MonSubtract.cpp │ │ │ │ │ ├── expm │ │ │ │ │ │ ├── IsRabinMillerPrime.cpp │ │ │ │ │ │ └── MonExpMod.cpp │ │ │ │ │ ├── mul │ │ │ │ │ │ ├── MonMultiply.cpp │ │ │ │ │ │ └── MonSquare.cpp │ │ │ │ │ └── reduce │ │ │ │ │ │ ├── MonInput.cpp │ │ │ │ │ │ ├── MonOutput.cpp │ │ │ │ │ │ └── MonReduceProduct.cpp │ │ │ │ └── rtl │ │ │ │ │ ├── addsub │ │ │ │ │ ├── Add.cpp │ │ │ │ │ ├── Add1.cpp │ │ │ │ │ ├── AddX.cpp │ │ │ │ │ ├── Compare.cpp │ │ │ │ │ ├── Double.cpp │ │ │ │ │ ├── DoubleAdd.cpp │ │ │ │ │ ├── Negate.cpp │ │ │ │ │ ├── Shift.cpp │ │ │ │ │ ├── Subtract.cpp │ │ │ │ │ └── SubtractX.cpp │ │ │ │ │ ├── div │ │ │ │ │ ├── Divide.cpp │ │ │ │ │ ├── DivideAsm64.cpp │ │ │ │ │ ├── DivideGeneric.cpp │ │ │ │ │ ├── EatTrailingZeroes.cpp │ │ │ │ │ ├── ModularInverse.cpp │ │ │ │ │ ├── MulMod.cpp │ │ │ │ │ └── MultiplicativeInverse.cpp │ │ │ │ │ ├── io │ │ │ │ │ ├── Load.cpp │ │ │ │ │ ├── LoadString.cpp │ │ │ │ │ └── Save.cpp │ │ │ │ │ └── mul │ │ │ │ │ ├── CombaMul.cpp │ │ │ │ │ ├── Multiply.cpp │ │ │ │ │ ├── MultiplyX.cpp │ │ │ │ │ ├── MultiplyXAdd.cpp │ │ │ │ │ └── Square.cpp │ │ │ ├── net │ │ │ │ ├── DNSClient.cpp │ │ │ │ ├── Sockets.cpp │ │ │ │ ├── SphynxClient.cpp │ │ │ │ ├── SphynxServer.cpp │ │ │ │ ├── SphynxTransport.cpp │ │ │ │ ├── ThreadPoolSockets.cpp │ │ │ │ ├── bsd │ │ │ │ │ ├── ThreadPoolTCPClient.cpp │ │ │ │ │ ├── ThreadPoolTCPConnection.cpp │ │ │ │ │ ├── ThreadPoolTCPServer.cpp │ │ │ │ │ └── ThreadPoolUDPEndpoint.cpp │ │ │ │ ├── generic │ │ │ │ │ ├── ThreadPoolTCPClient.cpp │ │ │ │ │ ├── ThreadPoolTCPConnection.cpp │ │ │ │ │ ├── ThreadPoolTCPServer.cpp │ │ │ │ │ └── ThreadPoolUDPEndpoint.cpp │ │ │ │ ├── linux │ │ │ │ │ ├── ThreadPoolTCPClient.cpp │ │ │ │ │ ├── ThreadPoolTCPConnection.cpp │ │ │ │ │ ├── ThreadPoolTCPServer.cpp │ │ │ │ │ └── ThreadPoolUDPEndpoint.cpp │ │ │ │ └── win │ │ │ │ │ ├── TCPClient.cpp │ │ │ │ │ ├── TCPConnection.cpp │ │ │ │ │ ├── TCPConnexion.cpp │ │ │ │ │ ├── TCPServer.cpp │ │ │ │ │ └── UDPEndpoint.cpp │ │ │ ├── parse │ │ │ │ ├── BitStream.cpp │ │ │ │ ├── BufferTok.cpp │ │ │ │ └── MessageRouter.cpp │ │ │ ├── port │ │ │ │ ├── AlignedAlloc.cpp │ │ │ │ └── EndianNeutral.cpp │ │ │ ├── rand │ │ │ │ ├── MersenneTwister.cpp │ │ │ │ └── StdRand.cpp │ │ │ ├── threads │ │ │ │ ├── Mutex.cpp │ │ │ │ ├── RWLock.cpp │ │ │ │ ├── RegionAllocator.cpp │ │ │ │ ├── Thread.cpp │ │ │ │ ├── ThreadPool.cpp │ │ │ │ └── WaitableFlag.cpp │ │ │ └── time │ │ │ │ └── Clock.cpp │ │ ├── threads │ │ │ ├── Atomic.hpp │ │ │ ├── LocklessFIFO.hpp │ │ │ ├── Mutex.hpp │ │ │ ├── RWLock.hpp │ │ │ ├── RegionAllocator.hpp │ │ │ ├── Thread.hpp │ │ │ ├── ThreadPool.hpp │ │ │ └── WaitableFlag.hpp │ │ └── time │ │ │ └── Clock.hpp │ ├── jansson-2.4 │ │ ├── CHANGES │ │ ├── LICENSE │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── README.rst │ │ ├── aclocal.m4 │ │ ├── config.guess │ │ ├── config.h.in │ │ ├── config.sub │ │ ├── configure │ │ ├── configure.ac │ │ ├── depcomp │ │ ├── doc │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── README │ │ │ ├── apiref.rst │ │ │ ├── changes.rst │ │ │ ├── conf.py │ │ │ ├── conformance.rst │ │ │ ├── ext │ │ │ │ └── refcounting.py │ │ │ ├── gettingstarted.rst │ │ │ ├── github_commits.c │ │ │ ├── index.rst │ │ │ ├── portability.rst │ │ │ ├── tutorial.rst │ │ │ └── upgrading.rst │ │ ├── install-sh │ │ ├── jansson.pc.in │ │ ├── ltmain.sh │ │ ├── missing │ │ ├── src │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── dump.c │ │ │ ├── error.c │ │ │ ├── hashtable.c │ │ │ ├── hashtable.h │ │ │ ├── jansson.def │ │ │ ├── jansson.h │ │ │ ├── jansson_config.h │ │ │ ├── jansson_config.h.in │ │ │ ├── jansson_private.h │ │ │ ├── load.c │ │ │ ├── memory.c │ │ │ ├── pack_unpack.c │ │ │ ├── strbuffer.c │ │ │ ├── strbuffer.h │ │ │ ├── strconv.c │ │ │ ├── utf.c │ │ │ ├── utf.h │ │ │ └── value.c │ │ └── test │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── run-suites │ │ │ ├── scripts │ │ │ ├── run-tests.sh │ │ │ └── valgrind.sh │ │ │ └── suites │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── api │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── check-exports │ │ │ ├── run │ │ │ ├── test_array.c │ │ │ ├── test_copy.c │ │ │ ├── test_dump.c │ │ │ ├── test_dump_callback.c │ │ │ ├── test_equal.c │ │ │ ├── test_load.c │ │ │ ├── test_load_callback.c │ │ │ ├── test_loadb.c │ │ │ ├── test_memory_funcs.c │ │ │ ├── test_number.c │ │ │ ├── test_object.c │ │ │ ├── test_pack.c │ │ │ ├── test_simple.c │ │ │ ├── test_unpack.c │ │ │ └── util.h │ │ │ ├── invalid-unicode │ │ │ ├── encoded-surrogate-half │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── invalid-utf-8-after-backslash │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── invalid-utf-8-in-array │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── invalid-utf-8-in-bigger-int │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── invalid-utf-8-in-escape │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── invalid-utf-8-in-exponent │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── invalid-utf-8-in-identifier │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── invalid-utf-8-in-int │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── invalid-utf-8-in-real-after-e │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── invalid-utf-8-in-string │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── lone-invalid-utf-8 │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── lone-utf-8-continuation-byte │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── not-in-unicode-range │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── overlong-3-byte-encoding │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── overlong-4-byte-encoding │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── overlong-ascii-encoding │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── restricted-utf-8 │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── run │ │ │ └── truncated-utf-8 │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── invalid │ │ │ ├── apostrophe │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── ascii-unicode-identifier │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── brace-comma │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── bracket-comma │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── bracket-one-comma │ │ │ │ ├── error.normal │ │ │ │ ├── error.strip │ │ │ │ └── input │ │ │ ├── empty │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── escaped-null-byte-in-string │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── extra-comma-in-array │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── extra-comma-in-multiline-array │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── garbage-after-newline │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── garbage-at-the-end │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── integer-starting-with-zero │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── invalid-escape │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── invalid-identifier │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── invalid-negative-integer │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── invalid-negative-real │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── invalid-second-surrogate │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── lone-open-brace │ │ │ │ ├── error.normal │ │ │ │ ├── error.strip │ │ │ │ └── input │ │ │ ├── lone-open-bracket │ │ │ │ ├── error.normal │ │ │ │ ├── error.strip │ │ │ │ └── input │ │ │ ├── lone-second-surrogate │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── minus-sign-without-number │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── negative-integer-starting-with-zero │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── null-byte-in-string │ │ │ │ ├── error │ │ │ │ ├── input │ │ │ │ └── nostrip │ │ │ ├── null-byte-outside-string │ │ │ │ ├── error │ │ │ │ ├── input │ │ │ │ └── nostrip │ │ │ ├── null │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── object-apostrophes │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── object-garbage-at-end │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── object-in-unterminated-array │ │ │ │ ├── error.normal │ │ │ │ ├── error.strip │ │ │ │ └── input │ │ │ ├── object-no-colon │ │ │ │ ├── error.normal │ │ │ │ ├── error.strip │ │ │ │ └── input │ │ │ ├── object-no-value │ │ │ │ ├── error.normal │ │ │ │ ├── error.strip │ │ │ │ └── input │ │ │ ├── object-unterminated-value │ │ │ │ ├── error.normal │ │ │ │ ├── error.strip │ │ │ │ └── input │ │ │ ├── real-garbage-after-e │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── real-negative-overflow │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── real-positive-overflow │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── real-truncated-at-e │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── real-truncated-at-point │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── run │ │ │ ├── tab-character-in-string │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── too-big-negative-integer │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── too-big-positive-integer │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── truncated-unicode-surrogate │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── unicode-identifier │ │ │ │ ├── error │ │ │ │ └── input │ │ │ ├── unterminated-array-and-object │ │ │ │ ├── error.normal │ │ │ │ ├── error.strip │ │ │ │ └── input │ │ │ ├── unterminated-array │ │ │ │ ├── error.normal │ │ │ │ ├── error.strip │ │ │ │ └── input │ │ │ ├── unterminated-empty-key │ │ │ │ ├── error.normal │ │ │ │ ├── error.strip │ │ │ │ └── input │ │ │ ├── unterminated-key │ │ │ │ ├── error.normal │ │ │ │ ├── error.strip │ │ │ │ └── input │ │ │ ├── unterminated-object-and-array │ │ │ │ ├── error │ │ │ │ └── input │ │ │ └── unterminated-string │ │ │ │ ├── error.normal │ │ │ │ ├── error.strip │ │ │ │ └── input │ │ │ └── valid │ │ │ ├── complex-array │ │ │ ├── input │ │ │ └── output │ │ │ ├── empty-array │ │ │ ├── input │ │ │ └── output │ │ │ ├── empty-object-in-array │ │ │ ├── input │ │ │ └── output │ │ │ ├── empty-object │ │ │ ├── input │ │ │ └── output │ │ │ ├── empty-string │ │ │ ├── input │ │ │ └── output │ │ │ ├── escaped-utf-control-char │ │ │ ├── input │ │ │ └── output │ │ │ ├── false │ │ │ ├── input │ │ │ └── output │ │ │ ├── negative-int │ │ │ ├── input │ │ │ └── output │ │ │ ├── negative-one │ │ │ ├── input │ │ │ └── output │ │ │ ├── negative-zero │ │ │ ├── input │ │ │ └── output │ │ │ ├── null │ │ │ ├── input │ │ │ └── output │ │ │ ├── one-byte-utf-8 │ │ │ ├── input │ │ │ └── output │ │ │ ├── real-capital-e-negative-exponent │ │ │ ├── input │ │ │ └── output │ │ │ ├── real-capital-e-positive-exponent │ │ │ ├── input │ │ │ └── output │ │ │ ├── real-capital-e │ │ │ ├── input │ │ │ └── output │ │ │ ├── real-exponent │ │ │ ├── input │ │ │ └── output │ │ │ ├── real-fraction-exponent │ │ │ ├── input │ │ │ └── output │ │ │ ├── real-negative-exponent │ │ │ ├── input │ │ │ └── output │ │ │ ├── real-positive-exponent │ │ │ ├── input │ │ │ └── output │ │ │ ├── real-underflow │ │ │ ├── input │ │ │ └── output │ │ │ ├── run │ │ │ ├── short-string │ │ │ ├── input │ │ │ └── output │ │ │ ├── simple-ascii-string │ │ │ ├── input │ │ │ └── output │ │ │ ├── simple-int-0 │ │ │ ├── input │ │ │ └── output │ │ │ ├── simple-int-1 │ │ │ ├── input │ │ │ └── output │ │ │ ├── simple-int-123 │ │ │ ├── input │ │ │ └── output │ │ │ ├── simple-object │ │ │ ├── input │ │ │ └── output │ │ │ ├── simple-real │ │ │ ├── input │ │ │ └── output │ │ │ ├── string-escapes │ │ │ ├── input │ │ │ └── output │ │ │ ├── three-byte-utf-8 │ │ │ ├── input │ │ │ └── output │ │ │ ├── true │ │ │ ├── input │ │ │ └── output │ │ │ ├── two-byte-utf-8 │ │ │ ├── input │ │ │ └── output │ │ │ ├── utf-8-string │ │ │ ├── input │ │ │ └── output │ │ │ └── utf-surrogate-four-byte-encoding │ │ │ ├── input │ │ │ └── output │ ├── jpeg-7 │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── README │ │ ├── aclocal.m4 │ │ ├── ansi2knr.1 │ │ ├── ansi2knr.c │ │ ├── cderror.h │ │ ├── cdjpeg.c │ │ ├── cdjpeg.h │ │ ├── cjpeg.1 │ │ ├── cjpeg.c │ │ ├── ckconfig.c │ │ ├── coderules.txt │ │ ├── config.guess │ │ ├── config.sub │ │ ├── configure │ │ ├── configure.ac │ │ ├── depcomp │ │ ├── djpeg.1 │ │ ├── djpeg.c │ │ ├── example.c │ │ ├── filelist.txt │ │ ├── install-sh │ │ ├── install.txt │ │ ├── jaricom.c │ │ ├── jcapimin.c │ │ ├── jcapistd.c │ │ ├── jcarith.c │ │ ├── jccoefct.c │ │ ├── jccolor.c │ │ ├── jcdctmgr.c │ │ ├── jchuff.c │ │ ├── jcinit.c │ │ ├── jcmainct.c │ │ ├── jcmarker.c │ │ ├── jcmaster.c │ │ ├── jcomapi.c │ │ ├── jconfig.bcc │ │ ├── jconfig.cfg │ │ ├── jconfig.dj │ │ ├── jconfig.h │ │ ├── jconfig.mac │ │ ├── jconfig.manx │ │ ├── jconfig.mc6 │ │ ├── jconfig.sas │ │ ├── jconfig.st │ │ ├── jconfig.txt │ │ ├── jconfig.vc │ │ ├── jconfig.vms │ │ ├── jconfig.wat │ │ ├── jcparam.c │ │ ├── jcprepct.c │ │ ├── jcsample.c │ │ ├── jctrans.c │ │ ├── jdapimin.c │ │ ├── jdapistd.c │ │ ├── jdarith.c │ │ ├── jdatadst.c │ │ ├── jdatasrc.c │ │ ├── jdcoefct.c │ │ ├── jdcolor.c │ │ ├── jdct.h │ │ ├── jddctmgr.c │ │ ├── jdhuff.c │ │ ├── jdinput.c │ │ ├── jdmainct.c │ │ ├── jdmarker.c │ │ ├── jdmaster.c │ │ ├── jdmerge.c │ │ ├── jdosaobj.txt │ │ ├── jdpostct.c │ │ ├── jdsample.c │ │ ├── jdtrans.c │ │ ├── jerror.c │ │ ├── jerror.h │ │ ├── jfdctflt.c │ │ ├── jfdctfst.c │ │ ├── jfdctint.c │ │ ├── jidctflt.c │ │ ├── jidctfst.c │ │ ├── jidctint.c │ │ ├── jinclude.h │ │ ├── jmemansi.c │ │ ├── jmemdos.c │ │ ├── jmemdosa.asm │ │ ├── jmemmac.c │ │ ├── jmemmgr.c │ │ ├── jmemname.c │ │ ├── jmemnobs.c │ │ ├── jmemsys.h │ │ ├── jmorecfg.h │ │ ├── jpegint.h │ │ ├── jpeglib.h │ │ ├── jpegtran.1 │ │ ├── jpegtran.c │ │ ├── jquant1.c │ │ ├── jquant2.c │ │ ├── jutils.c │ │ ├── jversion.h │ │ ├── libjpeg.map │ │ ├── libjpeg.txt │ │ ├── ltmain.sh │ │ ├── makcjpeg.st │ │ ├── makdjpeg.st │ │ ├── makeadsw.vc6 │ │ ├── makeasln.vc9 │ │ ├── makecdep.vc6 │ │ ├── makecdsp.vc6 │ │ ├── makecmak.vc6 │ │ ├── makecvcp.vc9 │ │ ├── makeddep.vc6 │ │ ├── makeddsp.vc6 │ │ ├── makedmak.vc6 │ │ ├── makedvcp.vc9 │ │ ├── makefile.ansi │ │ ├── makefile.bcc │ │ ├── makefile.dj │ │ ├── makefile.manx │ │ ├── makefile.mc6 │ │ ├── makefile.mms │ │ ├── makefile.sas │ │ ├── makefile.unix │ │ ├── makefile.vc │ │ ├── makefile.vms │ │ ├── makefile.wat │ │ ├── makejdep.vc6 │ │ ├── makejdsp.vc6 │ │ ├── makejdsw.vc6 │ │ ├── makejmak.vc6 │ │ ├── makejsln.vc9 │ │ ├── makejvcp.vc9 │ │ ├── makeproj.mac │ │ ├── makerdep.vc6 │ │ ├── makerdsp.vc6 │ │ ├── makermak.vc6 │ │ ├── makervcp.vc9 │ │ ├── maketdep.vc6 │ │ ├── maketdsp.vc6 │ │ ├── maketmak.vc6 │ │ ├── maketvcp.vc9 │ │ ├── makewdep.vc6 │ │ ├── makewdsp.vc6 │ │ ├── makewmak.vc6 │ │ ├── makewvcp.vc9 │ │ ├── makljpeg.st │ │ ├── maktjpeg.st │ │ ├── memsrc.c │ │ ├── missing │ │ ├── rdbmp.c │ │ ├── rdcolmap.c │ │ ├── rdgif.c │ │ ├── rdjpgcom.1 │ │ ├── rdjpgcom.c │ │ ├── rdppm.c │ │ ├── rdrle.c │ │ ├── rdswitch.c │ │ ├── rdtarga.c │ │ ├── readme.dos │ │ ├── structure.txt │ │ ├── testimg.bmp │ │ ├── testimg.jpg │ │ ├── testimg.ppm │ │ ├── testimgp.jpg │ │ ├── testorig.jpg │ │ ├── testprog.jpg │ │ ├── transupp.c │ │ ├── transupp.h │ │ ├── usage.txt │ │ ├── wizard.txt │ │ ├── wrbmp.c │ │ ├── wrgif.c │ │ ├── wrjpgcom.1 │ │ ├── wrjpgcom.c │ │ ├── wrppm.c │ │ ├── wrrle.c │ │ └── wrtarga.c │ ├── miniupnpc-1.5 │ │ ├── Changelog.txt │ │ ├── LICENSE │ │ ├── MANIFEST.in │ │ ├── Makefile.mingw │ │ ├── README │ │ ├── VERSION │ │ ├── bsdqueue.h │ │ ├── codelength.h │ │ ├── connecthostport.c │ │ ├── connecthostport.h │ │ ├── declspec.h │ │ ├── external-ip.sh │ │ ├── igd_desc_parse.c │ │ ├── igd_desc_parse.h │ │ ├── java │ │ │ ├── JavaBridgeTest.java │ │ │ └── testjava.sh │ │ ├── man3 │ │ │ └── miniupnpc.3 │ │ ├── mingw32make.bat │ │ ├── minisoap.c │ │ ├── minisoap.h │ │ ├── minissdpc.c │ │ ├── minissdpc.h │ │ ├── miniupnpc.c │ │ ├── miniupnpc.def │ │ ├── miniupnpc.h │ │ ├── miniupnpcmodule.c │ │ ├── miniupnpcstrings.h.in │ │ ├── miniwget.c │ │ ├── miniwget.h │ │ ├── minixml.c │ │ ├── minixml.h │ │ ├── minixmlvalid.c │ │ ├── msvc │ │ │ ├── miniupnpc.sln │ │ │ ├── miniupnpc.vcproj │ │ │ └── upnpc-static.vcproj │ │ ├── pymoduletest.py │ │ ├── setup.py │ │ ├── setupmingw32.py │ │ ├── testigddescparse.c │ │ ├── testminiwget.c │ │ ├── testminixml.c │ │ ├── testupnpigd.py │ │ ├── testupnpreplyparse.c │ │ ├── updateminiupnpcstrings.sh │ │ ├── upnpc.c │ │ ├── upnpcommands.c │ │ ├── upnpcommands.h │ │ ├── upnperrors.c │ │ ├── upnperrors.h │ │ ├── upnpreplyparse.c │ │ ├── upnpreplyparse.h │ │ └── wingenminiupnpcstrings.c │ ├── miniupnpc-1.6.20120410 │ │ ├── CMakeLists.txt │ │ ├── Changelog.txt │ │ ├── LICENSE │ │ ├── MANIFEST.in │ │ ├── Makefile.mingw │ │ ├── README │ │ ├── VERSION │ │ ├── bsdqueue.h │ │ ├── codelength.h │ │ ├── connecthostport.c │ │ ├── connecthostport.h │ │ ├── declspec.h │ │ ├── external-ip.sh │ │ ├── igd_desc_parse.c │ │ ├── igd_desc_parse.h │ │ ├── java │ │ │ ├── JavaBridgeTest.java │ │ │ └── testjava.sh │ │ ├── man3 │ │ │ └── miniupnpc.3 │ │ ├── mingw32make.bat │ │ ├── minihttptestserver.c │ │ ├── minisoap.c │ │ ├── minisoap.h │ │ ├── minissdpc.c │ │ ├── minissdpc.h │ │ ├── miniupnpc.c │ │ ├── miniupnpc.def │ │ ├── miniupnpc.h │ │ ├── miniupnpcmodule.c │ │ ├── miniupnpcstrings.h │ │ ├── miniupnpcstrings.h.cmake │ │ ├── miniupnpcstrings.h.in │ │ ├── miniupnpctypes.h │ │ ├── miniwget.c │ │ ├── miniwget.h │ │ ├── minixml.c │ │ ├── minixml.h │ │ ├── minixmlvalid.c │ │ ├── msvc │ │ │ ├── miniupnpc.sln │ │ │ ├── miniupnpc.vcproj │ │ │ └── upnpc-static.vcproj │ │ ├── portlistingparse.c │ │ ├── portlistingparse.h │ │ ├── pymoduletest.py │ │ ├── receivedata.c │ │ ├── receivedata.h │ │ ├── setup.py │ │ ├── setupmingw32.py │ │ ├── testigddescparse.c │ │ ├── testminiwget.c │ │ ├── testminiwget.sh │ │ ├── testminixml.c │ │ ├── testupnpigd.py │ │ ├── testupnpreplyparse.c │ │ ├── updateminiupnpcstrings.sh │ │ ├── upnpc.c │ │ ├── upnpcommands.c │ │ ├── upnpcommands.h │ │ ├── upnperrors.c │ │ ├── upnperrors.h │ │ ├── upnpreplyparse.c │ │ ├── upnpreplyparse.h │ │ └── wingenminiupnpcstrings.c │ ├── openssl-1.0.0d │ │ ├── OpenSSLhelp.chm │ │ ├── changes.txt │ │ ├── exp │ │ │ ├── 4758cca.exp │ │ │ ├── aep.exp │ │ │ ├── atalla.exp │ │ │ ├── capi.exp │ │ │ ├── chil.exp │ │ │ ├── cswift.exp │ │ │ ├── gmp.exp │ │ │ ├── gost.exp │ │ │ ├── libeay32.exp │ │ │ ├── nuron.exp │ │ │ ├── padlock.exp │ │ │ ├── ssleay32.exp │ │ │ ├── sureware.exp │ │ │ └── ubsec.exp │ │ ├── faq.txt │ │ ├── include │ │ │ └── openssl │ │ │ │ ├── aes.h │ │ │ │ ├── applink.c │ │ │ │ ├── asn1.h │ │ │ │ ├── asn1_mac.h │ │ │ │ ├── asn1t.h │ │ │ │ ├── bio.h │ │ │ │ ├── blowfish.h │ │ │ │ ├── bn.h │ │ │ │ ├── buffer.h │ │ │ │ ├── camellia.h │ │ │ │ ├── cast.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 │ │ │ │ ├── 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 │ │ ├── lib │ │ │ ├── 4758cca.lib │ │ │ ├── aep.lib │ │ │ ├── atalla.lib │ │ │ ├── capi.lib │ │ │ ├── chil.lib │ │ │ ├── cswift.lib │ │ │ ├── gmp.lib │ │ │ ├── gost.lib │ │ │ ├── libeay32.lib │ │ │ ├── nuron.lib │ │ │ ├── padlock.lib │ │ │ ├── ssleay32.lib │ │ │ ├── sureware.lib │ │ │ └── ubsec.lib │ │ ├── libeay32.dll │ │ ├── libssl32.dll │ │ ├── license.txt │ │ ├── news.txt │ │ ├── readme.txt │ │ └── ssleay32.dll │ ├── portaudio_v18_1 │ │ ├── CMakeLists.txt │ │ ├── LICENSE.txt │ │ ├── Makefile.in │ │ ├── Makefile.linux │ │ ├── Makefile.mingw │ │ ├── Makefile.solaris │ │ ├── README.txt │ │ ├── config.guess │ │ ├── config.sub │ │ ├── configure │ │ ├── configure.in │ │ ├── docs │ │ │ ├── index.html │ │ │ ├── latency.html │ │ │ ├── pa_drivermodel.c.txt │ │ │ ├── pa_drivermodel.h.txt │ │ │ ├── pa_impl_guide.html │ │ │ ├── pa_impl_startstop.html │ │ │ ├── pa_tut_asio.html │ │ │ ├── pa_tut_callback.html │ │ │ ├── pa_tut_devs.html │ │ │ ├── pa_tut_explore.html │ │ │ ├── pa_tut_init.html │ │ │ ├── pa_tut_mac.html │ │ │ ├── pa_tut_mac_osx.html │ │ │ ├── pa_tut_open.html │ │ │ ├── pa_tut_oss.html │ │ │ ├── pa_tut_over.html │ │ │ ├── pa_tut_pc.html │ │ │ ├── pa_tut_run.html │ │ │ ├── pa_tut_rw.html │ │ │ ├── pa_tut_term.html │ │ │ ├── pa_tut_util.html │ │ │ ├── pa_tutorial.html │ │ │ ├── portaudio_h.txt │ │ │ ├── portaudio_icmc2001.pdf │ │ │ ├── proposals.html │ │ │ └── releases.html │ │ ├── fixdir.bat │ │ ├── fixfile.bat │ │ ├── index.html │ │ ├── install-sh │ │ ├── pa_asio │ │ │ ├── Callback_adaptation_.pdf │ │ │ ├── pa_asio.cpp │ │ │ ├── pa_asio.pdf │ │ │ └── readme_asio_sdk_patch.txt │ │ ├── pa_beos │ │ │ ├── PlaybackNode.h │ │ │ ├── pa_beos_mk.cc │ │ │ └── playbacknode.cc │ │ ├── pa_common │ │ │ ├── pa_convert.c │ │ │ ├── pa_host.h │ │ │ ├── pa_lib.c │ │ │ ├── pa_trace.c │ │ │ ├── pa_trace.h │ │ │ └── portaudio.h │ │ ├── pa_dll_switch │ │ │ ├── PaDllEntry.h │ │ │ ├── letter_from_tim_010817.txt │ │ │ ├── loadPA_DLL.cpp │ │ │ ├── pa_lib.c │ │ │ └── portaudio.h │ │ ├── pa_mac │ │ │ └── pa_mac.c │ │ ├── pa_mac_core │ │ │ ├── notes.txt │ │ │ └── pa_mac_core.c │ │ ├── pa_sgi │ │ │ ├── pa_sgi.c │ │ │ ├── pthread-Makefile │ │ │ └── pthread-pa_sgi.c │ │ ├── pa_tests │ │ │ ├── debug_convert.c │ │ │ ├── debug_dither_calc.c │ │ │ ├── debug_dual.c │ │ │ ├── debug_multi_in.c │ │ │ ├── debug_multi_out.c │ │ │ ├── debug_record.c │ │ │ ├── debug_record_reuse.c │ │ │ ├── debug_sine.c │ │ │ ├── debug_sine_amp.c │ │ │ ├── debug_sine_formats.c │ │ │ ├── debug_sine_getchar.c │ │ │ ├── debug_srate.c │ │ │ ├── debug_test1.c │ │ │ ├── pa_devs.c │ │ │ ├── pa_fuzz.c │ │ │ ├── pa_minlat.c │ │ │ ├── paqa_devs.c │ │ │ ├── paqa_errs.c │ │ │ ├── patest1.c │ │ │ ├── patest_buffer.c │ │ │ ├── patest_clip.c │ │ │ ├── patest_dither.c │ │ │ ├── patest_hang.c │ │ │ ├── patest_latency.c │ │ │ ├── patest_leftright.c │ │ │ ├── patest_longsine.c │ │ │ ├── patest_many.c │ │ │ ├── patest_maxsines.c │ │ │ ├── patest_mono.c │ │ │ ├── patest_multi_sine.c │ │ │ ├── patest_pink.c │ │ │ ├── patest_record.c │ │ │ ├── patest_ringmix.c │ │ │ ├── patest_saw.c │ │ │ ├── patest_sine.c │ │ │ ├── patest_sine8.c │ │ │ ├── patest_sine_formats.c │ │ │ ├── patest_sine_time.c │ │ │ ├── patest_stop.c │ │ │ ├── patest_sync.c │ │ │ ├── patest_toomanysines.c │ │ │ ├── patest_two_rates.c │ │ │ ├── patest_underflow.c │ │ │ └── patest_wire.c │ │ ├── pa_unix_oss │ │ │ ├── Makefile_freebsd │ │ │ ├── low_latency_tip.txt │ │ │ ├── pa_unix.c │ │ │ ├── pa_unix.h │ │ │ ├── pa_unix_oss.c │ │ │ ├── pa_unix_solaris.c │ │ │ └── recplay.c │ │ ├── pa_win_ds │ │ │ ├── dsound_wrapper.c │ │ │ ├── dsound_wrapper.h │ │ │ ├── pa_dsound.c │ │ │ └── portaudio.def │ │ ├── pa_win_wmme │ │ │ ├── Makefile.cygwin │ │ │ └── pa_win_wmme.c │ │ ├── pablio │ │ │ ├── README.txt │ │ │ ├── pablio.c │ │ │ ├── pablio.def │ │ │ ├── pablio.h │ │ │ ├── ringbuffer.c │ │ │ ├── ringbuffer.h │ │ │ ├── test_rw.c │ │ │ ├── test_rw_echo.c │ │ │ ├── test_w_saw.c │ │ │ └── test_w_saw8.c │ │ └── testcvs │ │ │ └── changeme.txt │ └── speex-1.1.12 │ │ ├── AUTHORS │ │ ├── CMakeLists.txt │ │ ├── COPYING │ │ ├── ChangeLog │ │ ├── INSTALL │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── NEWS │ │ ├── README │ │ ├── README.TI-DSP │ │ ├── README.blackfin │ │ ├── README.symbian │ │ ├── Speex.kdevelop │ │ ├── Speex.spec │ │ ├── Speex.spec.in │ │ ├── TODO │ │ ├── acinclude.m4 │ │ ├── aclocal.m4 │ │ ├── config.guess │ │ ├── config.h.in │ │ ├── config.sub │ │ ├── configure │ │ ├── configure.ac │ │ ├── depcomp │ │ ├── doc │ │ ├── Makefile.am │ │ └── Makefile.in │ │ ├── include │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ └── speex │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── pcm_wrapper.h │ │ │ ├── speex.h │ │ │ ├── speex_bits.h │ │ │ ├── speex_callbacks.h │ │ │ ├── speex_config_types.h.in │ │ │ ├── speex_echo.h │ │ │ ├── speex_header.h │ │ │ ├── speex_jitter.h │ │ │ ├── speex_preprocess.h │ │ │ ├── speex_stereo.h │ │ │ └── speex_types.h │ │ ├── install-sh │ │ ├── libspeex │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── _kiss_fft_guts.h │ │ ├── arch.h │ │ ├── bits.c │ │ ├── cb_search.c │ │ ├── cb_search.h │ │ ├── cb_search_arm4.h │ │ ├── cb_search_bfin.h │ │ ├── cb_search_sse.h │ │ ├── exc_10_16_table.c │ │ ├── exc_10_32_table.c │ │ ├── exc_20_32_table.c │ │ ├── exc_5_256_table.c │ │ ├── exc_5_64_table.c │ │ ├── exc_8_128_table.c │ │ ├── fftwrap.c │ │ ├── fftwrap.h │ │ ├── filters.c │ │ ├── filters.h │ │ ├── filters_arm4.h │ │ ├── filters_bfin.h │ │ ├── filters_sse.h │ │ ├── fixed_arm4.h │ │ ├── fixed_arm5e.h │ │ ├── fixed_bfin.h │ │ ├── fixed_debug.h │ │ ├── fixed_generic.h │ │ ├── gain_table.c │ │ ├── gain_table_lbr.c │ │ ├── hexc_10_32_table.c │ │ ├── hexc_table.c │ │ ├── high_lsp_tables.c │ │ ├── jitter.c │ │ ├── kiss_fft.c │ │ ├── kiss_fft.h │ │ ├── kiss_fftr.c │ │ ├── kiss_fftr.h │ │ ├── lbr_48k_tables.c │ │ ├── lpc.c │ │ ├── lpc.h │ │ ├── lpc_bfin.h │ │ ├── lsp.c │ │ ├── lsp.h │ │ ├── lsp_tables_nb.c │ │ ├── ltp.c │ │ ├── ltp.h │ │ ├── ltp_arm4.h │ │ ├── ltp_bfin.h │ │ ├── ltp_sse.h │ │ ├── math_approx.c │ │ ├── math_approx.h │ │ ├── mdf.c │ │ ├── misc.c │ │ ├── misc.h │ │ ├── misc_bfin.h │ │ ├── modes.c │ │ ├── modes.h │ │ ├── nb_celp.c │ │ ├── nb_celp.h │ │ ├── pcm_wrapper.c │ │ ├── preprocess.c │ │ ├── pseudofloat.h │ │ ├── quant_lsp.c │ │ ├── quant_lsp.h │ │ ├── sb_celp.c │ │ ├── sb_celp.h │ │ ├── smallft.c │ │ ├── smallft.h │ │ ├── speex.c │ │ ├── speex_callbacks.c │ │ ├── speex_header.c │ │ ├── stack_alloc.h │ │ ├── stereo.c │ │ ├── vbr.c │ │ ├── vbr.h │ │ ├── vorbis_psy.c │ │ ├── vorbis_psy.h │ │ ├── vq.c │ │ ├── vq.h │ │ ├── vq_arm4.h │ │ ├── vq_bfin.h │ │ └── vq_sse.h │ │ ├── ltmain.sh │ │ ├── missing │ │ ├── mkinstalldirs │ │ ├── speex.m4 │ │ ├── speex.pc.in │ │ ├── src │ │ ├── Makefile.am │ │ ├── getopt.c │ │ ├── getopt1.c │ │ ├── getopt_win.h │ │ ├── makefile.in │ │ ├── speexdec.1 │ │ ├── speexdec.c │ │ ├── speexenc.1 │ │ ├── speexenc.c │ │ ├── wav_io.c │ │ ├── wav_io.h │ │ ├── wave_out.c │ │ └── wave_out.h │ │ ├── symbian │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── bld.inf │ │ ├── config.h │ │ └── speex.mmp │ │ └── ti │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── config.h │ │ ├── speex_C54_test │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── speex_C54_test.cmd │ │ └── speex_C54_test.pjt │ │ ├── speex_C55_test │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── speex_C55_test.cmd │ │ └── speex_C55_test.pjt │ │ ├── speex_C64_test │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── speex_C64_test.cmd │ │ └── speex_C64_test.pjt │ │ ├── testenc-TI-C5x.c │ │ ├── testenc-TI-C64x.c │ │ └── user_misc.h │ ├── Help │ ├── 0SleepTimer.jpg │ ├── 0SleepTimerSmall.jpg │ ├── 30SleepTimer.jpg │ ├── 30SleepTimerSmall.jpg │ ├── AutopatcherVideo.htm │ ├── CSharpBuildConfiguration.jpg │ ├── DirectoryServerListing.jpg │ ├── Doxygen │ │ ├── RakNetManual_RightClickPropertiesAndUnblock.chm │ │ └── html │ │ │ ├── AutopatcherClient_8h.html │ │ │ ├── AutopatcherMySQLRepository_8h.html │ │ │ ├── AutopatcherPostgreRepository_8h.html │ │ │ ├── AutopatcherRepositoryInterface_8h.html │ │ │ ├── AutopatcherServer_8h.html │ │ │ ├── BitStream_8h.html │ │ │ ├── CloudClient_8h.html │ │ │ ├── CloudServer_8h.html │ │ │ ├── CommandParserInterface_8h.html │ │ │ ├── ConnectionGraph2_8h.html │ │ │ ├── ConsoleServer_8h.html │ │ │ ├── DS__BPlusTree_8h.html │ │ │ ├── DS__BinarySearchTree_8h.html │ │ │ ├── DS__BytePool_8h.html │ │ │ ├── DS__ByteQueue_8h.html │ │ │ ├── DS__Heap_8h.html │ │ │ ├── DS__HuffmanEncodingTreeFactory_8h.html │ │ │ ├── DS__HuffmanEncodingTreeNode_8h.html │ │ │ ├── DS__HuffmanEncodingTree_8h.html │ │ │ ├── DS__LinkedList_8h.html │ │ │ ├── DS__List_8h.html │ │ │ ├── DS__Map_8h.html │ │ │ ├── DS__MemoryPool_8h.html │ │ │ ├── DS__Multilist_8h.html │ │ │ ├── DS__OrderedChannelHeap_8h.html │ │ │ ├── DS__OrderedList_8h.html │ │ │ ├── DS__QueueLinkedList_8h.html │ │ │ ├── DS__Queue_8h.html │ │ │ ├── DS__RangeList_8h.html │ │ │ ├── DS__Table_8h.html │ │ │ ├── DS__ThreadsafeAllocatingQueue_8h.html │ │ │ ├── DS__Tree_8h.html │ │ │ ├── DS__WeightedGraph_8h.html │ │ │ ├── DataCompressor_8h.html │ │ │ ├── DirectoryDeltaTransfer_8h.html │ │ │ ├── DynDNS_8h.html │ │ │ ├── EmailSender_8h.html │ │ │ ├── EpochTimeToString_8h.html │ │ │ ├── FileListNodeContext_8h.html │ │ │ ├── FileListTransferCBInterface_8h.html │ │ │ ├── FileListTransfer_8h.html │ │ │ ├── FileList_8h.html │ │ │ ├── FileOperations_8h.html │ │ │ ├── FormatString_8h.html │ │ │ ├── FullyConnectedMesh2_8h.html │ │ │ ├── GetTime_8h.html │ │ │ ├── HTTPConnection2_8h.html │ │ │ ├── HTTPConnection_8h.html │ │ │ ├── InternalPacket_8h.html │ │ │ ├── LogCommandParser_8h.html │ │ │ ├── MTUSize_8h.html │ │ │ ├── MessageFilter_8h.html │ │ │ ├── MessageIdentifiers_8h.html │ │ │ ├── NatPunchthroughClient_8h.html │ │ │ ├── NatPunchthroughServer_8h.html │ │ │ ├── NatTypeDetectionClient_8h.html │ │ │ ├── NatTypeDetectionServer_8h.html │ │ │ ├── NetworkIDManager_8h.html │ │ │ ├── NetworkIDObject_8h.html │ │ │ ├── PacketConsoleLogger_8h.html │ │ │ ├── PacketFileLogger_8h.html │ │ │ ├── PacketLogger_8h.html │ │ │ ├── PacketOutputWindowLogger_8h.html │ │ │ ├── PacketPriority_8h.html │ │ │ ├── PacketizedTCP_8h.html │ │ │ ├── PluginInterface2_8h.html │ │ │ ├── RPC3_8h.html │ │ │ ├── RPC4Plugin_8h.html │ │ │ ├── Rackspace_8h.html │ │ │ ├── RakMemoryOverride_8h.html │ │ │ ├── RakNetCommandParser_8h.html │ │ │ ├── RakNetStatistics_8h.html │ │ │ ├── RakNetTransport2_8h.html │ │ │ ├── RakNetTypes_8h.html │ │ │ ├── RakPeerInterface_8h.html │ │ │ ├── RakPeer_8h.html │ │ │ ├── RakVoice_8h.html │ │ │ ├── RandSync_8h.html │ │ │ ├── Rand_8h.html │ │ │ ├── ReadyEvent_8h.html │ │ │ ├── RefCountedObj_8h.html │ │ │ ├── RelayPlugin_8h.html │ │ │ ├── ReliabilityLayer_8h.html │ │ │ ├── ReplicaEnums_8h.html │ │ │ ├── ReplicaManager3_8h.html │ │ │ ├── RoomsPlugin_8h.html │ │ │ ├── Router2_8h.html │ │ │ ├── SQLite3ClientPlugin_8h.html │ │ │ ├── SQLite3ServerPlugin_8h.html │ │ │ ├── SecureHandshake_8h.html │ │ │ ├── SimpleMutex_8h.html │ │ │ ├── SingleProducerConsumer_8h.html │ │ │ ├── SocketLayer_8h.html │ │ │ ├── StatisticsHistory_8h.html │ │ │ ├── StringCompressor_8h.html │ │ │ ├── StringTable_8h.html │ │ │ ├── TCPInterface_8h.html │ │ │ ├── TeamBalancer_8h.html │ │ │ ├── TeamManager_8h.html │ │ │ ├── TelnetTransport_8h.html │ │ │ ├── ThreadsafePacketLogger_8h.html │ │ │ ├── TransportInterface_8h.html │ │ │ ├── TwoWayAuthentication_8h.html │ │ │ ├── UDPForwarder_8h.html │ │ │ ├── UDPProxyClient_8h.html │ │ │ ├── UDPProxyCoordinator_8h.html │ │ │ ├── UDPProxyServer_8h.html │ │ │ ├── annotated.html │ │ │ ├── bc_s.png │ │ │ ├── bdwn.png │ │ │ ├── classCheckSum-members.html │ │ │ ├── classCheckSum.html │ │ │ ├── classDataStructures_1_1AVLBalancedBinarySearchTree-members.html │ │ │ ├── classDataStructures_1_1AVLBalancedBinarySearchTree.html │ │ │ ├── classDataStructures_1_1AVLBalancedBinarySearchTree.png │ │ │ ├── classDataStructures_1_1BPlusTree-members.html │ │ │ ├── classDataStructures_1_1BPlusTree.html │ │ │ ├── classDataStructures_1_1BinarySearchTree-members.html │ │ │ ├── classDataStructures_1_1BinarySearchTree.html │ │ │ ├── classDataStructures_1_1BinarySearchTree.png │ │ │ ├── classDataStructures_1_1CircularLinkedList-members.html │ │ │ ├── classDataStructures_1_1CircularLinkedList.html │ │ │ ├── classDataStructures_1_1Hash-members.html │ │ │ ├── classDataStructures_1_1Hash.html │ │ │ ├── classDataStructures_1_1List-members.html │ │ │ ├── classDataStructures_1_1List.html │ │ │ ├── classDataStructures_1_1MLKeyRef-members.html │ │ │ ├── classDataStructures_1_1MLKeyRef.html │ │ │ ├── classDataStructures_1_1Map-members.html │ │ │ ├── classDataStructures_1_1Map.html │ │ │ ├── classDataStructures_1_1MemoryPool-members.html │ │ │ ├── classDataStructures_1_1MemoryPool.html │ │ │ ├── classDataStructures_1_1Multilist-members.html │ │ │ ├── classDataStructures_1_1Multilist.html │ │ │ ├── classDataStructures_1_1OrderedList-members.html │ │ │ ├── classDataStructures_1_1OrderedList.html │ │ │ ├── classDataStructures_1_1Queue-members.html │ │ │ ├── classDataStructures_1_1Queue.html │ │ │ ├── classDataStructures_1_1QueueLinkedList-members.html │ │ │ ├── classDataStructures_1_1QueueLinkedList.html │ │ │ ├── classDataStructures_1_1SingleProducerConsumer-members.html │ │ │ ├── classDataStructures_1_1SingleProducerConsumer.html │ │ │ ├── classDataStructures_1_1Table-members.html │ │ │ ├── classDataStructures_1_1Table.html │ │ │ ├── classMemoryCompressor-members.html │ │ │ ├── classMemoryCompressor.html │ │ │ ├── classRakNet_1_1AutopatcherMySQLRepository-members.html │ │ │ ├── classRakNet_1_1AutopatcherMySQLRepository.html │ │ │ ├── classRakNet_1_1AutopatcherMySQLRepository.png │ │ │ ├── classRakNet_1_1AutopatcherPostgreRepository-members.html │ │ │ ├── classRakNet_1_1AutopatcherPostgreRepository.html │ │ │ ├── classRakNet_1_1AutopatcherPostgreRepository.png │ │ │ ├── classRakNet_1_1AutopatcherRepositoryInterface-members.html │ │ │ ├── classRakNet_1_1AutopatcherRepositoryInterface.html │ │ │ ├── classRakNet_1_1AutopatcherRepositoryInterface.png │ │ │ ├── classRakNet_1_1AutopatcherServer-members.html │ │ │ ├── classRakNet_1_1AutopatcherServer.html │ │ │ ├── classRakNet_1_1AutopatcherServer.png │ │ │ ├── classRakNet_1_1AutopatcherServerLoadNotifier__Printf-members.html │ │ │ ├── classRakNet_1_1AutopatcherServerLoadNotifier__Printf.html │ │ │ ├── classRakNet_1_1BitStream-members.html │ │ │ ├── classRakNet_1_1BitStream.html │ │ │ ├── classRakNet_1_1CloudAllocator-members.html │ │ │ ├── classRakNet_1_1CloudAllocator.html │ │ │ ├── classRakNet_1_1CloudAllocator.png │ │ │ ├── classRakNet_1_1CloudClient-members.html │ │ │ ├── classRakNet_1_1CloudClient.html │ │ │ ├── classRakNet_1_1CloudClient.png │ │ │ ├── classRakNet_1_1CloudClientCallback-members.html │ │ │ ├── classRakNet_1_1CloudClientCallback.html │ │ │ ├── classRakNet_1_1CloudServer-members.html │ │ │ ├── classRakNet_1_1CloudServer.html │ │ │ ├── classRakNet_1_1CloudServer.png │ │ │ ├── classRakNet_1_1CloudServerQueryFilter-members.html │ │ │ ├── classRakNet_1_1CloudServerQueryFilter.html │ │ │ ├── classRakNet_1_1CommandParserInterface-members.html │ │ │ ├── classRakNet_1_1CommandParserInterface.html │ │ │ ├── classRakNet_1_1CommandParserInterface.png │ │ │ ├── classRakNet_1_1ConnectionGraph2-members.html │ │ │ ├── classRakNet_1_1ConnectionGraph2.html │ │ │ ├── classRakNet_1_1ConnectionGraph2.png │ │ │ ├── classRakNet_1_1Connection__RM3-members.html │ │ │ ├── classRakNet_1_1Connection__RM3.html │ │ │ ├── classRakNet_1_1ConsoleServer-members.html │ │ │ ├── classRakNet_1_1ConsoleServer.html │ │ │ ├── classRakNet_1_1DataCompressor-members.html │ │ │ ├── classRakNet_1_1DataCompressor.html │ │ │ ├── classRakNet_1_1EmailSender-members.html │ │ │ ├── classRakNet_1_1EmailSender.html │ │ │ ├── classRakNet_1_1FLP__Printf-members.html │ │ │ ├── classRakNet_1_1FLP__Printf.html │ │ │ ├── classRakNet_1_1FLP__Printf.png │ │ │ ├── classRakNet_1_1FileListProgress-members.html │ │ │ ├── classRakNet_1_1FileListProgress.html │ │ │ ├── classRakNet_1_1FileListProgress.png │ │ │ ├── classRakNet_1_1FileListTransfer-members.html │ │ │ ├── classRakNet_1_1FileListTransfer.html │ │ │ ├── classRakNet_1_1FileListTransfer.png │ │ │ ├── classRakNet_1_1FileListTransferCBInterface-members.html │ │ │ ├── classRakNet_1_1FileListTransferCBInterface.html │ │ │ ├── classRakNet_1_1HTTPConnection-members.html │ │ │ ├── classRakNet_1_1HTTPConnection.html │ │ │ ├── classRakNet_1_1HTTPConnection2-members.html │ │ │ ├── classRakNet_1_1HTTPConnection2.html │ │ │ ├── classRakNet_1_1HTTPConnection2.png │ │ │ ├── classRakNet_1_1HuffmanEncodingTree-members.html │ │ │ ├── classRakNet_1_1HuffmanEncodingTree.html │ │ │ ├── classRakNet_1_1HuffmanEncodingTreeFactory-members.html │ │ │ ├── classRakNet_1_1HuffmanEncodingTreeFactory.html │ │ │ ├── classRakNet_1_1Lobby2Client-members.html │ │ │ ├── classRakNet_1_1Lobby2Client.html │ │ │ ├── classRakNet_1_1Lobby2Client.png │ │ │ ├── classRakNet_1_1Lobby2Plugin-members.html │ │ │ ├── classRakNet_1_1Lobby2Plugin.html │ │ │ ├── classRakNet_1_1Lobby2Plugin.png │ │ │ ├── classRakNet_1_1Lobby2Server-members.html │ │ │ ├── classRakNet_1_1Lobby2Server.html │ │ │ ├── classRakNet_1_1Lobby2Server.png │ │ │ ├── classRakNet_1_1Lobby2Server__PGSQL-members.html │ │ │ ├── classRakNet_1_1Lobby2Server__PGSQL.html │ │ │ ├── classRakNet_1_1Lobby2Server__PGSQL.png │ │ │ ├── classRakNet_1_1LogCommandParser-members.html │ │ │ ├── classRakNet_1_1LogCommandParser.html │ │ │ ├── classRakNet_1_1LogCommandParser.png │ │ │ ├── classRakNet_1_1MessageFilter-members.html │ │ │ ├── classRakNet_1_1MessageFilter.html │ │ │ ├── classRakNet_1_1MessageFilter.png │ │ │ ├── classRakNet_1_1NatPunchthroughClient-members.html │ │ │ ├── classRakNet_1_1NatPunchthroughClient.html │ │ │ ├── classRakNet_1_1NatPunchthroughClient.png │ │ │ ├── classRakNet_1_1NatPunchthroughServer-members.html │ │ │ ├── classRakNet_1_1NatPunchthroughServer.html │ │ │ ├── classRakNet_1_1NatPunchthroughServer.png │ │ │ ├── classRakNet_1_1NatTypeDetectionClient-members.html │ │ │ ├── classRakNet_1_1NatTypeDetectionClient.html │ │ │ ├── classRakNet_1_1NatTypeDetectionClient.png │ │ │ ├── classRakNet_1_1NatTypeDetectionServer-members.html │ │ │ ├── classRakNet_1_1NatTypeDetectionServer.html │ │ │ ├── classRakNet_1_1NatTypeDetectionServer.png │ │ │ ├── classRakNet_1_1NetworkIDManager-members.html │ │ │ ├── classRakNet_1_1NetworkIDManager.html │ │ │ ├── classRakNet_1_1NetworkIDObject-members.html │ │ │ ├── classRakNet_1_1NetworkIDObject.html │ │ │ ├── classRakNet_1_1NetworkIDObject.png │ │ │ ├── classRakNet_1_1PacketConsoleLogger-members.html │ │ │ ├── classRakNet_1_1PacketConsoleLogger.html │ │ │ ├── classRakNet_1_1PacketConsoleLogger.png │ │ │ ├── classRakNet_1_1PacketFileLogger-members.html │ │ │ ├── classRakNet_1_1PacketFileLogger.html │ │ │ ├── classRakNet_1_1PacketFileLogger.png │ │ │ ├── classRakNet_1_1PacketLogger-members.html │ │ │ ├── classRakNet_1_1PacketLogger.html │ │ │ ├── classRakNet_1_1PacketLogger.png │ │ │ ├── classRakNet_1_1PacketOutputWindowLogger-members.html │ │ │ ├── classRakNet_1_1PacketOutputWindowLogger.html │ │ │ ├── classRakNet_1_1PacketOutputWindowLogger.png │ │ │ ├── classRakNet_1_1PluginInterface2-members.html │ │ │ ├── classRakNet_1_1PluginInterface2.html │ │ │ ├── classRakNet_1_1PluginInterface2.png │ │ │ ├── classRakNet_1_1RPC3-members.html │ │ │ ├── classRakNet_1_1RPC3.html │ │ │ ├── classRakNet_1_1RPC3.png │ │ │ ├── classRakNet_1_1RPC4-members.html │ │ │ ├── classRakNet_1_1RPC4.html │ │ │ ├── classRakNet_1_1RPC4.png │ │ │ ├── classRakNet_1_1RPC4GlobalRegistration-members.html │ │ │ ├── classRakNet_1_1RPC4GlobalRegistration.html │ │ │ ├── classRakNet_1_1Rackspace-members.html │ │ │ ├── classRakNet_1_1Rackspace.html │ │ │ ├── classRakNet_1_1Rackspace2EventCallback-members.html │ │ │ ├── classRakNet_1_1Rackspace2EventCallback.html │ │ │ ├── classRakNet_1_1Rackspace2EventCallback.png │ │ │ ├── classRakNet_1_1RackspaceEventCallback__Default-members.html │ │ │ ├── classRakNet_1_1RackspaceEventCallback__Default.html │ │ │ ├── classRakNet_1_1RackspaceEventCallback__Default.png │ │ │ ├── classRakNet_1_1RakNetCommandParser-members.html │ │ │ ├── classRakNet_1_1RakNetCommandParser.html │ │ │ ├── classRakNet_1_1RakNetCommandParser.png │ │ │ ├── classRakNet_1_1RakNetTransport2-members.html │ │ │ ├── classRakNet_1_1RakNetTransport2.html │ │ │ ├── classRakNet_1_1RakNetTransport2.png │ │ │ ├── classRakNet_1_1RakPeer-members.html │ │ │ ├── classRakNet_1_1RakPeer.html │ │ │ ├── classRakNet_1_1RakPeer.png │ │ │ ├── classRakNet_1_1RakPeerInterface-members.html │ │ │ ├── classRakNet_1_1RakPeerInterface.html │ │ │ ├── classRakNet_1_1RakPeerInterface.png │ │ │ ├── classRakNet_1_1RakString-members.html │ │ │ ├── classRakNet_1_1RakString.html │ │ │ ├── classRakNet_1_1RakVoice-members.html │ │ │ ├── classRakNet_1_1RakVoice.html │ │ │ ├── classRakNet_1_1RakVoice.png │ │ │ ├── classRakNet_1_1RakWString-members.html │ │ │ ├── classRakNet_1_1RakWString.html │ │ │ ├── classRakNet_1_1ReadyEvent-members.html │ │ │ ├── classRakNet_1_1ReadyEvent.html │ │ │ ├── classRakNet_1_1ReadyEvent.png │ │ │ ├── classRakNet_1_1RelayPlugin-members.html │ │ │ ├── classRakNet_1_1RelayPlugin.html │ │ │ ├── classRakNet_1_1RelayPlugin.png │ │ │ ├── classRakNet_1_1ReliabilityLayer-members.html │ │ │ ├── classRakNet_1_1ReliabilityLayer.html │ │ │ ├── classRakNet_1_1Replica3-members.html │ │ │ ├── classRakNet_1_1Replica3.html │ │ │ ├── classRakNet_1_1Replica3.png │ │ │ ├── classRakNet_1_1Replica3Composite-members.html │ │ │ ├── classRakNet_1_1Replica3Composite.html │ │ │ ├── classRakNet_1_1Replica3Composite.png │ │ │ ├── classRakNet_1_1ReplicaManager3-members.html │ │ │ ├── classRakNet_1_1ReplicaManager3.html │ │ │ ├── classRakNet_1_1ReplicaManager3.png │ │ │ ├── classRakNet_1_1RoomsPlugin-members.html │ │ │ ├── classRakNet_1_1RoomsPlugin.html │ │ │ ├── classRakNet_1_1RoomsPlugin.png │ │ │ ├── classRakNet_1_1Router2-members.html │ │ │ ├── classRakNet_1_1Router2.html │ │ │ ├── classRakNet_1_1Router2.png │ │ │ ├── classRakNet_1_1SQLite3ClientPlugin-members.html │ │ │ ├── classRakNet_1_1SQLite3ClientPlugin.html │ │ │ ├── classRakNet_1_1SQLite3ClientPlugin.png │ │ │ ├── classRakNet_1_1SQLite3PluginResultInterface-members.html │ │ │ ├── classRakNet_1_1SQLite3PluginResultInterface.html │ │ │ ├── classRakNet_1_1SQLite3PluginResultInterface.png │ │ │ ├── classRakNet_1_1SQLite3PluginResultInterface__Printf-members.html │ │ │ ├── classRakNet_1_1SQLite3PluginResultInterface__Printf.html │ │ │ ├── classRakNet_1_1SQLite3PluginResultInterface__Printf.png │ │ │ ├── classRakNet_1_1SQLite3ServerPlugin-members.html │ │ │ ├── classRakNet_1_1SQLite3ServerPlugin.html │ │ │ ├── classRakNet_1_1SQLite3ServerPlugin.png │ │ │ ├── classRakNet_1_1SimpleMutex-members.html │ │ │ ├── classRakNet_1_1SimpleMutex.html │ │ │ ├── classRakNet_1_1StatisticsHistory-members.html │ │ │ ├── classRakNet_1_1StatisticsHistory.html │ │ │ ├── classRakNet_1_1StatisticsHistoryPlugin-members.html │ │ │ ├── classRakNet_1_1StatisticsHistoryPlugin.html │ │ │ ├── classRakNet_1_1StatisticsHistoryPlugin.png │ │ │ ├── classRakNet_1_1StringCompressor-members.html │ │ │ ├── classRakNet_1_1StringCompressor.html │ │ │ ├── classRakNet_1_1StringTable-members.html │ │ │ ├── classRakNet_1_1StringTable.html │ │ │ ├── classRakNet_1_1TM__Team-members.html │ │ │ ├── classRakNet_1_1TM__Team.html │ │ │ ├── classRakNet_1_1TM__TeamMember-members.html │ │ │ ├── classRakNet_1_1TM__TeamMember.html │ │ │ ├── classRakNet_1_1TM__World-members.html │ │ │ ├── classRakNet_1_1TM__World.html │ │ │ ├── classRakNet_1_1TeamBalancer-members.html │ │ │ ├── classRakNet_1_1TeamBalancer.html │ │ │ ├── classRakNet_1_1TeamBalancer.png │ │ │ ├── classRakNet_1_1TeamManager-members.html │ │ │ ├── classRakNet_1_1TeamManager.html │ │ │ ├── classRakNet_1_1TeamManager.png │ │ │ ├── classRakNet_1_1TelnetTransport-members.html │ │ │ ├── classRakNet_1_1TelnetTransport.html │ │ │ ├── classRakNet_1_1TelnetTransport.png │ │ │ ├── classRakNet_1_1ThreadsafePacketLogger-members.html │ │ │ ├── classRakNet_1_1ThreadsafePacketLogger.html │ │ │ ├── classRakNet_1_1ThreadsafePacketLogger.png │ │ │ ├── classRakNet_1_1TransportInterface-members.html │ │ │ ├── classRakNet_1_1TransportInterface.html │ │ │ ├── classRakNet_1_1TransportInterface.png │ │ │ ├── classRakNet_1_1TwoWayAuthentication-members.html │ │ │ ├── classRakNet_1_1TwoWayAuthentication.html │ │ │ ├── classRakNet_1_1TwoWayAuthentication.png │ │ │ ├── classRakNet_1_1UDPForwarder-members.html │ │ │ ├── classRakNet_1_1UDPForwarder.html │ │ │ ├── classRakNet_1_1UDPProxyClient-members.html │ │ │ ├── classRakNet_1_1UDPProxyClient.html │ │ │ ├── classRakNet_1_1UDPProxyClient.png │ │ │ ├── classRakNet_1_1UDPProxyCoordinator-members.html │ │ │ ├── classRakNet_1_1UDPProxyCoordinator.html │ │ │ ├── classRakNet_1_1UDPProxyCoordinator.png │ │ │ ├── classRakNet_1_1UDPProxyServer-members.html │ │ │ ├── classRakNet_1_1UDPProxyServer.html │ │ │ ├── classRakNet_1_1UDPProxyServer.png │ │ │ ├── classRakNet_1_1VariableDeltaSerializer-members.html │ │ │ ├── classRakNet_1_1VariableDeltaSerializer.html │ │ │ ├── classRakNet_1_1VariableListDeltaTracker-members.html │ │ │ ├── classRakNet_1_1VariableListDeltaTracker.html │ │ │ ├── classRefCountedObj-members.html │ │ │ ├── classRefCountedObj.html │ │ │ ├── classes.html │ │ │ ├── closed.png │ │ │ ├── deprecated.html │ │ │ ├── dir_275089585c7fc1b5fd5d7d42c69cb1da.html │ │ │ ├── dir_32b41f0f55e5324f9fedfb913100c765.html │ │ │ ├── dir_36698a30c609fd2b57165874cd6e5fa0.html │ │ │ ├── dir_3802b82eb7b55106bbeeb26dc87fdfb6.html │ │ │ ├── dir_474ce5450895b8d9723668375859ccbf.html │ │ │ ├── dir_4a2f0c153d55cb7466863768bf5c87c3.html │ │ │ ├── dir_61dd9dcc78af3e017a5d08c01d8d6beb.html │ │ │ ├── dir_627d92fb3d84d3a0c9d2baa2b21f3a16.html │ │ │ ├── dir_6cd9e47870b2cdd158ab62465a0b9bce.html │ │ │ ├── dir_925e021c33bae97ed7538b2a8e0466aa.html │ │ │ ├── dir_95a88bc15789c32f58c37e3ce69c81db.html │ │ │ ├── dir_aa7377166d6c74ac4d5d430f5adf71a0.html │ │ │ ├── dir_b97582835223b096f57cf38916fef3b6.html │ │ │ ├── dir_d349b3b4492d120fadf36aec47a37604.html │ │ │ ├── dir_e6340333721cc0ae169d71c97e5c330a.html │ │ │ ├── dir_f2a21d1c766a53607aac8d9a40df8e3e.html │ │ │ ├── doxygen.css │ │ │ ├── doxygen.png │ │ │ ├── dynsections.js │ │ │ ├── files.html │ │ │ ├── ftv2blank.png │ │ │ ├── ftv2cl.png │ │ │ ├── ftv2doc.png │ │ │ ├── ftv2folderclosed.png │ │ │ ├── ftv2folderopen.png │ │ │ ├── ftv2lastnode.png │ │ │ ├── ftv2link.png │ │ │ ├── ftv2mlastnode.png │ │ │ ├── ftv2mnode.png │ │ │ ├── ftv2mo.png │ │ │ ├── ftv2node.png │ │ │ ├── ftv2ns.png │ │ │ ├── ftv2plastnode.png │ │ │ ├── ftv2pnode.png │ │ │ ├── ftv2splitbar.png │ │ │ ├── ftv2vertline.png │ │ │ ├── functions.html │ │ │ ├── functions_0x61.html │ │ │ ├── functions_0x62.html │ │ │ ├── functions_0x63.html │ │ │ ├── functions_0x64.html │ │ │ ├── functions_0x65.html │ │ │ ├── functions_0x66.html │ │ │ ├── functions_0x67.html │ │ │ ├── functions_0x68.html │ │ │ ├── functions_0x69.html │ │ │ ├── functions_0x6b.html │ │ │ ├── functions_0x6c.html │ │ │ ├── functions_0x6d.html │ │ │ ├── functions_0x6e.html │ │ │ ├── functions_0x6f.html │ │ │ ├── functions_0x70.html │ │ │ ├── functions_0x71.html │ │ │ ├── functions_0x72.html │ │ │ ├── functions_0x73.html │ │ │ ├── functions_0x74.html │ │ │ ├── functions_0x75.html │ │ │ ├── functions_0x76.html │ │ │ ├── functions_0x77.html │ │ │ ├── functions_0x7e.html │ │ │ ├── functions_enum.html │ │ │ ├── functions_eval.html │ │ │ ├── functions_func.html │ │ │ ├── functions_func_0x61.html │ │ │ ├── functions_func_0x62.html │ │ │ ├── functions_func_0x63.html │ │ │ ├── functions_func_0x64.html │ │ │ ├── functions_func_0x65.html │ │ │ ├── functions_func_0x66.html │ │ │ ├── functions_func_0x67.html │ │ │ ├── functions_func_0x68.html │ │ │ ├── functions_func_0x69.html │ │ │ ├── functions_func_0x6b.html │ │ │ ├── functions_func_0x6c.html │ │ │ ├── functions_func_0x6d.html │ │ │ ├── functions_func_0x6e.html │ │ │ ├── functions_func_0x6f.html │ │ │ ├── functions_func_0x70.html │ │ │ ├── functions_func_0x71.html │ │ │ ├── functions_func_0x72.html │ │ │ ├── functions_func_0x73.html │ │ │ ├── functions_func_0x74.html │ │ │ ├── functions_func_0x75.html │ │ │ ├── functions_func_0x76.html │ │ │ ├── functions_func_0x77.html │ │ │ ├── functions_func_0x7e.html │ │ │ ├── functions_vars.html │ │ │ ├── globals.html │ │ │ ├── globals_defs.html │ │ │ ├── globals_enum.html │ │ │ ├── globals_eval.html │ │ │ ├── globals_func.html │ │ │ ├── globals_type.html │ │ │ ├── group__CLOUD__GROUP.html │ │ │ ├── group__DIRECTORY__DELTA__TRANSFER__GROUP.html │ │ │ ├── group__FILE__LIST__TRANSFER__GROUP.html │ │ │ ├── group__LOBBY__2__CLIENT.html │ │ │ ├── group__LOBBY__2__COMMANDS.html │ │ │ ├── group__LOBBY__2__GROUP.html │ │ │ ├── group__LOBBY__2__NOTIFICATIONS.html │ │ │ ├── group__LOBBY__2__SERVER.html │ │ │ ├── group__MESSAGEFILTER__GROUP.html │ │ │ ├── group__NAT__PUNCHTHROUGH__GROUP.html │ │ │ ├── group__NAT__TYPE__DETECTION__GROUP.html │ │ │ ├── group__PACKETLOGGER__GROUP.html │ │ │ ├── group__PLUGINS__GROUP.html │ │ │ ├── group__PLUGIN__INTERFACE__GROUP.html │ │ │ ├── group__RAKNET__TRANSPORT__GROUP.html │ │ │ ├── group__READY__EVENT__GROUP.html │ │ │ ├── group__RELAY__PLUGIN__GROUP.html │ │ │ ├── group__REPLICA__MANAGER__GROUP3.html │ │ │ ├── group__ROOMS__COMMANDS.html │ │ │ ├── group__ROOMS__GROUP.html │ │ │ ├── group__ROOMS__NOTIFICATIONS.html │ │ │ ├── group__ROUTER__2__GROUP.html │ │ │ ├── group__RPC__3__GROUP.html │ │ │ ├── group__RPC__PLUGIN__GROUP.html │ │ │ ├── group__SQL__LITE__3__PLUGIN.html │ │ │ ├── group__TEAM__BALANCER__GROUP.html │ │ │ ├── group__TEAM__MANAGER__GROUP.html │ │ │ ├── group__UDP__PROXY__GROUP.html │ │ │ ├── hierarchy.html │ │ │ ├── index.html │ │ │ ├── jquery.js │ │ │ ├── modules.html │ │ │ ├── namespaceDataStructures.html │ │ │ ├── namespaceRakNet.html │ │ │ ├── namespacemembers.html │ │ │ ├── namespacemembers_enum.html │ │ │ ├── namespacemembers_eval.html │ │ │ ├── namespacemembers_func.html │ │ │ ├── namespacemembers_type.html │ │ │ ├── namespacemembers_vars.html │ │ │ ├── namespaces.html │ │ │ ├── nav_f.png │ │ │ ├── nav_g.png │ │ │ ├── nav_h.png │ │ │ ├── open.png │ │ │ ├── pages.html │ │ │ ├── structDataStructures_1_1Page-members.html │ │ │ ├── structDataStructures_1_1Page.html │ │ │ ├── structDataStructures_1_1Table_1_1Cell-members.html │ │ │ ├── structDataStructures_1_1Table_1_1Cell.html │ │ │ ├── structDataStructures_1_1Table_1_1ColumnDescriptor-members.html │ │ │ ├── structDataStructures_1_1Table_1_1ColumnDescriptor.html │ │ │ ├── structDataStructures_1_1Table_1_1Row-members.html │ │ │ ├── structDataStructures_1_1Table_1_1Row.html │ │ │ ├── structRakNet_1_1AcceptInvite__Func-members.html │ │ │ ├── structRakNet_1_1AcceptInvite__Func.html │ │ │ ├── structRakNet_1_1AcceptInvite__Func.png │ │ │ ├── structRakNet_1_1AddUserToQuickJoin__Func-members.html │ │ │ ├── structRakNet_1_1AddUserToQuickJoin__Func.html │ │ │ ├── structRakNet_1_1AddUserToQuickJoin__Func.png │ │ │ ├── structRakNet_1_1AreAllMembersReady__Func-members.html │ │ │ ├── structRakNet_1_1AreAllMembersReady__Func.html │ │ │ ├── structRakNet_1_1AreAllMembersReady__Func.png │ │ │ ├── structRakNet_1_1AutopatcherServerLoadNotifier_1_1AutopatcherState-members.html │ │ │ ├── structRakNet_1_1AutopatcherServerLoadNotifier_1_1AutopatcherState.html │ │ │ ├── structRakNet_1_1AutopatcherServer_1_1ResultTypeAndBitstream-members.html │ │ │ ├── structRakNet_1_1AutopatcherServer_1_1ResultTypeAndBitstream.html │ │ │ ├── structRakNet_1_1Bitstream__Func-members.html │ │ │ ├── structRakNet_1_1Bitstream__Func.html │ │ │ ├── structRakNet_1_1Bitstream__Func.png │ │ │ ├── structRakNet_1_1Bitstream__Notification-members.html │ │ │ ├── structRakNet_1_1Bitstream__Notification.html │ │ │ ├── structRakNet_1_1Bitstream__Notification.png │ │ │ ├── structRakNet_1_1BookmarkedUsers__Add-members.html │ │ │ ├── structRakNet_1_1BookmarkedUsers__Add.html │ │ │ ├── structRakNet_1_1BookmarkedUsers__Add.png │ │ │ ├── structRakNet_1_1BookmarkedUsers__Get-members.html │ │ │ ├── structRakNet_1_1BookmarkedUsers__Get.html │ │ │ ├── structRakNet_1_1BookmarkedUsers__Get.png │ │ │ ├── structRakNet_1_1BookmarkedUsers__Remove-members.html │ │ │ ├── structRakNet_1_1BookmarkedUsers__Remove.html │ │ │ ├── structRakNet_1_1BookmarkedUsers__Remove.png │ │ │ ├── structRakNet_1_1CDKey__Add-members.html │ │ │ ├── structRakNet_1_1CDKey__Add.html │ │ │ ├── structRakNet_1_1CDKey__Add.png │ │ │ ├── structRakNet_1_1CDKey__FlagStolen-members.html │ │ │ ├── structRakNet_1_1CDKey__FlagStolen.html │ │ │ ├── structRakNet_1_1CDKey__FlagStolen.png │ │ │ ├── structRakNet_1_1CDKey__GetStatus-members.html │ │ │ ├── structRakNet_1_1CDKey__GetStatus.html │ │ │ ├── structRakNet_1_1CDKey__GetStatus.png │ │ │ ├── structRakNet_1_1CDKey__Use-members.html │ │ │ ├── structRakNet_1_1CDKey__Use.html │ │ │ ├── structRakNet_1_1CDKey__Use.png │ │ │ ├── structRakNet_1_1ChangeHandle__Func-members.html │ │ │ ├── structRakNet_1_1ChangeHandle__Func.html │ │ │ ├── structRakNet_1_1ChangeHandle__Func.png │ │ │ ├── structRakNet_1_1ChangeRoomName__Func-members.html │ │ │ ├── structRakNet_1_1ChangeRoomName__Func.html │ │ │ ├── structRakNet_1_1ChangeRoomName__Func.png │ │ │ ├── structRakNet_1_1ChangeSlotCounts__Func-members.html │ │ │ ├── structRakNet_1_1ChangeSlotCounts__Func.html │ │ │ ├── structRakNet_1_1ChangeSlotCounts__Func.png │ │ │ ├── structRakNet_1_1Chat__Func-members.html │ │ │ ├── structRakNet_1_1Chat__Func.html │ │ │ ├── structRakNet_1_1Chat__Func.png │ │ │ ├── structRakNet_1_1Chat__Notification-members.html │ │ │ ├── structRakNet_1_1Chat__Notification.html │ │ │ ├── structRakNet_1_1Chat__Notification.png │ │ │ ├── structRakNet_1_1Clans__AcceptJoinInvitation-members.html │ │ │ ├── structRakNet_1_1Clans__AcceptJoinInvitation.html │ │ │ ├── structRakNet_1_1Clans__AcceptJoinInvitation.png │ │ │ ├── structRakNet_1_1Clans__AcceptJoinRequest-members.html │ │ │ ├── structRakNet_1_1Clans__AcceptJoinRequest.html │ │ │ ├── structRakNet_1_1Clans__AcceptJoinRequest.png │ │ │ ├── structRakNet_1_1Clans__ChangeHandle-members.html │ │ │ ├── structRakNet_1_1Clans__ChangeHandle.html │ │ │ ├── structRakNet_1_1Clans__ChangeHandle.png │ │ │ ├── structRakNet_1_1Clans__Create-members.html │ │ │ ├── structRakNet_1_1Clans__Create.html │ │ │ ├── structRakNet_1_1Clans__Create.png │ │ │ ├── structRakNet_1_1Clans__CreateBoard-members.html │ │ │ ├── structRakNet_1_1Clans__CreateBoard.html │ │ │ ├── structRakNet_1_1Clans__CreateBoard.png │ │ │ ├── structRakNet_1_1Clans__CreateNewTopic-members.html │ │ │ ├── structRakNet_1_1Clans__CreateNewTopic.html │ │ │ ├── structRakNet_1_1Clans__CreateNewTopic.png │ │ │ ├── structRakNet_1_1Clans__DestroyBoard-members.html │ │ │ ├── structRakNet_1_1Clans__DestroyBoard.html │ │ │ ├── structRakNet_1_1Clans__DestroyBoard.png │ │ │ ├── structRakNet_1_1Clans__DownloadInvitationList-members.html │ │ │ ├── structRakNet_1_1Clans__DownloadInvitationList.html │ │ │ ├── structRakNet_1_1Clans__DownloadInvitationList.png │ │ │ ├── structRakNet_1_1Clans__DownloadRequestList-members.html │ │ │ ├── structRakNet_1_1Clans__DownloadRequestList.html │ │ │ ├── structRakNet_1_1Clans__DownloadRequestList.png │ │ │ ├── structRakNet_1_1Clans__Get-members.html │ │ │ ├── structRakNet_1_1Clans__Get.html │ │ │ ├── structRakNet_1_1Clans__Get.png │ │ │ ├── structRakNet_1_1Clans__GetBlacklist-members.html │ │ │ ├── structRakNet_1_1Clans__GetBlacklist.html │ │ │ ├── structRakNet_1_1Clans__GetBlacklist.png │ │ │ ├── structRakNet_1_1Clans__GetBoards-members.html │ │ │ ├── structRakNet_1_1Clans__GetBoards.html │ │ │ ├── structRakNet_1_1Clans__GetBoards.png │ │ │ ├── structRakNet_1_1Clans__GetList-members.html │ │ │ ├── structRakNet_1_1Clans__GetList.html │ │ │ ├── structRakNet_1_1Clans__GetList.png │ │ │ ├── structRakNet_1_1Clans__GetMemberProperties-members.html │ │ │ ├── structRakNet_1_1Clans__GetMemberProperties.html │ │ │ ├── structRakNet_1_1Clans__GetMemberProperties.png │ │ │ ├── structRakNet_1_1Clans__GetMembers-members.html │ │ │ ├── structRakNet_1_1Clans__GetMembers.html │ │ │ ├── structRakNet_1_1Clans__GetMembers.png │ │ │ ├── structRakNet_1_1Clans__GetPosts-members.html │ │ │ ├── structRakNet_1_1Clans__GetPosts.html │ │ │ ├── structRakNet_1_1Clans__GetPosts.png │ │ │ ├── structRakNet_1_1Clans__GetProperties-members.html │ │ │ ├── structRakNet_1_1Clans__GetProperties.html │ │ │ ├── structRakNet_1_1Clans__GetProperties.png │ │ │ ├── structRakNet_1_1Clans__GetTopics-members.html │ │ │ ├── structRakNet_1_1Clans__GetTopics.html │ │ │ ├── structRakNet_1_1Clans__GetTopics.png │ │ │ ├── structRakNet_1_1Clans__GrantLeader-members.html │ │ │ ├── structRakNet_1_1Clans__GrantLeader.html │ │ │ ├── structRakNet_1_1Clans__GrantLeader.png │ │ │ ├── structRakNet_1_1Clans__KickAndBlacklistUser-members.html │ │ │ ├── structRakNet_1_1Clans__KickAndBlacklistUser.html │ │ │ ├── structRakNet_1_1Clans__KickAndBlacklistUser.png │ │ │ ├── structRakNet_1_1Clans__Leave-members.html │ │ │ ├── structRakNet_1_1Clans__Leave.html │ │ │ ├── structRakNet_1_1Clans__Leave.png │ │ │ ├── structRakNet_1_1Clans__RejectJoinInvitation-members.html │ │ │ ├── structRakNet_1_1Clans__RejectJoinInvitation.html │ │ │ ├── structRakNet_1_1Clans__RejectJoinInvitation.png │ │ │ ├── structRakNet_1_1Clans__RejectJoinRequest-members.html │ │ │ ├── structRakNet_1_1Clans__RejectJoinRequest.html │ │ │ ├── structRakNet_1_1Clans__RejectJoinRequest.png │ │ │ ├── structRakNet_1_1Clans__RemovePost-members.html │ │ │ ├── structRakNet_1_1Clans__RemovePost.html │ │ │ ├── structRakNet_1_1Clans__RemovePost.png │ │ │ ├── structRakNet_1_1Clans__ReplyToTopic-members.html │ │ │ ├── structRakNet_1_1Clans__ReplyToTopic.html │ │ │ ├── structRakNet_1_1Clans__ReplyToTopic.png │ │ │ ├── structRakNet_1_1Clans__SendJoinInvitation-members.html │ │ │ ├── structRakNet_1_1Clans__SendJoinInvitation.html │ │ │ ├── structRakNet_1_1Clans__SendJoinInvitation.png │ │ │ ├── structRakNet_1_1Clans__SendJoinRequest-members.html │ │ │ ├── structRakNet_1_1Clans__SendJoinRequest.html │ │ │ ├── structRakNet_1_1Clans__SendJoinRequest.png │ │ │ ├── structRakNet_1_1Clans__SetMemberRank-members.html │ │ │ ├── structRakNet_1_1Clans__SetMemberRank.html │ │ │ ├── structRakNet_1_1Clans__SetMemberRank.png │ │ │ ├── structRakNet_1_1Clans__SetMyMemberProperties-members.html │ │ │ ├── structRakNet_1_1Clans__SetMyMemberProperties.html │ │ │ ├── structRakNet_1_1Clans__SetMyMemberProperties.png │ │ │ ├── structRakNet_1_1Clans__SetProperties-members.html │ │ │ ├── structRakNet_1_1Clans__SetProperties.html │ │ │ ├── structRakNet_1_1Clans__SetProperties.png │ │ │ ├── structRakNet_1_1Clans__SetSubleaderStatus-members.html │ │ │ ├── structRakNet_1_1Clans__SetSubleaderStatus.html │ │ │ ├── structRakNet_1_1Clans__SetSubleaderStatus.png │ │ │ ├── structRakNet_1_1Clans__UnblacklistUser-members.html │ │ │ ├── structRakNet_1_1Clans__UnblacklistUser.html │ │ │ ├── structRakNet_1_1Clans__UnblacklistUser.png │ │ │ ├── structRakNet_1_1Clans__WithdrawJoinInvitation-members.html │ │ │ ├── structRakNet_1_1Clans__WithdrawJoinInvitation.html │ │ │ ├── structRakNet_1_1Clans__WithdrawJoinInvitation.png │ │ │ ├── structRakNet_1_1Clans__WithdrawJoinRequest-members.html │ │ │ ├── structRakNet_1_1Clans__WithdrawJoinRequest.html │ │ │ ├── structRakNet_1_1Clans__WithdrawJoinRequest.png │ │ │ ├── structRakNet_1_1Client__ChangeHandle-members.html │ │ │ ├── structRakNet_1_1Client__ChangeHandle.html │ │ │ ├── structRakNet_1_1Client__ChangeHandle.png │ │ │ ├── structRakNet_1_1Client__GetAccountDetails-members.html │ │ │ ├── structRakNet_1_1Client__GetAccountDetails.html │ │ │ ├── structRakNet_1_1Client__GetAccountDetails.png │ │ │ ├── structRakNet_1_1Client__GetEmailAddress-members.html │ │ │ ├── structRakNet_1_1Client__GetEmailAddress.html │ │ │ ├── structRakNet_1_1Client__GetEmailAddress.png │ │ │ ├── structRakNet_1_1Client__GetIgnoreList-members.html │ │ │ ├── structRakNet_1_1Client__GetIgnoreList.html │ │ │ ├── structRakNet_1_1Client__GetIgnoreList.png │ │ │ ├── structRakNet_1_1Client__GetPasswordByPasswordRecoveryAnswer-members.html │ │ │ ├── structRakNet_1_1Client__GetPasswordByPasswordRecoveryAnswer.html │ │ │ ├── structRakNet_1_1Client__GetPasswordByPasswordRecoveryAnswer.png │ │ │ ├── structRakNet_1_1Client__GetPasswordRecoveryQuestionByHandle-members.html │ │ │ ├── structRakNet_1_1Client__GetPasswordRecoveryQuestionByHandle.html │ │ │ ├── structRakNet_1_1Client__GetPasswordRecoveryQuestionByHandle.png │ │ │ ├── structRakNet_1_1Client__GetPresence-members.html │ │ │ ├── structRakNet_1_1Client__GetPresence.html │ │ │ ├── structRakNet_1_1Client__GetPresence.png │ │ │ ├── structRakNet_1_1Client__Login-members.html │ │ │ ├── structRakNet_1_1Client__Login.html │ │ │ ├── structRakNet_1_1Client__Login.png │ │ │ ├── structRakNet_1_1Client__Logoff-members.html │ │ │ ├── structRakNet_1_1Client__Logoff.html │ │ │ ├── structRakNet_1_1Client__Logoff.png │ │ │ ├── structRakNet_1_1Client__PerTitleBinaryStorage-members.html │ │ │ ├── structRakNet_1_1Client__PerTitleBinaryStorage.html │ │ │ ├── structRakNet_1_1Client__PerTitleBinaryStorage.png │ │ │ ├── structRakNet_1_1Client__RegisterAccount-members.html │ │ │ ├── structRakNet_1_1Client__RegisterAccount.html │ │ │ ├── structRakNet_1_1Client__RegisterAccount.png │ │ │ ├── structRakNet_1_1Client__SetPresence-members.html │ │ │ ├── structRakNet_1_1Client__SetPresence.html │ │ │ ├── structRakNet_1_1Client__SetPresence.png │ │ │ ├── structRakNet_1_1Client__StartIgnore-members.html │ │ │ ├── structRakNet_1_1Client__StartIgnore.html │ │ │ ├── structRakNet_1_1Client__StartIgnore.png │ │ │ ├── structRakNet_1_1Client__StopIgnore-members.html │ │ │ ├── structRakNet_1_1Client__StopIgnore.html │ │ │ ├── structRakNet_1_1Client__StopIgnore.png │ │ │ ├── structRakNet_1_1Client__UpdateAccount-members.html │ │ │ ├── structRakNet_1_1Client__UpdateAccount.html │ │ │ ├── structRakNet_1_1Client__UpdateAccount.png │ │ │ ├── structRakNet_1_1Client__ValidateHandle-members.html │ │ │ ├── structRakNet_1_1Client__ValidateHandle.html │ │ │ ├── structRakNet_1_1Client__ValidateHandle.png │ │ │ ├── structRakNet_1_1CloudKey-members.html │ │ │ ├── structRakNet_1_1CloudKey.html │ │ │ ├── structRakNet_1_1CloudQuery-members.html │ │ │ ├── structRakNet_1_1CloudQuery.html │ │ │ ├── structRakNet_1_1CreateRoom__Func-members.html │ │ │ ├── structRakNet_1_1CreateRoom__Func.html │ │ │ ├── structRakNet_1_1CreateRoom__Func.png │ │ │ ├── structRakNet_1_1CustomRoomPropertiesSet__Notification-members.html │ │ │ ├── structRakNet_1_1CustomRoomPropertiesSet__Notification.html │ │ │ ├── structRakNet_1_1CustomRoomPropertiesSet__Notification.png │ │ │ ├── structRakNet_1_1Emails__Delete-members.html │ │ │ ├── structRakNet_1_1Emails__Delete.html │ │ │ ├── structRakNet_1_1Emails__Delete.png │ │ │ ├── structRakNet_1_1Emails__Get-members.html │ │ │ ├── structRakNet_1_1Emails__Get.html │ │ │ ├── structRakNet_1_1Emails__Get.png │ │ │ ├── structRakNet_1_1Emails__Send-members.html │ │ │ ├── structRakNet_1_1Emails__Send.html │ │ │ ├── structRakNet_1_1Emails__Send.png │ │ │ ├── structRakNet_1_1Emails__SetStatus-members.html │ │ │ ├── structRakNet_1_1Emails__SetStatus.html │ │ │ ├── structRakNet_1_1Emails__SetStatus.png │ │ │ ├── structRakNet_1_1EnterRoom__Func-members.html │ │ │ ├── structRakNet_1_1EnterRoom__Func.html │ │ │ ├── structRakNet_1_1EnterRoom__Func.png │ │ │ ├── structRakNet_1_1FileListNode-members.html │ │ │ ├── structRakNet_1_1FileListNode.html │ │ │ ├── structRakNet_1_1Friends__AcceptInvite-members.html │ │ │ ├── structRakNet_1_1Friends__AcceptInvite.html │ │ │ ├── structRakNet_1_1Friends__AcceptInvite.png │ │ │ ├── structRakNet_1_1Friends__GetFriends-members.html │ │ │ ├── structRakNet_1_1Friends__GetFriends.html │ │ │ ├── structRakNet_1_1Friends__GetFriends.png │ │ │ ├── structRakNet_1_1Friends__GetInvites-members.html │ │ │ ├── structRakNet_1_1Friends__GetInvites.html │ │ │ ├── structRakNet_1_1Friends__GetInvites.png │ │ │ ├── structRakNet_1_1Friends__RejectInvite-members.html │ │ │ ├── structRakNet_1_1Friends__RejectInvite.html │ │ │ ├── structRakNet_1_1Friends__RejectInvite.png │ │ │ ├── structRakNet_1_1Friends__Remove-members.html │ │ │ ├── structRakNet_1_1Friends__Remove.html │ │ │ ├── structRakNet_1_1Friends__Remove.png │ │ │ ├── structRakNet_1_1Friends__SendInvite-members.html │ │ │ ├── structRakNet_1_1Friends__SendInvite.html │ │ │ ├── structRakNet_1_1Friends__SendInvite.png │ │ │ ├── structRakNet_1_1GetBanReason__Func-members.html │ │ │ ├── structRakNet_1_1GetBanReason__Func.html │ │ │ ├── structRakNet_1_1GetBanReason__Func.png │ │ │ ├── structRakNet_1_1GetInvitesToParticipant__Func-members.html │ │ │ ├── structRakNet_1_1GetInvitesToParticipant__Func.html │ │ │ ├── structRakNet_1_1GetInvitesToParticipant__Func.png │ │ │ ├── structRakNet_1_1GetReadyStatus__Func-members.html │ │ │ ├── structRakNet_1_1GetReadyStatus__Func.html │ │ │ ├── structRakNet_1_1GetReadyStatus__Func.png │ │ │ ├── structRakNet_1_1GetRoomLockState__Func-members.html │ │ │ ├── structRakNet_1_1GetRoomLockState__Func.html │ │ │ ├── structRakNet_1_1GetRoomLockState__Func.png │ │ │ ├── structRakNet_1_1GetRoomProperties__Func-members.html │ │ │ ├── structRakNet_1_1GetRoomProperties__Func.html │ │ │ ├── structRakNet_1_1GetRoomProperties__Func.png │ │ │ ├── structRakNet_1_1GrantModerator__Func-members.html │ │ │ ├── structRakNet_1_1GrantModerator__Func.html │ │ │ ├── structRakNet_1_1GrantModerator__Func.png │ │ │ ├── structRakNet_1_1HTTPConnection_1_1BadResponse-members.html │ │ │ ├── structRakNet_1_1HTTPConnection_1_1BadResponse.html │ │ │ ├── structRakNet_1_1HiddenFromSearchesSet__Notification-members.html │ │ │ ├── structRakNet_1_1HiddenFromSearchesSet__Notification.html │ │ │ ├── structRakNet_1_1HiddenFromSearchesSet__Notification.png │ │ │ ├── structRakNet_1_1IndexedBinaryValue-members.html │ │ │ ├── structRakNet_1_1IndexedBinaryValue.html │ │ │ ├── structRakNet_1_1IndexedIntegerValue-members.html │ │ │ ├── structRakNet_1_1IndexedIntegerValue.html │ │ │ ├── structRakNet_1_1InternalPacket-members.html │ │ │ ├── structRakNet_1_1InternalPacket.html │ │ │ ├── structRakNet_1_1InternalPacketRefCountedData-members.html │ │ │ ├── structRakNet_1_1InternalPacketRefCountedData.html │ │ │ ├── structRakNet_1_1IsInQuickJoin__Func-members.html │ │ │ ├── structRakNet_1_1IsInQuickJoin__Func.html │ │ │ ├── structRakNet_1_1IsInQuickJoin__Func.png │ │ │ ├── structRakNet_1_1JoinByFilter__Func-members.html │ │ │ ├── structRakNet_1_1JoinByFilter__Func.html │ │ │ ├── structRakNet_1_1JoinByFilter__Func.png │ │ │ ├── structRakNet_1_1KickMember__Func-members.html │ │ │ ├── structRakNet_1_1KickMember__Func.html │ │ │ ├── structRakNet_1_1KickMember__Func.png │ │ │ ├── structRakNet_1_1LastSerializationResult-members.html │ │ │ ├── structRakNet_1_1LastSerializationResult.html │ │ │ ├── structRakNet_1_1LeaveRoom__Func-members.html │ │ │ ├── structRakNet_1_1LeaveRoom__Func.html │ │ │ ├── structRakNet_1_1LeaveRoom__Func.png │ │ │ ├── structRakNet_1_1Lobby2Callbacks-members.html │ │ │ ├── structRakNet_1_1Lobby2Callbacks.html │ │ │ ├── structRakNet_1_1Lobby2Callbacks.png │ │ │ ├── structRakNet_1_1Lobby2Message-members.html │ │ │ ├── structRakNet_1_1Lobby2Message.html │ │ │ ├── structRakNet_1_1Lobby2Message.png │ │ │ ├── structRakNet_1_1Lobby2Presence-members.html │ │ │ ├── structRakNet_1_1Lobby2Presence.html │ │ │ ├── structRakNet_1_1Lobby2Printf-members.html │ │ │ ├── structRakNet_1_1Lobby2Printf.html │ │ │ ├── structRakNet_1_1Lobby2Printf.png │ │ │ ├── structRakNet_1_1Lobby2ServerCommand-members.html │ │ │ ├── structRakNet_1_1Lobby2ServerCommand.html │ │ │ ├── structRakNet_1_1Lobby2Server_1_1ConfigurationProperties-members.html │ │ │ ├── structRakNet_1_1Lobby2Server_1_1ConfigurationProperties.html │ │ │ ├── structRakNet_1_1LogCommandParser_1_1SystemAddressAndChannel-members.html │ │ │ ├── structRakNet_1_1LogCommandParser_1_1SystemAddressAndChannel.html │ │ │ ├── structRakNet_1_1ModeratorChanged__Notification-members.html │ │ │ ├── structRakNet_1_1ModeratorChanged__Notification.html │ │ │ ├── structRakNet_1_1ModeratorChanged__Notification.png │ │ │ ├── structRakNet_1_1Packet-members.html │ │ │ ├── structRakNet_1_1Packet.html │ │ │ ├── structRakNet_1_1Platform__Shutdown-members.html │ │ │ ├── structRakNet_1_1Platform__Shutdown.html │ │ │ ├── structRakNet_1_1Platform__Shutdown.png │ │ │ ├── structRakNet_1_1Platform__Startup-members.html │ │ │ ├── structRakNet_1_1Platform__Startup.html │ │ │ ├── structRakNet_1_1Platform__Startup.png │ │ │ ├── structRakNet_1_1PublicKey-members.html │ │ │ ├── structRakNet_1_1PublicKey.html │ │ │ ├── structRakNet_1_1QuickJoinEnteredRoom__Notification-members.html │ │ │ ├── structRakNet_1_1QuickJoinEnteredRoom__Notification.html │ │ │ ├── structRakNet_1_1QuickJoinEnteredRoom__Notification.png │ │ │ ├── structRakNet_1_1QuickJoinExpired__Notification-members.html │ │ │ ├── structRakNet_1_1QuickJoinExpired__Notification.html │ │ │ ├── structRakNet_1_1QuickJoinExpired__Notification.png │ │ │ ├── structRakNet_1_1RakNetGUID-members.html │ │ │ ├── structRakNet_1_1RakNetGUID.html │ │ │ ├── structRakNet_1_1RakNetStatistics-members.html │ │ │ ├── structRakNet_1_1RakNetStatistics.html │ │ │ ├── structRakNet_1_1Ranking__GetMatchBinaryData-members.html │ │ │ ├── structRakNet_1_1Ranking__GetMatchBinaryData.html │ │ │ ├── structRakNet_1_1Ranking__GetMatchBinaryData.png │ │ │ ├── structRakNet_1_1Ranking__GetMatches-members.html │ │ │ ├── structRakNet_1_1Ranking__GetMatches.html │ │ │ ├── structRakNet_1_1Ranking__GetMatches.png │ │ │ ├── structRakNet_1_1Ranking__GetRating-members.html │ │ │ ├── structRakNet_1_1Ranking__GetRating.html │ │ │ ├── structRakNet_1_1Ranking__GetRating.png │ │ │ ├── structRakNet_1_1Ranking__GetTotalScore-members.html │ │ │ ├── structRakNet_1_1Ranking__GetTotalScore.html │ │ │ ├── structRakNet_1_1Ranking__GetTotalScore.png │ │ │ ├── structRakNet_1_1Ranking__PruneMatches-members.html │ │ │ ├── structRakNet_1_1Ranking__PruneMatches.html │ │ │ ├── structRakNet_1_1Ranking__PruneMatches.png │ │ │ ├── structRakNet_1_1Ranking__SubmitMatch-members.html │ │ │ ├── structRakNet_1_1Ranking__SubmitMatch.html │ │ │ ├── structRakNet_1_1Ranking__SubmitMatch.png │ │ │ ├── structRakNet_1_1Ranking__UpdateRating-members.html │ │ │ ├── structRakNet_1_1Ranking__UpdateRating.html │ │ │ ├── structRakNet_1_1Ranking__UpdateRating.png │ │ │ ├── structRakNet_1_1Ranking__WipeMatches-members.html │ │ │ ├── structRakNet_1_1Ranking__WipeMatches.html │ │ │ ├── structRakNet_1_1Ranking__WipeMatches.png │ │ │ ├── structRakNet_1_1Ranking__WipeRatings-members.html │ │ │ ├── structRakNet_1_1Ranking__WipeRatings.html │ │ │ ├── structRakNet_1_1Ranking__WipeRatings.png │ │ │ ├── structRakNet_1_1Ranking__WipeScoresForPlayer-members.html │ │ │ ├── structRakNet_1_1Ranking__WipeScoresForPlayer.html │ │ │ ├── structRakNet_1_1Ranking__WipeScoresForPlayer.png │ │ │ ├── structRakNet_1_1RemoteClient-members.html │ │ │ ├── structRakNet_1_1RemoteClient.html │ │ │ ├── structRakNet_1_1RemoveUserFromQuickJoin__Func-members.html │ │ │ ├── structRakNet_1_1RemoveUserFromQuickJoin__Func.html │ │ │ ├── structRakNet_1_1RemoveUserFromQuickJoin__Func.png │ │ │ ├── structRakNet_1_1RoomDestroyedOnModeratorLeft__Notification-members.html │ │ │ ├── structRakNet_1_1RoomDestroyedOnModeratorLeft__Notification.html │ │ │ ├── structRakNet_1_1RoomDestroyedOnModeratorLeft__Notification.png │ │ │ ├── structRakNet_1_1RoomInvitationSent__Notification-members.html │ │ │ ├── structRakNet_1_1RoomInvitationSent__Notification.html │ │ │ ├── structRakNet_1_1RoomInvitationSent__Notification.png │ │ │ ├── structRakNet_1_1RoomInvitationWithdrawn__Notification-members.html │ │ │ ├── structRakNet_1_1RoomInvitationWithdrawn__Notification.html │ │ │ ├── structRakNet_1_1RoomInvitationWithdrawn__Notification.png │ │ │ ├── structRakNet_1_1RoomLockStateSet__Notification-members.html │ │ │ ├── structRakNet_1_1RoomLockStateSet__Notification.html │ │ │ ├── structRakNet_1_1RoomLockStateSet__Notification.png │ │ │ ├── structRakNet_1_1RoomMemberHandleSet__Notification-members.html │ │ │ ├── structRakNet_1_1RoomMemberHandleSet__Notification.html │ │ │ ├── structRakNet_1_1RoomMemberHandleSet__Notification.png │ │ │ ├── structRakNet_1_1RoomMemberJoinedRoom__Notification-members.html │ │ │ ├── structRakNet_1_1RoomMemberJoinedRoom__Notification.html │ │ │ ├── structRakNet_1_1RoomMemberJoinedRoom__Notification.png │ │ │ ├── structRakNet_1_1RoomMemberKicked__Notification-members.html │ │ │ ├── structRakNet_1_1RoomMemberKicked__Notification.html │ │ │ ├── structRakNet_1_1RoomMemberKicked__Notification.png │ │ │ ├── structRakNet_1_1RoomMemberLeftRoom__Notification-members.html │ │ │ ├── structRakNet_1_1RoomMemberLeftRoom__Notification.html │ │ │ ├── structRakNet_1_1RoomMemberLeftRoom__Notification.png │ │ │ ├── structRakNet_1_1RoomMemberReadyStatusSet__Notification-members.html │ │ │ ├── structRakNet_1_1RoomMemberReadyStatusSet__Notification.html │ │ │ ├── structRakNet_1_1RoomMemberReadyStatusSet__Notification.png │ │ │ ├── structRakNet_1_1RoomMemberStartedSpectating__Notification-members.html │ │ │ ├── structRakNet_1_1RoomMemberStartedSpectating__Notification.html │ │ │ ├── structRakNet_1_1RoomMemberStartedSpectating__Notification.png │ │ │ ├── structRakNet_1_1RoomMemberStoppedSpectating__Notification-members.html │ │ │ ├── structRakNet_1_1RoomMemberStoppedSpectating__Notification.html │ │ │ ├── structRakNet_1_1RoomMemberStoppedSpectating__Notification.png │ │ │ ├── structRakNet_1_1RoomNameSet__Notification-members.html │ │ │ ├── structRakNet_1_1RoomNameSet__Notification.html │ │ │ ├── structRakNet_1_1RoomNameSet__Notification.png │ │ │ ├── structRakNet_1_1RoomsPluginFunc-members.html │ │ │ ├── structRakNet_1_1RoomsPluginFunc.html │ │ │ ├── structRakNet_1_1RoomsPluginFunc.png │ │ │ ├── structRakNet_1_1RoomsPluginNotification-members.html │ │ │ ├── structRakNet_1_1RoomsPluginNotification.html │ │ │ ├── structRakNet_1_1RoomsPluginNotification.png │ │ │ ├── structRakNet_1_1SearchByFilter__Func-members.html │ │ │ ├── structRakNet_1_1SearchByFilter__Func.html │ │ │ ├── structRakNet_1_1SearchByFilter__Func.png │ │ │ ├── structRakNet_1_1SendInvite__Func-members.html │ │ │ ├── structRakNet_1_1SendInvite__Func.html │ │ │ ├── structRakNet_1_1SendInvite__Func.png │ │ │ ├── structRakNet_1_1SerializeParameters-members.html │ │ │ ├── structRakNet_1_1SerializeParameters.html │ │ │ ├── structRakNet_1_1SetCustomRoomProperties__Func-members.html │ │ │ ├── structRakNet_1_1SetCustomRoomProperties__Func.html │ │ │ ├── structRakNet_1_1SetCustomRoomProperties__Func.png │ │ │ ├── structRakNet_1_1SetDestroyOnModeratorLeave__Func-members.html │ │ │ ├── structRakNet_1_1SetDestroyOnModeratorLeave__Func.html │ │ │ ├── structRakNet_1_1SetDestroyOnModeratorLeave__Func.png │ │ │ ├── structRakNet_1_1SetHiddenFromSearches__Func-members.html │ │ │ ├── structRakNet_1_1SetHiddenFromSearches__Func.html │ │ │ ├── structRakNet_1_1SetHiddenFromSearches__Func.png │ │ │ ├── structRakNet_1_1SetReadyStatus__Func-members.html │ │ │ ├── structRakNet_1_1SetReadyStatus__Func.html │ │ │ ├── structRakNet_1_1SetReadyStatus__Func.png │ │ │ ├── structRakNet_1_1SetRoomLockState__Func-members.html │ │ │ ├── structRakNet_1_1SetRoomLockState__Func.html │ │ │ ├── structRakNet_1_1SetRoomLockState__Func.png │ │ │ ├── structRakNet_1_1SlotCountsSet__Notification-members.html │ │ │ ├── structRakNet_1_1SlotCountsSet__Notification.html │ │ │ ├── structRakNet_1_1SlotCountsSet__Notification.png │ │ │ ├── structRakNet_1_1SocketDescriptor-members.html │ │ │ ├── structRakNet_1_1SocketDescriptor.html │ │ │ ├── structRakNet_1_1StartSpectating__Func-members.html │ │ │ ├── structRakNet_1_1StartSpectating__Func.html │ │ │ ├── structRakNet_1_1StartSpectating__Func.png │ │ │ ├── structRakNet_1_1StopSpectating__Func-members.html │ │ │ ├── structRakNet_1_1StopSpectating__Func.html │ │ │ ├── structRakNet_1_1StopSpectating__Func.png │ │ │ ├── structRakNet_1_1SystemAddress-members.html │ │ │ ├── structRakNet_1_1SystemAddress.html │ │ │ ├── structRakNet_1_1System__BanUser-members.html │ │ │ ├── structRakNet_1_1System__BanUser.html │ │ │ ├── structRakNet_1_1System__BanUser.png │ │ │ ├── structRakNet_1_1System__CreateDatabase-members.html │ │ │ ├── structRakNet_1_1System__CreateDatabase.html │ │ │ ├── structRakNet_1_1System__CreateDatabase.png │ │ │ ├── structRakNet_1_1System__CreateTitle-members.html │ │ │ ├── structRakNet_1_1System__CreateTitle.html │ │ │ ├── structRakNet_1_1System__CreateTitle.png │ │ │ ├── structRakNet_1_1System__DeleteAccount-members.html │ │ │ ├── structRakNet_1_1System__DeleteAccount.html │ │ │ ├── structRakNet_1_1System__DeleteAccount.png │ │ │ ├── structRakNet_1_1System__DestroyDatabase-members.html │ │ │ ├── structRakNet_1_1System__DestroyDatabase.html │ │ │ ├── structRakNet_1_1System__DestroyDatabase.png │ │ │ ├── structRakNet_1_1System__DestroyTitle-members.html │ │ │ ├── structRakNet_1_1System__DestroyTitle.html │ │ │ ├── structRakNet_1_1System__DestroyTitle.png │ │ │ ├── structRakNet_1_1System__GetTitleBinaryData-members.html │ │ │ ├── structRakNet_1_1System__GetTitleBinaryData.html │ │ │ ├── structRakNet_1_1System__GetTitleBinaryData.png │ │ │ ├── structRakNet_1_1System__GetTitleRequiredAge-members.html │ │ │ ├── structRakNet_1_1System__GetTitleRequiredAge.html │ │ │ ├── structRakNet_1_1System__GetTitleRequiredAge.png │ │ │ ├── structRakNet_1_1System__PruneAccounts-members.html │ │ │ ├── structRakNet_1_1System__PruneAccounts.html │ │ │ ├── structRakNet_1_1System__PruneAccounts.png │ │ │ ├── structRakNet_1_1System__RegisterProfanity-members.html │ │ │ ├── structRakNet_1_1System__RegisterProfanity.html │ │ │ ├── structRakNet_1_1System__RegisterProfanity.png │ │ │ ├── structRakNet_1_1System__SetEmailAddressValidated-members.html │ │ │ ├── structRakNet_1_1System__SetEmailAddressValidated.html │ │ │ ├── structRakNet_1_1System__SetEmailAddressValidated.png │ │ │ ├── structRakNet_1_1System__UnbanUser-members.html │ │ │ ├── structRakNet_1_1System__UnbanUser.html │ │ │ ├── structRakNet_1_1System__UnbanUser.png │ │ │ ├── structRakNet_1_1TeamSelection-members.html │ │ │ ├── structRakNet_1_1TeamSelection.html │ │ │ ├── structRakNet_1_1UDPProxyClientResultHandler-members.html │ │ │ ├── structRakNet_1_1UDPProxyClientResultHandler.html │ │ │ ├── structRakNet_1_1UDPProxyServerResultHandler-members.html │ │ │ ├── structRakNet_1_1UDPProxyServerResultHandler.html │ │ │ ├── structRakNet_1_1UnbanMember__Func-members.html │ │ │ ├── structRakNet_1_1UnbanMember__Func.html │ │ │ ├── structRakNet_1_1UnbanMember__Func.png │ │ │ ├── structSQLite3Row-members.html │ │ │ ├── structSQLite3Row.html │ │ │ ├── structSQLite3Table-members.html │ │ │ ├── structSQLite3Table.html │ │ │ ├── structStrAndBool-members.html │ │ │ ├── structStrAndBool.html │ │ │ ├── structThreadPool-members.html │ │ │ ├── structThreadPool.html │ │ │ ├── sync_off.png │ │ │ ├── sync_on.png │ │ │ ├── tab_a.png │ │ │ ├── tab_b.png │ │ │ ├── tab_h.png │ │ │ ├── tab_s.png │ │ │ └── tabs.css │ ├── IrrlichtRakNetDemo.jpg │ ├── PathVariableShot.jpg │ ├── RPC3Video.htm │ ├── RakNetLogo.jpg │ ├── RakNetMajorFeatures.htm │ ├── RakNetMajorFeatures.html │ ├── RakNetUML.jpg │ ├── RakNet_Icon_Final-copy.jpg │ ├── RakNet_Server_Setup.docx │ ├── RaknetManual.css │ ├── ReplicaManager3Video.htm │ ├── SQLite3LoggerPluginVideo.html │ ├── addchatserverfile.jpg │ ├── addchatserverfilesmall.jpg │ ├── autopatcher.html │ ├── bitstreams.html │ ├── bluetooth.html │ ├── clientserver.jpg │ ├── cloudcomputing.html │ ├── cloudhosting.html │ ├── cloudhosting1.jpg │ ├── cloudhosting2.jpg │ ├── cloudhosting3.jpg │ ├── cloudhosting4.jpg │ ├── cloudhosting5.jpg │ ├── cloudhosting6.jpg │ ├── cloudhosting7.jpg │ ├── compilersetup.html │ ├── compilersetup_xcode.html │ ├── completeproject.jpg │ ├── congestioncontrol.html │ ├── connecting.html │ ├── connectionFilter.html │ ├── connectiongraph.html │ ├── consoleapplication.jpg │ ├── consoleserver.html │ ├── crashreporter.html │ ├── creatingpackets.html │ ├── csharpunity.html │ ├── custommemorymanagement.html │ ├── datacompression.html │ ├── datareplicationvideo.html │ ├── debuggingdisconnects.html │ ├── dependencies.html │ ├── detailedimplementation.html │ ├── directorydeltatransfer.html │ ├── distributednetworkobject.html │ ├── emailsender.html │ ├── faq.html │ ├── filelisttransfer.html │ ├── fullyconnectedmesh.html │ ├── fullyconnectedmesh2.html │ ├── helloworldvideo.html │ ├── index.html │ ├── introduction.html │ ├── iocompletionports.html │ ├── ipv6support.html │ ├── irrlichtfpsdemo.html │ ├── lightweightdatabase.html │ ├── lobby.html │ ├── makedll.jpg │ ├── makedllsmall.jpg │ ├── marmalade.html │ ├── masterserver.html │ ├── memorysynchronizer.html │ ├── messagefilter.html │ ├── messagehandler.html │ ├── multiplayergamecomponents.html │ ├── multithreadeddebug.jpg │ ├── multithreadeddebugsmall.jpg │ ├── natpunchpanel1.html │ ├── natpunchpanel1.jpg │ ├── natpunchpanel1small.jpg │ ├── natpunchpanel2.html │ ├── natpunchpanel2.jpg │ ├── natpunchpanel2small.jpg │ ├── natpunchpanel3.html │ ├── natpunchpanel3.jpg │ ├── natpunchpanel3small.jpg │ ├── natpunchpanel4.html │ ├── natpunchpanel4.jpg │ ├── natpunchpanel4small.jpg │ ├── natpunchpanel5.html │ ├── natpunchpanel5.jpg │ ├── natpunchpanel5small.jpg │ ├── natpunchpanel6.html │ ├── natpunchpanel6.jpg │ ├── natpunchpanel6small.jpg │ ├── natpunchpanel7.html │ ├── natpunchpanel7.jpg │ ├── natpunchpanel7small.jpg │ ├── natpunchthrough.html │ ├── nattraversalarchitecture.html │ ├── nattypedetection.html │ ├── networkidobject.html │ ├── networkmessages.html │ ├── networksimulator.html │ ├── newproject.jpg │ ├── newprojectsmall.jpg │ ├── ogre3dinterpdemo.html │ ├── packetlogger.html │ ├── phpdirectoryserver.html │ ├── playerids.html │ ├── plugininterface.html │ ├── preprocessordirectives.html │ ├── preprocessordirectives.jpg │ ├── preprocessordirectivessmall.jpg │ ├── programmingtips.html │ ├── rackspaceinterface.html │ ├── rakvoice.html │ ├── readyevent.html │ ├── receivingpackets.html │ ├── reliabilitytypes.html │ ├── replicamanager3.html │ ├── revisionlog.html │ ├── router.html │ ├── rpc4.html │ ├── samples.html │ ├── secureconnections.html │ ├── sendingpackets.html │ ├── spacer.gif │ ├── sqlite3loggerplugin.html │ ├── sqlite3plugin.html │ ├── startup.html │ ├── statistics.html │ ├── steamlobby.html │ ├── stringcompressor.html │ ├── swfobject.js │ ├── swigtutorial.html │ ├── swigtutorialadditional.html │ ├── systemaddresses.html │ ├── systemoverview.html │ ├── tcpinterface.html │ ├── teambalancer.html │ ├── teammanager.html │ ├── telnet1.jpg │ ├── telnet2.jpg │ ├── telnet3.jpg │ ├── timestamp.jpg │ ├── timestamping.html │ ├── tutorial.html │ ├── tutorial1.jpg │ ├── tutorial2.jpg │ ├── tutorial3.jpg │ ├── tutorial4.jpg │ ├── tutorial5.jpg │ ├── tutorial6.jpg │ ├── tutorial7.jpg │ ├── tutorialsample1.html │ ├── tutorialsample2.html │ ├── tutorialsample3.html │ ├── twowayauthentication.html │ ├── useiocompletionports.jpg │ ├── useiocompletionportssmall.jpg │ ├── ws2_32include.jpg │ ├── ws2_32includesmall.jpg │ ├── xcode_addfiles.jpg │ ├── xcode_addfiles_newgroup.jpg │ ├── xcode_changesdk.jpg │ ├── xcode_headersearchpaths.jpg │ ├── xcode_library.jpg │ ├── xcode_libraryname.jpg │ ├── xcode_librarysmall.jpg │ ├── xcode_linkwithlibrary.jpg │ ├── xcode_newcommandlinetool.jpg │ ├── xcode_newworkspace.jpg │ ├── xcode_remove_cat.jpg │ └── xcode_sourcefolder.jpg │ ├── LICENSE │ ├── Lib │ ├── CMakeLists.txt │ ├── DLL │ │ ├── CMakeLists.txt │ │ ├── DLL.rc │ │ ├── DLL.vcproj │ │ ├── DLL_vc8.vcproj │ │ ├── DLL_vc9.vcproj │ │ ├── readme.txt │ │ └── resource.h │ ├── JanssonStatic │ │ └── JanssonStatic_vc9.vcproj │ ├── LibStatic │ │ ├── CMakeLists.txt │ │ ├── LibStatic.vcproj │ │ ├── LibStatic_vc8.vcproj │ │ ├── LibStatic_vc9.vcproj │ │ └── readme.txt │ └── MiniupnpcStatic │ │ └── MiniupnpcStatic_vc9.vcproj │ ├── PATENTS │ ├── README.md │ ├── RakNet_IOS_XCode │ ├── RakNetTest.xcodeproj │ │ └── project.pbxproj │ └── RakNetTest │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ ├── RKNAppDelegate.h │ │ ├── RKNAppDelegate.mm │ │ ├── RKNViewController.h │ │ ├── RKNViewController.m │ │ ├── RakNetTest-Info.plist │ │ ├── en.lproj │ │ ├── InfoPlist.strings │ │ ├── MainStoryboard_iPad.storyboard │ │ └── MainStoryboard_iPhone.storyboard │ │ └── main.m │ ├── RakNet_NativeClient_VS2010.sln │ ├── RakNet_VS2008.sln │ ├── RakNet_WinPhone8_VS2012.sln │ ├── RakNet_WindowsStore8_VS2012.sln │ ├── Samples │ ├── AutoPatcherServer_MySQL │ │ ├── AutopatcherServerTest_MySQL.cpp │ │ ├── AutopatcherServer_MySQL.vcproj │ │ ├── CMakeLists.txt │ │ └── readme.txt │ ├── AutopatcherClient │ │ ├── AutopatcherClient.vcproj │ │ ├── AutopatcherClientTest.cpp │ │ ├── AutopatcherClient_vc8.vcproj │ │ ├── AutopatcherClient_vc9.vcproj │ │ ├── CMakeLists.txt │ │ ├── Test10.bat │ │ └── readme.txt │ ├── AutopatcherClientGFx3.0 │ │ ├── AutopatcherClientGFx3.0_vc8.vcproj │ │ ├── AutopatcherClientGFx3.0_vc9.vcproj │ │ ├── AutopatcherClientGFx3Impl.cpp │ │ ├── AutopatcherClientGFx3Impl.h │ │ ├── CMakeLists.txt │ │ ├── GFxPlayerTinyD3D9.cpp │ │ ├── Resources │ │ │ ├── AutopatcherClientGFx3_CS3.fla │ │ │ └── AutopatcherClientGFx3_CS3.swf │ │ └── readme.txt │ ├── AutopatcherClientRestarter │ │ ├── AutopatcherClientRestarter.vcproj │ │ ├── AutopatcherClientRestarter_vc8.vcproj │ │ ├── AutopatcherClientRestarter_vc9.vcproj │ │ ├── CMakeLists.txt │ │ ├── main.cpp │ │ └── readme.txt │ ├── AutopatcherClient_SelfScaling │ │ ├── AutopatcherClientTest.cpp │ │ ├── AutopatcherClient_SelfScaling_vc9.vcproj │ │ ├── Test10.bat │ │ └── readme.txt │ ├── AutopatcherServer │ │ ├── AutopatcherServer.vcproj │ │ ├── AutopatcherServerTest.cpp │ │ ├── AutopatcherServer_vc8.vcproj │ │ ├── AutopatcherServer_vc9.vcproj │ │ ├── CMakeLists.txt │ │ └── readme.txt │ ├── AutopatcherServer_SelfScaling │ │ ├── AutopatcherServer_SelfScaling_vc9.vcproj │ │ ├── main.cpp │ │ └── readme.txt │ ├── BigPacketTest │ │ ├── BigPacketTest.cpp │ │ ├── BigPacketTest.dsp │ │ ├── BigPacketTest.txt │ │ ├── BigPacketTest.vcproj │ │ ├── BigPacketTest_vc8.vcproj │ │ ├── BigPacketTest_vc9.vcproj │ │ ├── CMakeLists.txt │ │ └── readme.txt │ ├── BurstTest │ │ ├── BurstTest.cpp │ │ ├── BurstTest_vc9.vcproj │ │ ├── CMakeLists.txt │ │ └── readme.txt │ ├── CMakeLists.txt │ ├── Chat Example │ │ ├── CMakeLists.txt │ │ ├── Chat Example Client.cpp │ │ ├── Chat Example Client.dsp │ │ ├── Chat Example Client.vcproj │ │ ├── Chat Example Client_vc8.vcproj │ │ ├── Chat Example Client_vc9.vcproj │ │ ├── Chat Example Server.cpp │ │ ├── Chat Example Server.dsp │ │ ├── Chat Example Server.vcproj │ │ ├── Chat Example Server_vc8.vcproj │ │ ├── Chat Example Server_vc9.vcproj │ │ └── readme.txt │ ├── CloudClient │ │ ├── CMakeLists.txt │ │ ├── CloudClientSample.cpp │ │ ├── CloudClient_vc8.vcproj │ │ ├── CloudClient_vc9.vcproj │ │ └── readme.txt │ ├── CloudServer │ │ ├── CMakeLists.txt │ │ ├── CloudServerHelper.cpp │ │ ├── CloudServerHelper.h │ │ ├── CloudServerSample.cpp │ │ ├── CloudServer_vc8.vcproj │ │ ├── CloudServer_vc9.vcproj │ │ └── readme.txt │ ├── CloudTest │ │ ├── CMakeLists.txt │ │ ├── CloudTest.cpp │ │ ├── CloudTest_vc8.vcproj │ │ ├── CloudTest_vc9.vcproj │ │ └── readme.txt │ ├── CommandConsoleClient │ │ ├── CMakeLists.txt │ │ ├── CommandConsoleClient.vcproj │ │ ├── CommandConsoleClient_vc8.vcproj │ │ ├── CommandConsoleClient_vc9.vcproj │ │ ├── main.cpp │ │ └── readme.txt │ ├── CommandConsoleServer │ │ ├── CMakeLists.txt │ │ ├── CommandConsoleServer.vcproj │ │ ├── CommandConsoleServer_vc8.vcproj │ │ ├── CommandConsoleServer_vc9.vcproj │ │ ├── main.cpp │ │ └── readme.txt │ ├── ComprehensivePCGame │ │ ├── CMakeLists.txt │ │ ├── ComprehensivePCGame.cpp │ │ ├── ComprehensivePCGame_vc9.vcproj │ │ └── readme.txt │ ├── ComprehensiveTest │ │ ├── CMakeLists.txt │ │ ├── ComprehensiveTest.cpp │ │ ├── ComprehensiveTest.dsp │ │ ├── ComprehensiveTest.txt │ │ ├── ComprehensiveTest.vcproj │ │ ├── ComprehensiveTest_vc8.vcproj │ │ ├── ComprehensiveTest_vc9.vcproj │ │ └── readme.txt │ ├── CrashRelauncher │ │ └── CrashRelauncher.bat │ ├── CrashReporter │ │ ├── CMakeLists.txt │ │ ├── CrashReporter.cpp │ │ ├── CrashReporter.h │ │ ├── CrashReporter.vcproj │ │ ├── CrashReporter_vc8.vcproj │ │ ├── CrashReporter_vc9.vcproj │ │ ├── SendFileTo.cpp │ │ ├── SendFileTo.h │ │ ├── main.cpp │ │ └── readme.txt │ ├── CrossConnectionTest │ │ ├── CMakeLists.txt │ │ ├── CrossConnectionTest.cpp │ │ ├── CrossConnectionTest.vcproj │ │ ├── CrossConnectionTest_vc8.vcproj │ │ ├── CrossConnectionTest_vc9.vcproj │ │ └── readme.txt │ ├── DirectoryDeltaTransfer │ │ ├── CMakeLists.txt │ │ ├── DirectoryDeltaTransfer.cpp │ │ ├── DirectoryDeltaTransfer.vcproj │ │ ├── DirectoryDeltaTransferTest.cpp │ │ ├── DirectoryDeltaTransfer_vc8.vcproj │ │ ├── DirectoryDeltaTransfer_vc9.vcproj │ │ └── readme.txt │ ├── Dropped Connection Test │ │ ├── CMakeLists.txt │ │ ├── DroppedConnectionTest.cpp │ │ ├── DroppedConnectionTest.dsp │ │ ├── DroppedConnectionTest.vcproj │ │ ├── DroppedConnectionTest_vc8.vcproj │ │ ├── DroppedConnectionTest_vc9.vcproj │ │ └── readme.txt │ ├── Encryption │ │ ├── CMakeLists.txt │ │ ├── Encryption.cpp │ │ ├── Encryption.dsp │ │ ├── Encryption.vcproj │ │ ├── Encryption_vc8.vcproj │ │ ├── Encryption_vc9.vcproj │ │ └── readme.txt │ ├── FCMHost │ │ ├── CMakeLists.txt │ │ ├── FCM2Host.vcproj │ │ ├── FCM2HostTest.cpp │ │ └── readme.txt │ ├── FCMHostSimultaneous │ │ ├── CMakeLists.txt │ │ ├── FCM2HostSimultaneous.vcproj │ │ ├── FCM2HostSimultaneousTest.cpp │ │ └── readme.txt │ ├── FCMVerifiedJoinSimultaneous │ │ ├── CMakeLists.txt │ │ ├── FCM2VerifiedJoinSimultaneous.vcproj │ │ ├── FCM2VerifiedJoinSimultaneousTest.cpp │ │ └── readme.txt │ ├── FileListTransfer │ │ ├── CMakeLists.txt │ │ ├── FileListTransfer.vcproj │ │ └── main.cpp │ ├── Flow Control Test │ │ ├── CMakeLists.txt │ │ ├── FlowControlTest.cpp │ │ ├── FlowControlTest.dsp │ │ ├── FlowControlTest.vcproj │ │ ├── FlowControlTest_vc8.vcproj │ │ ├── FlowControlTest_vc9.vcproj │ │ └── readme.txt │ ├── Fully Connected Mesh │ │ ├── CMakeLists.txt │ │ ├── FCMTest.cpp │ │ ├── FullyConnectedMesh.dsp │ │ ├── FullyConnectedMesh.vcproj │ │ ├── FullyConnectedMesh_vc8.vcproj │ │ ├── FullyConnectedMesh_vc9.vcproj │ │ └── readme.txt │ ├── LANServerDiscovery │ │ ├── CMakeLists.txt │ │ ├── LANServerDiscovery.cpp │ │ ├── LANServerDiscovery.dsp │ │ ├── LANServerDiscovery.txt │ │ ├── LANServerDiscovery.vcproj │ │ ├── LANServerDiscovery_vc8.vcproj │ │ ├── LANServerDiscovery_vc9.vcproj │ │ └── readme.txt │ ├── Lobby2Client │ │ ├── CMakeLists.txt │ │ ├── Lobby2Client.vcproj │ │ └── Lobby2ClientSample.cpp │ ├── Lobby2ClientGFx3.0 │ │ ├── GFxPlayerTinyD3D9.cpp │ │ ├── Lobby2ClientGFx3.0.vcproj │ │ ├── Lobby2ClientGFx3Impl.cpp │ │ ├── Lobby2ClientGFx3Impl.h │ │ └── Resources │ │ │ ├── Art Assets │ │ │ ├── Check_Username.png │ │ │ ├── Checkbox_empty.png │ │ │ ├── Checkmark.png │ │ │ ├── Dropdown_Menu_Arrow.png │ │ │ ├── Dropdown_Menu_Bg.png │ │ │ ├── Dropdown_Menu_bg2.png │ │ │ ├── Input_Box.png │ │ │ ├── Input_box2.png │ │ │ ├── Input_box4.png │ │ │ ├── Mail_Title_Icon.png │ │ │ ├── Mail_clan_icon.png │ │ │ ├── Mail_delete_icon.png │ │ │ ├── Mail_friend_icon.png │ │ │ ├── MessageBox_bg.png │ │ │ ├── Navigation_panel.png │ │ │ ├── Profile_img_bg.png │ │ │ ├── Profile_img_temp.png │ │ │ ├── RakNet_logo.png │ │ │ ├── RakNet_logo_effect.png │ │ │ ├── Scaleform_logo.png │ │ │ ├── arrow.png │ │ │ ├── button_rollout.png │ │ │ ├── button_rollover.png │ │ │ ├── checkbox_check.png │ │ │ ├── delete_button.png │ │ │ ├── delete_button_rollover.png │ │ │ ├── game_bg.png │ │ │ ├── icon_clan_idle.png │ │ │ ├── icon_clan_rollover.png │ │ │ ├── icon_email_idle.png │ │ │ ├── icon_email_rollover.png │ │ │ ├── icon_exit_idle.png │ │ │ ├── icon_exit_rollover.png │ │ │ ├── icon_friends_idle.png │ │ │ ├── icon_friends_rollover.png │ │ │ ├── icon_login_idle.png │ │ │ ├── icon_login_rollover.png │ │ │ ├── icon_logout_idle.png │ │ │ ├── icon_logout_rollover.png │ │ │ ├── icon_mail.png │ │ │ ├── icon_mail_rollover.png │ │ │ ├── icon_profile_idle.png │ │ │ ├── icon_profile_rollover.png │ │ │ ├── line.png │ │ │ ├── message_box_text_bg.png │ │ │ ├── navigation_blue_panel.png │ │ │ ├── photo_selector.png │ │ │ ├── planet.png │ │ │ ├── profile_bg_tab.png │ │ │ ├── progress_bar.png │ │ │ ├── progress_bar_bg.png │ │ │ ├── scrolling_bar.png │ │ │ ├── scrolling_bar_bg.png │ │ │ ├── tab_arrow.png │ │ │ ├── tab_arrow_back.png │ │ │ ├── tab_clan.png │ │ │ ├── tab_email.png │ │ │ ├── tab_friends.png │ │ │ ├── tab_login.png │ │ │ ├── tab_navigation.png │ │ │ ├── tab_profile.png │ │ │ └── tab_special.png │ │ │ ├── Classes │ │ │ ├── AccountInfo.as │ │ │ ├── ConsoleWindow.as │ │ │ ├── LobbyInterface.as │ │ │ ├── Mail.as │ │ │ ├── MessageBox.as │ │ │ ├── NavigationMenu.as │ │ │ ├── PageNavigator.as │ │ │ ├── Screen.as │ │ │ ├── ScreenID.as │ │ │ ├── ScreenTab.as │ │ │ ├── ScreenTabManager.as │ │ │ ├── ScreenWithPageNavigator.as │ │ │ └── Screens │ │ │ │ ├── BlockListScreen.as │ │ │ │ ├── ChangePhoto.as │ │ │ │ ├── ClanBlockListScreen.as │ │ │ │ ├── ClanEmailScreen.as │ │ │ │ ├── ClanGeneralScreen.as │ │ │ │ ├── ClanInvitedRequestedScreen.as │ │ │ │ ├── ClanQueryScreen.as │ │ │ │ ├── ClanRootScreen.as │ │ │ │ ├── ConnectingToServerScreen.as │ │ │ │ ├── ConnectionScreen.as │ │ │ │ ├── CreateClan.as │ │ │ │ ├── EmailScreen.as │ │ │ │ ├── EnterCDKeyScreen.as │ │ │ │ ├── FriendScreen.as │ │ │ │ ├── LoggedInScreen.as │ │ │ │ ├── LoggingInScreen.as │ │ │ │ ├── LoginScreen.as │ │ │ │ ├── MyClansScreen.as │ │ │ │ ├── PossibleFriendsScreen.as │ │ │ │ ├── ProfileScreen.as │ │ │ │ ├── RecoverPasswordScreen.as │ │ │ │ ├── RegisterAccountScreen.as │ │ │ │ ├── RegisterAccountScreen2.as │ │ │ │ ├── RegisterAccountScreen3.as │ │ │ │ └── UpdateAccountScreen.as │ │ │ ├── Lobby2ClientGFx3_CS3.fla │ │ │ └── Lobby2ClientGFx3_CS3.swf │ ├── Lobby2Server_PGSQL │ │ ├── Lobby2Message_PGSQL_CustomizationExample.h │ │ ├── Lobby2Schema.txt │ │ ├── Lobby2ServerSample_PGSQL.cpp │ │ └── Lobby2Server_PGSQL.vcproj │ ├── Lobby3 │ │ ├── Lobby3.vcproj │ │ └── main.cpp │ ├── LobbyDB_PostgreSQL │ │ ├── LobbyDB_PostgreSQLTest.cpp │ │ ├── LobbyDB_PostgreSQLTest_vc8.vcproj │ │ ├── LobbyDB_PostgreSQLTest_vc9.vcproj │ │ └── readme.txt │ ├── LoopbackPerformanceTest │ │ ├── LoopbackPerformanceTest.cpp │ │ ├── LoopbackPerformanceTest.dsp │ │ ├── LoopbackPerformanceTest.vcproj │ │ ├── LoopbackPerformanceTest_vc8.vcproj │ │ ├── LoopbackPerformanceTest_vc9.vcproj │ │ └── readme.txt │ ├── Marmalade │ │ ├── CrossConnectionTest.cpp │ │ ├── Marmalade.mkb │ │ └── data │ │ │ ├── app.config.txt │ │ │ └── app.icf │ ├── MasterServer │ │ ├── CMakeLists.txt │ │ ├── MasterClient.cpp │ │ ├── MasterClient.dsp │ │ ├── MasterClient.h │ │ ├── MasterClient.vcproj │ │ ├── MasterClientMain.cpp │ │ ├── MasterClient_vc8.vcproj │ │ ├── MasterClient_vc9.vcproj │ │ ├── MasterCommon.h │ │ ├── MasterServer.cpp │ │ ├── MasterServer.dsp │ │ ├── MasterServer.h │ │ ├── MasterServer.vcproj │ │ ├── MasterServerMain.cpp │ │ ├── MasterServer_vc8.vcproj │ │ ├── MasterServer_vc9.vcproj │ │ └── mastercommon.cpp │ ├── MasterServer2 │ │ ├── MasterServer2.vcproj │ │ └── main.cpp │ ├── MessageFilter │ │ ├── CMakeLists.txt │ │ ├── MessageFilter.vcproj │ │ ├── MessageFilterTest.cpp │ │ ├── MessageFilter_vc8.vcproj │ │ ├── MessageFilter_vc9.vcproj │ │ └── readme.txt │ ├── MessageSizeTest │ │ ├── CMakeLists.txt │ │ ├── MessageSizeTest.cpp │ │ ├── MessageSizeTest_vc8.vcproj │ │ └── MessageSizeTest_vc9.vcproj │ ├── NATCompleteClient │ │ ├── CMakeLists.txt │ │ ├── NATCompleteClient.vcproj │ │ ├── main.cpp │ │ └── readme.txt │ ├── NATCompleteServer │ │ ├── CMakeLists.txt │ │ ├── NATCompleteServer.vcproj │ │ ├── main.cpp │ │ └── readme.txt │ ├── OfflineMessagesTest │ │ ├── CMakeLists.txt │ │ ├── OfflineMessagesTest.cpp │ │ ├── OfflineMessagesTest.dsp │ │ ├── OfflineMessagesTest.txt │ │ ├── OfflineMessagesTest.vcproj │ │ ├── OfflineMessagesTest_vc8.vcproj │ │ ├── OfflineMessagesTest_vc9.vcproj │ │ └── readme.txt │ ├── PHPDirectoryServer2 │ │ ├── CMakeLists.txt │ │ ├── DirectoryServer.php │ │ ├── PHPDirectoryServer2.cpp │ │ ├── PHPDirectoryServer2.h │ │ ├── PHPDirectoryServer2.vcproj │ │ ├── Specification.txt │ │ ├── lib │ │ │ ├── PasswordManager.class.php │ │ │ └── RecordManager.class.php │ │ └── main.cpp │ ├── PacketConsoleLogger │ │ ├── PacketConsoleLogger_vc9.vcproj │ │ └── main.cpp │ ├── PacketLogger │ │ ├── CMakeLists.txt │ │ ├── PacketLoggerTest.cpp │ │ ├── PacketLoggerTest.dsp │ │ ├── PacketLoggerTest.vcproj │ │ ├── PacketLoggerTest_vc8.vcproj │ │ ├── PacketLoggerTest_vc9.vcproj │ │ └── readme.txt │ ├── Ping │ │ ├── CMakeLists.txt │ │ ├── Ping.cpp │ │ ├── Ping.dsp │ │ ├── Ping.txt │ │ ├── Ping.vcproj │ │ ├── Ping_vc8.vcproj │ │ ├── Ping_vc9.vcproj │ │ └── readme.txt │ ├── RPC3 │ │ ├── CMakeLists.txt │ │ ├── RPC3.vcproj │ │ ├── RPC3Sample.cpp │ │ └── readme.txt │ ├── RPC4 │ │ ├── CMakeLists.txt │ │ ├── RPC4.vcproj │ │ ├── RPC4Sample.cpp │ │ └── readme.txt │ ├── RackspaceConsole │ │ ├── CMakeLists.txt │ │ ├── RackspaceConsole.vcproj │ │ ├── RackspaceConsole_vc8.vcproj │ │ ├── RackspaceConsole_vc9.vcproj │ │ ├── main.cpp │ │ └── readme.txt │ ├── RakVoice │ │ ├── CMakeLists.txt │ │ ├── RakVoice.txt │ │ ├── RakVoice.vcproj │ │ ├── RakVoice_vc8.vcproj │ │ ├── RakVoice_vc9.vcproj │ │ ├── main.cpp │ │ └── readme.txt │ ├── RakVoiceDSound │ │ ├── CMakeLists.txt │ │ ├── DSoundVoiceAdapter.cpp │ │ ├── DSoundVoiceAdapter.h │ │ ├── RakVoiceDSound_vc8.vcproj │ │ ├── RakVoiceDSound_vc9.vcproj │ │ └── main.cpp │ ├── RakVoiceFMOD │ │ ├── CMakeLists.txt │ │ ├── FMODVoiceAdapter.cpp │ │ ├── FMODVoiceAdapter.h │ │ ├── RakVoiceFMOD.txt │ │ ├── RakVoiceFMOD.vcproj │ │ ├── RakVoiceFMOD_vc8.vcproj │ │ ├── RakVoiceFMOD_vc9.vcproj │ │ ├── main.cpp │ │ └── readme.txt │ ├── RakVoiceFMODAsDLL │ │ ├── RakVoiceFMODDLL.sln │ │ ├── RakVoiceFMODDLL │ │ │ └── RakVoiceFMODDLL.vcproj │ │ └── RakVoiceFMODUsingDLL │ │ │ └── RakVoiceFMODUsingDLL.vcproj │ ├── RankingServerDB │ │ ├── RankingServerDBTest.cpp │ │ ├── RankingServerDBTest_vc8.vcproj │ │ ├── RankingServerDBTest_vc9.vcproj │ │ └── readme.txt │ ├── RankingServerDBTest │ │ ├── RankingServerDBTest.cpp │ │ ├── RankingServerDBTest_vc8.vcproj │ │ ├── RankingServerDBTest_vc9.vcproj │ │ └── readme.txt │ ├── ReadyEvent │ │ ├── ReadyEventSample.cpp │ │ ├── ReadyEvent_vc8.vcproj │ │ ├── ReadyEvent_vc9.vcproj │ │ └── readme.txt │ ├── RelayPluginTest │ │ ├── CMakeLists.txt │ │ ├── RelayPluginTest_vc9.vcproj │ │ └── main.cpp │ ├── Reliable Ordered Test │ │ ├── CMakeLists.txt │ │ ├── ReliableOrderedTest.cpp │ │ ├── ReliableOrderedTest.dsp │ │ ├── ReliableOrderedTest.vcproj │ │ ├── ReliableOrderedTest_vc8.vcproj │ │ ├── ReliableOrderedTest_vc9.vcproj │ │ └── readme.txt │ ├── ReplicaManager3 │ │ ├── CMakeLists.txt │ │ ├── ReplicaManager3.vcproj │ │ ├── main.cpp │ │ └── readme.txt │ ├── ReplicatedLogin │ │ ├── ReplicatedLogin.cpp │ │ └── ReplicatedLogin_vc8.vcproj │ ├── Rooms │ │ ├── Rooms.vcproj │ │ ├── RoomsSample.cpp │ │ └── readme.txt │ ├── RoomsBrowserGFx3 │ │ ├── GFxPlayerTinyD3D9.cpp │ │ ├── RakNet │ │ │ ├── RoomsBrowserGFx3_RakNet.cpp │ │ │ ├── RoomsBrowserGFx3_RakNet.h │ │ │ ├── RoomsBrowserGFx3_RakNet.vcproj │ │ │ └── readme.txt │ │ ├── Resources │ │ │ ├── Accounts_RakNet.as │ │ │ ├── ConnectToServer_RakNet.as │ │ │ ├── CreateRoom.as │ │ │ ├── GlobalNotifications.as │ │ │ ├── InRoom.as │ │ │ ├── LANConnection.as │ │ │ ├── Lobby.as │ │ │ ├── Main.as │ │ │ ├── ManageFriends_PC.as │ │ │ ├── RoomsBrowserGFx3.fla │ │ │ └── RoomsBrowserGFx3.swf │ │ ├── RoomsBrowserGFx3.cpp │ │ └── RoomsBrowserGFx3.h │ ├── Router2 │ │ ├── CMakeLists.txt │ │ ├── Router2Sample.cpp │ │ ├── Router2_vc8.vcproj │ │ ├── Router2_vc9.vcproj │ │ └── readme.txt │ ├── SendEmail │ │ ├── CMakeLists.txt │ │ ├── SendEmail.vcproj │ │ ├── SendEmail_vc8.vcproj │ │ ├── SendEmail_vc9.vcproj │ │ ├── main.cpp │ │ └── readme.txt │ ├── ServerClientTest2 │ │ ├── CMakeLists.txt │ │ ├── ServerClientTest2.cpp │ │ ├── ServerClientTest2.vcproj │ │ ├── ServerClientTest2_vc8.vcproj │ │ ├── ServerClientTest2_vc9.vcproj │ │ └── readme.txt │ ├── StatisticsHistoryTest │ │ ├── CMakeLists.txt │ │ ├── StatisticsHistoryTest.cpp │ │ ├── StatisticsHistoryTest_vc9.vcproj │ │ └── readme.txt │ ├── SteamLobby │ │ ├── SteamLobby.vcproj │ │ ├── main.cpp │ │ └── readme.txt │ ├── TeamManager │ │ ├── CMakeLists.txt │ │ ├── TeamManagerTest.cpp │ │ ├── TeamManager_vc9.vcproj │ │ └── readme.txt │ ├── TestDLL │ │ ├── CMakeLists.txt │ │ ├── TestDLL.vcproj │ │ ├── TestDLL_vc8.vcproj │ │ ├── TestDLL_vc9.vcproj │ │ ├── main.cpp │ │ └── readme.txt │ ├── Tests │ │ ├── CMakeLists.txt │ │ ├── CommonFunctions.cpp │ │ ├── CommonFunctions.h │ │ ├── ComprehensiveConvertTest.cpp │ │ ├── ComprehensiveConvertTest.h │ │ ├── ConnectWithSocketTest.cpp │ │ ├── ConnectWithSocketTest.h │ │ ├── CrossConnectionConvertTest.cpp │ │ ├── CrossConnectionConvertTest.h │ │ ├── DebugTools.cpp │ │ ├── DebugTools.h │ │ ├── DroppedConnectionConvertTest.cpp │ │ ├── DroppedConnectionConvertTest.h │ │ ├── EightPeerTest.cpp │ │ ├── EightPeerTest.h │ │ ├── IncludeAllTests.h │ │ ├── LocalIsConnectedTest.cpp │ │ ├── LocalIsConnectedTest.h │ │ ├── ManyClientsOneServerBlockingTest.cpp │ │ ├── ManyClientsOneServerBlockingTest.h │ │ ├── ManyClientsOneServerDeallocateBlockingTest.cpp │ │ ├── ManyClientsOneServerDeallocateBlockingTest.h │ │ ├── ManyClientsOneServerDeallocateTest.cpp │ │ ├── ManyClientsOneServerDeallocateTest.h │ │ ├── ManyClientsOneServerNonBlockingTest.cpp │ │ ├── ManyClientsOneServerNonBlockingTest.h │ │ ├── MaximumConnectTest.cpp │ │ ├── MaximumConnectTest.h │ │ ├── MiscellaneousTestsTest.cpp │ │ ├── MiscellaneousTestsTest.h │ │ ├── OfflineMessagesConvertTest.cpp │ │ ├── OfflineMessagesConvertTest.h │ │ ├── PacketAndLowLevelTestsTest.cpp │ │ ├── PacketAndLowLevelTestsTest.h │ │ ├── PacketChangerPlugin.cpp │ │ ├── PacketChangerPlugin.h │ │ ├── PacketDropPlugin.cpp │ │ ├── PacketDropPlugin.h │ │ ├── PeerConnectDisconnectTest.cpp │ │ ├── PeerConnectDisconnectTest.h │ │ ├── PeerConnectDisconnectWithCancelPendingTest.cpp │ │ ├── PeerConnectDisconnectWithCancelPendingTest.h │ │ ├── PingTestsTest.cpp │ │ ├── PingTestsTest.h │ │ ├── RakTimer.cpp │ │ ├── RakTimer.h │ │ ├── ReliableOrderedConvertedTest.cpp │ │ ├── ReliableOrderedConvertedTest.h │ │ ├── SecurityFunctionsTest.cpp │ │ ├── SecurityFunctionsTest.h │ │ ├── SystemAddressAndGuidTest.cpp │ │ ├── SystemAddressAndGuidTest.h │ │ ├── TestHelpers.cpp │ │ ├── TestHelpers.h │ │ ├── TestInterface.cpp │ │ ├── TestInterface.h │ │ ├── Tests.cpp │ │ └── Tests.vcproj │ ├── ThreadTest │ │ ├── CMakeLists.txt │ │ ├── ThreadTest.cpp │ │ ├── ThreadTest.vcproj │ │ ├── ThreadTest_vc8.vcproj │ │ ├── ThreadTest_vc9.vcproj │ │ └── readme.txt │ ├── Timestamping │ │ ├── CMakeLists.txt │ │ ├── Timestamping.cpp │ │ ├── Timestamping.dsp │ │ ├── Timestamping.txt │ │ ├── Timestamping.vcproj │ │ ├── Timestamping_vc8.vcproj │ │ ├── Timestamping_vc9.vcproj │ │ └── readme.txt │ ├── TitleValidationDB_PostgreSQL │ │ ├── CMakeLists.txt │ │ ├── TitleValidationDB_PostgreSQLTest.cpp │ │ ├── TitleValidationDB_PostgreSQLTest_vc8.vcproj │ │ ├── TitleValidationDB_PostgreSQLTest_vc9.vcproj │ │ └── readme.txt │ ├── TwoWayAuthentication │ │ ├── CMakeLists.txt │ │ ├── TwoWayAuthentication.vcproj │ │ ├── TwoWayAuthenticationTest.cpp │ │ └── readme.txt │ ├── UDPForwarder │ │ ├── CMakeLists.txt │ │ ├── UDPForwarder.vcproj │ │ ├── main.cpp │ │ └── readme.txt │ ├── WinPhone8 │ │ ├── Assets │ │ │ ├── AlignmentGrid.png │ │ │ ├── ApplicationIcon.png │ │ │ └── Tiles │ │ │ │ ├── FlipCycleTileLarge.png │ │ │ │ ├── FlipCycleTileMedium.png │ │ │ │ ├── FlipCycleTileSmall.png │ │ │ │ ├── IconicTileMediumLarge.png │ │ │ │ └── IconicTileSmall.png │ │ ├── BasicTimer.h │ │ ├── CubeRenderer.cpp │ │ ├── CubeRenderer.h │ │ ├── Direct3DBase.cpp │ │ ├── Direct3DBase.h │ │ ├── DirectXHelper.h │ │ ├── SimplePixelShader.hlsl │ │ ├── SimpleVertexShader.hlsl │ │ ├── WMAppManifest.xml │ │ ├── WinPhone8.cpp │ │ ├── WinPhone8.h │ │ ├── WinPhone8.vcxproj │ │ ├── WinPhone8.vcxproj.filters │ │ ├── pch.cpp │ │ └── pch.h │ ├── WindowsStore8 │ │ ├── App.xaml │ │ ├── App.xaml.cpp │ │ ├── App.xaml.h │ │ ├── Assets │ │ │ ├── Logo.png │ │ │ ├── SmallLogo.png │ │ │ ├── SplashScreen.png │ │ │ └── StoreLogo.png │ │ ├── Common │ │ │ └── StandardStyles.xaml │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cpp │ │ ├── MainPage.xaml.h │ │ ├── Package.appxmanifest │ │ ├── RakNet_WindowsStore8_VS2012.vcxproj │ │ ├── RakNet_WindowsStore8_VS2012.vcxproj.filters │ │ ├── notes.txt │ │ ├── pch.cpp │ │ └── pch.h │ ├── iOS │ │ └── ChatClient │ │ │ ├── ChatClient.xcodeproj │ │ │ └── project.pbxproj │ │ │ ├── ChatClient │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.mm │ │ │ ├── ChatClient-Info.plist │ │ │ ├── ChatServerDetailsProtocol.h │ │ │ ├── ServerDetailsViewController.h │ │ │ ├── ServerDetailsViewController.m │ │ │ ├── ServerDetailsViewController.xib │ │ │ ├── ViewController.h │ │ │ ├── ViewController.mm │ │ │ ├── en.lproj │ │ │ │ ├── InfoPlist.strings │ │ │ │ └── ViewController.xib │ │ │ └── main.m │ │ │ └── readme.txt │ └── nacl_sdk │ │ └── RakNet_NativeClient_VS2010 │ │ ├── HowToSetup.txt │ │ ├── RakNet_NativeClient_VS2010.vcxproj │ │ ├── RakNet_NativeClient_VS2010.vcxproj.filters │ │ ├── blob.nmf │ │ ├── httpd.py │ │ ├── icon_128.png │ │ ├── icon_16.png │ │ ├── icon_32.png │ │ ├── index.htm │ │ ├── js1.js │ │ ├── js2.js │ │ ├── main_ppapi.cpp │ │ └── manifest.json │ └── Source │ ├── AutopatcherPatchContext.h │ ├── AutopatcherRepositoryInterface.h │ ├── Base64Encoder.cpp │ ├── Base64Encoder.h │ ├── BitStream.cpp │ ├── BitStream.h │ ├── CCRakNetSlidingWindow.cpp │ ├── CCRakNetSlidingWindow.h │ ├── CCRakNetUDT.cpp │ ├── CCRakNetUDT.h │ ├── CMakeLists.txt │ ├── CheckSum.cpp │ ├── CheckSum.h │ ├── CloudClient.cpp │ ├── CloudClient.h │ ├── CloudCommon.cpp │ ├── CloudCommon.h │ ├── CloudServer.cpp │ ├── CloudServer.h │ ├── CommandParserInterface.cpp │ ├── CommandParserInterface.h │ ├── ConnectionGraph2.cpp │ ├── ConnectionGraph2.h │ ├── ConsoleServer.cpp │ ├── ConsoleServer.h │ ├── DR_SHA1.cpp │ ├── DR_SHA1.h │ ├── DS_BPlusTree.h │ ├── DS_BinarySearchTree.h │ ├── DS_BytePool.cpp │ ├── DS_BytePool.h │ ├── DS_ByteQueue.cpp │ ├── DS_ByteQueue.h │ ├── DS_Hash.h │ ├── DS_Heap.h │ ├── DS_HuffmanEncodingTree.cpp │ ├── DS_HuffmanEncodingTree.h │ ├── DS_HuffmanEncodingTreeFactory.h │ ├── DS_HuffmanEncodingTreeNode.h │ ├── DS_LinkedList.h │ ├── DS_List.h │ ├── DS_Map.h │ ├── DS_MemoryPool.h │ ├── DS_Multilist.h │ ├── DS_OrderedChannelHeap.h │ ├── DS_OrderedList.h │ ├── DS_Queue.h │ ├── DS_QueueLinkedList.h │ ├── DS_RangeList.h │ ├── DS_Table.cpp │ ├── DS_Table.h │ ├── DS_ThreadsafeAllocatingQueue.h │ ├── DS_Tree.h │ ├── DS_WeightedGraph.h │ ├── DataCompressor.cpp │ ├── DataCompressor.h │ ├── DirectoryDeltaTransfer.cpp │ ├── DirectoryDeltaTransfer.h │ ├── DynDNS.cpp │ ├── DynDNS.h │ ├── EmailSender.cpp │ ├── EmailSender.h │ ├── EmptyHeader.h │ ├── EpochTimeToString.cpp │ ├── EpochTimeToString.h │ ├── Export.h │ ├── FileList.cpp │ ├── FileList.h │ ├── FileListNodeContext.h │ ├── FileListTransfer.cpp │ ├── FileListTransfer.h │ ├── FileListTransferCBInterface.h │ ├── FileOperations.cpp │ ├── FileOperations.h │ ├── FormatString.cpp │ ├── FormatString.h │ ├── FullyConnectedMesh2.cpp │ ├── FullyConnectedMesh2.h │ ├── GetTime.cpp │ ├── GetTime.h │ ├── Getche.cpp │ ├── Getche.h │ ├── Gets.cpp │ ├── Gets.h │ ├── GridSectorizer.cpp │ ├── GridSectorizer.h │ ├── HTTPConnection.cpp │ ├── HTTPConnection.h │ ├── HTTPConnection2.cpp │ ├── HTTPConnection2.h │ ├── IncrementalReadInterface.cpp │ ├── IncrementalReadInterface.h │ ├── InternalPacket.h │ ├── Itoa.cpp │ ├── Itoa.h │ ├── Kbhit.h │ ├── LinuxStrings.cpp │ ├── LinuxStrings.h │ ├── LocklessTypes.cpp │ ├── LocklessTypes.h │ ├── LogCommandParser.cpp │ ├── LogCommandParser.h │ ├── MTUSize.h │ ├── MessageFilter.cpp │ ├── MessageFilter.h │ ├── MessageIdentifiers.h │ ├── NatPunchthroughClient.cpp │ ├── NatPunchthroughClient.h │ ├── NatPunchthroughServer.cpp │ ├── NatPunchthroughServer.h │ ├── NatTypeDetectionClient.cpp │ ├── NatTypeDetectionClient.h │ ├── NatTypeDetectionCommon.cpp │ ├── NatTypeDetectionCommon.h │ ├── NatTypeDetectionServer.cpp │ ├── NatTypeDetectionServer.h │ ├── NativeFeatureIncludes.h │ ├── NativeFeatureIncludesOverrides.h │ ├── NativeTypes.h │ ├── NetworkIDManager.cpp │ ├── NetworkIDManager.h │ ├── NetworkIDObject.cpp │ ├── NetworkIDObject.h │ ├── PS3Includes.h │ ├── PS4Includes.cpp │ ├── PS4Includes.h │ ├── PacketConsoleLogger.cpp │ ├── PacketConsoleLogger.h │ ├── PacketFileLogger.cpp │ ├── PacketFileLogger.h │ ├── PacketLogger.cpp │ ├── PacketLogger.h │ ├── PacketOutputWindowLogger.cpp │ ├── PacketOutputWindowLogger.h │ ├── PacketPool.h │ ├── PacketPriority.h │ ├── PacketizedTCP.cpp │ ├── PacketizedTCP.h │ ├── PluginInterface2.cpp │ ├── PluginInterface2.h │ ├── RPC4Plugin.cpp │ ├── RPC4Plugin.h │ ├── Rackspace.cpp │ ├── Rackspace.h │ ├── RakAlloca.h │ ├── RakAssert.h │ ├── RakMemoryOverride.cpp │ ├── RakMemoryOverride.h │ ├── RakNet.vcproj │ ├── RakNetCommandParser.cpp │ ├── RakNetCommandParser.h │ ├── RakNetDefines.h │ ├── RakNetDefinesOverrides.h │ ├── RakNetSmartPtr.h │ ├── RakNetSocket.cpp │ ├── RakNetSocket.h │ ├── RakNetSocket2.cpp │ ├── RakNetSocket2.h │ ├── RakNetSocket2_360_720.cpp │ ├── RakNetSocket2_Berkley.cpp │ ├── RakNetSocket2_Berkley_NativeClient.cpp │ ├── RakNetSocket2_NativeClient.cpp │ ├── RakNetSocket2_PS3_PS4.cpp │ ├── RakNetSocket2_PS4.cpp │ ├── RakNetSocket2_Vita.cpp │ ├── RakNetSocket2_WindowsStore8.cpp │ ├── RakNetSocket2_Windows_Linux.cpp │ ├── RakNetSocket2_Windows_Linux_360.cpp │ ├── RakNetStatistics.cpp │ ├── RakNetStatistics.h │ ├── RakNetTime.h │ ├── RakNetTransport2.cpp │ ├── RakNetTransport2.h │ ├── RakNetTypes.cpp │ ├── RakNetTypes.h │ ├── RakNetVersion.h │ ├── RakNet_vc8.vcproj │ ├── RakNet_vc9.vcproj │ ├── RakPeer.cpp │ ├── RakPeer.h │ ├── RakPeerInterface.h │ ├── RakSleep.cpp │ ├── RakSleep.h │ ├── RakString.cpp │ ├── RakString.h │ ├── RakThread.cpp │ ├── RakThread.h │ ├── RakWString.cpp │ ├── RakWString.h │ ├── Rand.cpp │ ├── Rand.h │ ├── RandSync.cpp │ ├── RandSync.h │ ├── ReadyEvent.cpp │ ├── ReadyEvent.h │ ├── RefCountedObj.h │ ├── RelayPlugin.cpp │ ├── RelayPlugin.h │ ├── ReliabilityLayer.cpp │ ├── ReliabilityLayer.h │ ├── ReplicaEnums.h │ ├── ReplicaManager3.cpp │ ├── ReplicaManager3.h │ ├── Router2.cpp │ ├── Router2.h │ ├── SecureHandshake.cpp │ ├── SecureHandshake.h │ ├── SendToThread.cpp │ ├── SendToThread.h │ ├── SignaledEvent.cpp │ ├── SignaledEvent.h │ ├── SimpleMutex.cpp │ ├── SimpleMutex.h │ ├── SimpleTCPServer.h │ ├── SingleProducerConsumer.h │ ├── SocketDefines.h │ ├── SocketIncludes.h │ ├── SocketLayer.cpp │ ├── SocketLayer.h │ ├── StatisticsHistory.cpp │ ├── StatisticsHistory.h │ ├── StringCompressor.cpp │ ├── StringCompressor.h │ ├── StringTable.cpp │ ├── StringTable.h │ ├── SuperFastHash.cpp │ ├── SuperFastHash.h │ ├── TCPInterface.cpp │ ├── TCPInterface.h │ ├── TableSerializer.cpp │ ├── TableSerializer.h │ ├── TeamBalancer.cpp │ ├── TeamBalancer.h │ ├── TeamManager.cpp │ ├── TeamManager.h │ ├── TelnetTransport.cpp │ ├── TelnetTransport.h │ ├── ThreadPool.h │ ├── ThreadsafePacketLogger.cpp │ ├── ThreadsafePacketLogger.h │ ├── TransportInterface.h │ ├── TwoWayAuthentication.cpp │ ├── TwoWayAuthentication.h │ ├── UDPForwarder.cpp │ ├── UDPForwarder.h │ ├── UDPProxyClient.cpp │ ├── UDPProxyClient.h │ ├── UDPProxyCommon.h │ ├── UDPProxyCoordinator.cpp │ ├── UDPProxyCoordinator.h │ ├── UDPProxyServer.cpp │ ├── UDPProxyServer.h │ ├── VariableDeltaSerializer.cpp │ ├── VariableDeltaSerializer.h │ ├── VariableListDeltaTracker.cpp │ ├── VariableListDeltaTracker.h │ ├── VariadicSQLParser.cpp │ ├── VariadicSQLParser.h │ ├── VitaIncludes.cpp │ ├── VitaIncludes.h │ ├── WSAStartupSingleton.cpp │ ├── WSAStartupSingleton.h │ ├── WindowsIncludes.h │ ├── XBox360Includes.h │ ├── _FindFirst.cpp │ ├── _FindFirst.h │ ├── gettimeofday.cpp │ └── gettimeofday.h ├── Folder.DotSettings ├── INSTALL-deck.md ├── LICENSE ├── Mods ├── AdvancedRating │ ├── CMakeLists.txt │ └── Src │ │ ├── AdvancedRating.cpp │ │ ├── AdvancedRating.h │ │ └── json.hpp ├── Assets │ ├── CMakeLists.txt │ └── Src │ │ ├── Assets.cpp │ │ └── Assets.h ├── Clumsy │ ├── CMakeLists.txt │ ├── README.md │ ├── Smf │ │ ├── README │ │ ├── clumsy │ │ │ └── chunk0 │ │ │ │ ├── _sdk │ │ │ │ └── get_up.entity.json │ │ │ │ └── globaldata.entity.patch.json │ │ └── manifest.json │ ├── Src │ │ ├── Clumsy.cpp │ │ └── Clumsy.h │ └── dab.wav ├── DebugCheckKeyEntityEnabler │ ├── CMakeLists.txt │ └── Src │ │ ├── DebugCheckKeyEntityEnabler.cpp │ │ └── DebugCheckKeyEntityEnabler.h ├── DebugMod │ ├── CMakeLists.txt │ └── Src │ │ ├── DebugMod.cpp │ │ ├── DebugMod.h │ │ └── UI │ │ └── PositionBox.cpp ├── DiscordRichPresence │ ├── CMakeLists.txt │ ├── README.md │ └── Src │ │ ├── DiscordRichPresence.cpp │ │ └── DiscordRichPresence.h ├── Editor │ ├── CMakeLists.txt │ ├── README.md │ ├── Smf │ │ ├── README │ │ ├── editor_data │ │ │ └── chunk0 │ │ │ │ ├── _sdk │ │ │ │ └── editor │ │ │ │ │ ├── camera_texture.entity.json.bak │ │ │ │ │ ├── editor_camera.entity.json.bak │ │ │ │ │ ├── editor_camera.temp.json │ │ │ │ │ ├── editor_data.entity.json │ │ │ │ │ ├── editor_data.entity.json.bak │ │ │ │ │ └── editor_data.temp.json │ │ │ │ └── globaldata.entity.patch.json │ │ └── manifest.json │ ├── Src │ │ ├── Components │ │ │ ├── Actors.cpp │ │ │ ├── DebugChannels.cpp │ │ │ ├── EditorAPI.cpp │ │ │ ├── EntityManipulator.cpp │ │ │ ├── EntityProperties.cpp │ │ │ ├── EntityTree.cpp │ │ │ ├── Items.cpp │ │ │ ├── Library.cpp │ │ │ └── PinTracer.cpp │ │ ├── Editor.cpp │ │ ├── Editor.h │ │ ├── EditorServer.cpp │ │ ├── EditorServer.h │ │ ├── EntityTreeNode.h │ │ ├── JsonHelpers.h │ │ └── Properties │ │ │ ├── Array.cpp │ │ │ ├── Color.cpp │ │ │ ├── Common.cpp │ │ │ ├── Enum.cpp │ │ │ ├── Matrix.cpp │ │ │ ├── Primitives.cpp │ │ │ ├── Resource.cpp │ │ │ └── Vectors.cpp │ ├── editor-client.ts │ └── editor.d.ts ├── FreeCam │ ├── CMakeLists.txt │ ├── README.md │ └── Src │ │ ├── FreeCam.cpp │ │ └── FreeCam.h ├── Hitmen │ ├── CMakeLists.txt │ ├── Smf │ │ ├── hitmen │ │ │ ├── chunk0 │ │ │ │ └── _sdk │ │ │ │ │ ├── hitmen.entity.json │ │ │ │ │ └── multiplayer_hitmen.entity.json │ │ │ └── chunk3 │ │ │ │ └── globaldata.entity.patch.json │ │ └── manifest.json │ └── Src │ │ ├── BinaryStreamReader.h │ │ ├── BinaryStreamWriter.h │ │ ├── Hitmen.cpp │ │ └── Hitmen.h ├── MaxPatchLevel │ ├── CMakeLists.txt │ └── Src │ │ ├── MaxPatchLevel.cpp │ │ └── MaxPatchLevel.h ├── NoPause │ ├── CMakeLists.txt │ └── Src │ │ ├── NoPause.cpp │ │ └── NoPause.h ├── Noclip │ ├── CMakeLists.txt │ └── Src │ │ ├── Noclip.cpp │ │ └── Noclip.h ├── OnlineTools │ ├── CMakeLists.txt │ └── src │ │ ├── OnlineTools.cpp │ │ └── OnlineTools.h ├── Player │ ├── CMakeLists.txt │ └── Src │ │ ├── Player.cpp │ │ └── Player.h ├── SkipIntro │ ├── CMakeLists.txt │ └── Src │ │ ├── SkipIntro.cpp │ │ └── SkipIntro.h └── WakingUpNpcs │ ├── CMakeLists.txt │ └── Src │ ├── WakingUpNpcs.cpp │ └── WakingUpNpcs.h ├── README.md ├── Tools └── DevLoader │ ├── CMakeLists.txt │ └── Src │ └── Main.cpp ├── ZHMModSDK.ChildProcessDbgSettings ├── ZHMModSDK ├── CMakeLists.txt ├── Include │ ├── Common.h │ ├── Crypto.h │ ├── D3DUtils.h │ ├── EngineFunction.h │ ├── EventDispatcher.h │ ├── Events.h │ ├── Functions.h │ ├── Glacier │ │ ├── CompileReflection.h │ │ ├── EDebugChannel.h │ │ ├── EDynamicEntityType.h │ │ ├── EUpdateMode.h │ │ ├── EntityFactory.h │ │ ├── Enums.h │ │ ├── Hash.h │ │ ├── IEnumType.h │ │ ├── MDF_FONT.h │ │ ├── Pins.h │ │ ├── Prim.h │ │ ├── Reflection.h │ │ ├── SColorRGB.h │ │ ├── SColorRGBA.h │ │ ├── SExternalReferences.h │ │ ├── SGameUpdateEvent.h │ │ ├── SOnlineEvent.h │ │ ├── SReasoningGrid.h │ │ ├── TAlignedType.h │ │ ├── TArray.h │ │ ├── TBinaryTree.h │ │ ├── THashMap.h │ │ ├── TIterator.h │ │ ├── TMap.h │ │ ├── TPair.h │ │ ├── TRedBlackTree.h │ │ ├── TSet.h │ │ ├── TSharedPointer.h │ │ ├── ZAIGameState.h │ │ ├── ZAction.h │ │ ├── ZActor.h │ │ ├── ZApplicationEngineWin32.h │ │ ├── ZBuffer.h │ │ ├── ZCameraEntity.h │ │ ├── ZCollision.h │ │ ├── ZColor.h │ │ ├── ZComponentCreateInfo.h │ │ ├── ZConfigCommand.h │ │ ├── ZContentKitManager.h │ │ ├── ZDelegate.h │ │ ├── ZEngineAppCommon.h │ │ ├── ZEntity.h │ │ ├── ZEntityManager.h │ │ ├── ZFreeCamera.h │ │ ├── ZGameContext.h │ │ ├── ZGameLoopManager.h │ │ ├── ZGameMode.h │ │ ├── ZGameStats.h │ │ ├── ZGameTime.h │ │ ├── ZGameUIManager.h │ │ ├── ZGeomEntity.h │ │ ├── ZGridManager.h │ │ ├── ZHM5BaseCharacter.h │ │ ├── ZHM5CrippleBox.h │ │ ├── ZHM5GridManager.h │ │ ├── ZHM5InputManager.h │ │ ├── ZHitman5.h │ │ ├── ZHttp.h │ │ ├── ZInput.h │ │ ├── ZInputActionManager.h │ │ ├── ZInventory.h │ │ ├── ZItem.h │ │ ├── ZKnowledge.h │ │ ├── ZLevelManager.h │ │ ├── ZLobby.h │ │ ├── ZMath.h │ │ ├── ZMemory.h │ │ ├── ZModule.h │ │ ├── ZObject.h │ │ ├── ZObjectPool.h │ │ ├── ZOutfit.h │ │ ├── ZPathfinder.h │ │ ├── ZPhysics.h │ │ ├── ZPlayerRegistry.h │ │ ├── ZPrimitives.h │ │ ├── ZRakNet.h │ │ ├── ZRender.h │ │ ├── ZRepository.h │ │ ├── ZResource.h │ │ ├── ZResourceID.h │ │ ├── ZScene.h │ │ ├── ZServerProxyRoute.h │ │ ├── ZSetpieceEntity.h │ │ ├── ZSharedPointerTarget.h │ │ ├── ZSpatialEntity.h │ │ ├── ZString.h │ │ └── ZTypeRegistry.h │ ├── Globals.h │ ├── Hook.h │ ├── Hooks.h │ ├── IModSDK.h │ ├── IO │ │ ├── ZBinaryDeserializer.h │ │ ├── ZBinaryReader.h │ │ └── ZBinaryWriter.h │ ├── IPluginInterface.h │ ├── IRenderer.h │ ├── Logging.h │ ├── NavPower.h │ ├── Scaleform.h │ └── Util │ │ ├── ImGuiUtils.h │ │ └── StringUtils.h ├── ModSDKVersion.h.in ├── Rust │ ├── Cargo.lock │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── Src │ ├── DebugConsole.cpp │ ├── DebugConsole.h │ ├── EngineFunctionImpl.h │ ├── EventDispatcherImpl.h │ ├── Events.cpp │ ├── Failures.h │ ├── Functions.cpp │ ├── Glacier │ │ ├── MDF_FONT.cpp │ │ ├── ZConfigCommand.cpp │ │ ├── ZEntity.cpp │ │ ├── ZMath.cpp │ │ ├── ZObject.cpp │ │ ├── ZResource.cpp │ │ └── ZString.cpp │ ├── Globals.cpp │ ├── GlobalsImpl.h │ ├── HookImpl.h │ ├── Hooks.cpp │ ├── IO │ │ └── ZBinaryDeserializer.cpp │ ├── Logging.cpp │ ├── Main.cpp │ ├── ModLoader.cpp │ ├── ModLoader.h │ ├── ModSDK.cpp │ ├── ModSDK.h │ ├── ModSettings.cpp │ ├── ModSettings.h │ ├── Multiplayer │ │ ├── Lobby.cpp │ │ ├── Lobby.h │ │ ├── SDKSocketOverride.cpp │ │ └── SDKSocketOverride.h │ ├── NavPower.cpp │ ├── PinRegistry.cpp │ ├── PinRegistry.h │ ├── Rendering │ │ ├── CustomPrimitiveBatch.h │ │ ├── D3D12DXGIFactory.cpp │ │ ├── D3D12DXGIFactory.h │ │ ├── D3D12Device.cpp │ │ ├── D3D12Device.h │ │ ├── D3D12Hooks.cpp │ │ ├── D3D12Hooks.h │ │ ├── D3D12SwapChain.cpp │ │ ├── D3D12SwapChain.h │ │ ├── DebugEffect.cpp │ │ ├── DebugEffect.h │ │ ├── Renderers │ │ │ ├── DirectXTKRenderer.cpp │ │ │ ├── DirectXTKRenderer.h │ │ │ ├── Fonts.h │ │ │ ├── Fonts │ │ │ │ ├── MaterialIcons-LICENSE │ │ │ │ ├── MaterialIconsRegular.gen.cpp │ │ │ │ ├── Roboto-LICENSE.txt │ │ │ │ ├── RobotoBlack.gen.cpp │ │ │ │ ├── RobotoBold.gen.cpp │ │ │ │ ├── RobotoBoldSpritefont.cpp │ │ │ │ ├── RobotoLight.gen.cpp │ │ │ │ ├── RobotoMedium.gen.cpp │ │ │ │ ├── RobotoRegular.gen.cpp │ │ │ │ └── RobotoRegularSpritefont.cpp │ │ │ ├── ImGuiImpl.cpp │ │ │ ├── ImGuiImpl.h │ │ │ ├── ImGuiRenderer.cpp │ │ │ └── ImGuiRenderer.h │ │ ├── ViewFrustum.cpp │ │ └── ViewFrustum.h │ ├── ResourceLoading.cpp │ ├── UI │ │ ├── Console.cpp │ │ ├── Console.h │ │ ├── MainMenu.cpp │ │ ├── MainMenu.h │ │ ├── ModSelector.cpp │ │ └── ModSelector.h │ └── Util │ │ ├── HashingUtils.cpp │ │ ├── HashingUtils.h │ │ ├── ProcessUtils.cpp │ │ └── ProcessUtils.h └── ZHMModSDK.rc.in ├── cmake ├── get-cpm.cmake ├── sdk-dist.cmake ├── sdk-local.cmake ├── vcpkg-overlays │ └── x64-windows-zhm.cmake ├── vcpkg-ports │ └── imgui │ │ ├── CMakeLists.txt │ │ ├── imgui-config.cmake.in │ │ ├── layout-external.patch │ │ ├── portfile.cmake │ │ └── vcpkg.json └── zhm-mod.cmake ├── launch.vs.json-epic_sample ├── launch.vs.json-legendary_sample ├── launch.vs.json-steam_sample └── vcpkg.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/.gitmodules -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | ZHMMods -------------------------------------------------------------------------------- /.idea/ZHMModSDK.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/.idea/ZHMModSDK.iml -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/deno.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/.idea/deno.xml -------------------------------------------------------------------------------- /.idea/editor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/.idea/editor.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakePresets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/CMakePresets.json -------------------------------------------------------------------------------- /CMakeUserPresets.json-epic_sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/CMakeUserPresets.json-epic_sample -------------------------------------------------------------------------------- /CMakeUserPresets.json-steam_sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/CMakeUserPresets.json-steam_sample -------------------------------------------------------------------------------- /DirectInputProxy/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/DirectInputProxy/CMakeLists.txt -------------------------------------------------------------------------------- /DirectInputProxy/Src/DirectInputProxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/DirectInputProxy/Src/DirectInputProxy.cpp -------------------------------------------------------------------------------- /External/RakNet/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/.gitignore -------------------------------------------------------------------------------- /External/RakNet/3.x_to_4.x_upgrade.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/3.x_to_4.x_upgrade.txt -------------------------------------------------------------------------------- /External/RakNet/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/CMakeLists.txt -------------------------------------------------------------------------------- /External/RakNet/CmakeIncludes/CmakeMacros.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/CmakeIncludes/CmakeMacros.txt -------------------------------------------------------------------------------- /External/RakNet/CmakeIncludes/FindBoost.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/CmakeIncludes/FindBoost.cmake -------------------------------------------------------------------------------- /External/RakNet/CmakeIncludes/FindMacros.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/CmakeIncludes/FindMacros.txt -------------------------------------------------------------------------------- /External/RakNet/CmakeIncludes/FindMySQL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/CmakeIncludes/FindMySQL.cmake -------------------------------------------------------------------------------- /External/RakNet/CmakeIncludes/FindSpeex.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/CmakeIncludes/FindSpeex.cmake -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/Ogre3DInterpDemo/OgreResources/UpgradeMesh.bat: -------------------------------------------------------------------------------- 1 | OgreMeshUpgrade.exe -d3d -b -t %1 -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/WinRT/WinRTSocketAdapter.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid-unicode/lone-invalid-utf-8/error: -------------------------------------------------------------------------------- 1 | 1 0 0 2 | unable to decode byte 0xe5 3 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/apostrophe/error: -------------------------------------------------------------------------------- 1 | 1 2 2 2 | invalid token near ''' 3 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/apostrophe/input: -------------------------------------------------------------------------------- 1 | [' 2 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/ascii-unicode-identifier/error: -------------------------------------------------------------------------------- 1 | 1 1 1 2 | '[' or '{' expected near 'a' 3 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/ascii-unicode-identifier/input: -------------------------------------------------------------------------------- 1 | aå 2 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/brace-comma/error: -------------------------------------------------------------------------------- 1 | 1 2 2 2 | string or '}' expected near ',' 3 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/brace-comma/input: -------------------------------------------------------------------------------- 1 | {, 2 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/bracket-comma/error: -------------------------------------------------------------------------------- 1 | 1 2 2 2 | unexpected token near ',' 3 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/bracket-comma/input: -------------------------------------------------------------------------------- 1 | [, 2 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/bracket-one-comma/error.normal: -------------------------------------------------------------------------------- 1 | 2 0 4 2 | ']' expected near end of file 3 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/bracket-one-comma/error.strip: -------------------------------------------------------------------------------- 1 | 1 3 3 2 | ']' expected near end of file 3 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/bracket-one-comma/input: -------------------------------------------------------------------------------- 1 | [1, 2 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/empty/error: -------------------------------------------------------------------------------- 1 | 1 0 0 2 | '[' or '{' expected near end of file 3 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/empty/input: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/escaped-null-byte-in-string/input: -------------------------------------------------------------------------------- 1 | ["\u0000 (null byte not allowed)"] 2 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/extra-comma-in-array/error: -------------------------------------------------------------------------------- 1 | 1 4 4 2 | unexpected token near ']' 3 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/extra-comma-in-array/input: -------------------------------------------------------------------------------- 1 | [1,] 2 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/garbage-after-newline/error: -------------------------------------------------------------------------------- 1 | 2 3 11 2 | end of file expected near 'foo' 3 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/garbage-after-newline/input: -------------------------------------------------------------------------------- 1 | [1,2,3] 2 | foo 3 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/garbage-at-the-end/error: -------------------------------------------------------------------------------- 1 | 1 10 10 2 | end of file expected near 'foo' 3 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/garbage-at-the-end/input: -------------------------------------------------------------------------------- 1 | [1,2,3]foo 2 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/integer-starting-with-zero/error: -------------------------------------------------------------------------------- 1 | 1 2 2 2 | invalid token near '0' 3 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/integer-starting-with-zero/input: -------------------------------------------------------------------------------- 1 | [012] 2 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/invalid-escape/error: -------------------------------------------------------------------------------- 1 | 1 4 4 2 | invalid escape near '"\a' 3 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/invalid-escape/input: -------------------------------------------------------------------------------- 1 | ["\a <-- invalid escape"] 2 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/invalid-identifier/error: -------------------------------------------------------------------------------- 1 | 1 5 5 2 | invalid token near 'troo' 3 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/invalid-identifier/input: -------------------------------------------------------------------------------- 1 | [troo 2 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/invalid-negative-integer/error: -------------------------------------------------------------------------------- 1 | 1 8 8 2 | ']' expected near 'foo' 3 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/invalid-negative-integer/input: -------------------------------------------------------------------------------- 1 | [-123foo] 2 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/invalid-negative-real/error: -------------------------------------------------------------------------------- 1 | 1 12 12 2 | ']' expected near 'foo' 3 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/invalid-negative-real/input: -------------------------------------------------------------------------------- 1 | [-123.123foo] 2 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/lone-open-brace/input: -------------------------------------------------------------------------------- 1 | { 2 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/lone-open-bracket/error.normal: -------------------------------------------------------------------------------- 1 | 2 0 2 2 | ']' expected near end of file 3 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/lone-open-bracket/error.strip: -------------------------------------------------------------------------------- 1 | 1 1 1 2 | ']' expected near end of file 3 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/lone-open-bracket/input: -------------------------------------------------------------------------------- 1 | [ 2 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/lone-second-surrogate/error: -------------------------------------------------------------------------------- 1 | 1 40 40 2 | invalid Unicode '\uDFAA' 3 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/lone-second-surrogate/input: -------------------------------------------------------------------------------- 1 | ["\uDFAA (second surrogate on it's own)"] 2 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/minus-sign-without-number/error: -------------------------------------------------------------------------------- 1 | 1 2 2 2 | invalid token near '-' 3 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/minus-sign-without-number/input: -------------------------------------------------------------------------------- 1 | [-foo] 2 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/negative-integer-starting-with-zero/input: -------------------------------------------------------------------------------- 1 | [-012] 2 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/null-byte-in-string/input: -------------------------------------------------------------------------------- 1 | ["null byte not allowed"] 2 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/null-byte-outside-string/error: -------------------------------------------------------------------------------- 1 | 1 2 2 2 | invalid token near end of file 3 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/null-byte-outside-string/input: -------------------------------------------------------------------------------- 1 | [ 2 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/null/error: -------------------------------------------------------------------------------- 1 | 1 4 4 2 | '[' or '{' expected near 'null' 3 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/null/input: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/object-apostrophes/error: -------------------------------------------------------------------------------- 1 | 1 2 2 2 | string or '}' expected near ''' 3 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/object-apostrophes/input: -------------------------------------------------------------------------------- 1 | {'a' 2 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/object-garbage-at-end/error: -------------------------------------------------------------------------------- 1 | 1 12 12 2 | '}' expected near '123' 3 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/object-garbage-at-end/input: -------------------------------------------------------------------------------- 1 | {"a":"a" 123} 2 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/object-in-unterminated-array/input: -------------------------------------------------------------------------------- 1 | [{} 2 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/object-no-colon/error.normal: -------------------------------------------------------------------------------- 1 | 2 0 5 2 | ':' expected near end of file 3 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/object-no-colon/error.strip: -------------------------------------------------------------------------------- 1 | 1 4 4 2 | ':' expected near end of file 3 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/object-no-colon/input: -------------------------------------------------------------------------------- 1 | {"a" 2 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/object-no-value/error.strip: -------------------------------------------------------------------------------- 1 | 1 5 5 2 | unexpected token near end of file 3 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/object-no-value/input: -------------------------------------------------------------------------------- 1 | {"a": 2 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/object-unterminated-value/input: -------------------------------------------------------------------------------- 1 | {"a":"a 2 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/real-garbage-after-e/error: -------------------------------------------------------------------------------- 1 | 1 3 3 2 | invalid token near '1e' 3 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/real-garbage-after-e/input: -------------------------------------------------------------------------------- 1 | [1ea] 2 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/real-truncated-at-e/error: -------------------------------------------------------------------------------- 1 | 1 3 3 2 | invalid token near '1e' 3 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/real-truncated-at-e/input: -------------------------------------------------------------------------------- 1 | [1e] 2 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/real-truncated-at-point/error: -------------------------------------------------------------------------------- 1 | 1 3 3 2 | invalid token near '1.' 3 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/real-truncated-at-point/input: -------------------------------------------------------------------------------- 1 | [1.] 2 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/tab-character-in-string/error: -------------------------------------------------------------------------------- 1 | 1 2 2 2 | control character 0x9 near '"' 3 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/tab-character-in-string/input: -------------------------------------------------------------------------------- 1 | [" <-- tab character"] 2 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/too-big-negative-integer/error: -------------------------------------------------------------------------------- 1 | 1 32 32 2 | too big negative integer 3 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/too-big-positive-integer/error: -------------------------------------------------------------------------------- 1 | 1 31 31 2 | too big integer 3 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/truncated-unicode-surrogate/error: -------------------------------------------------------------------------------- 1 | 1 46 46 2 | invalid Unicode '\uDADA' 3 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/unicode-identifier/error: -------------------------------------------------------------------------------- 1 | 1 1 2 2 | '[' or '{' expected near 'å' 3 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/unicode-identifier/input: -------------------------------------------------------------------------------- 1 | å 2 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/unterminated-array-and-object/input: -------------------------------------------------------------------------------- 1 | [{ 2 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/unterminated-array/error.normal: -------------------------------------------------------------------------------- 1 | 2 0 5 2 | ']' expected near end of file 3 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/unterminated-array/error.strip: -------------------------------------------------------------------------------- 1 | 1 4 4 2 | ']' expected near end of file 3 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/unterminated-array/input: -------------------------------------------------------------------------------- 1 | ["a" 2 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/unterminated-empty-key/input: -------------------------------------------------------------------------------- 1 | {" 2 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/unterminated-key/error.normal: -------------------------------------------------------------------------------- 1 | 1 3 3 2 | unexpected newline near '"a' 3 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/unterminated-key/error.strip: -------------------------------------------------------------------------------- 1 | 1 3 3 2 | premature end of input near '"a' 3 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/unterminated-key/input: -------------------------------------------------------------------------------- 1 | {"a 2 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/unterminated-object-and-array/input: -------------------------------------------------------------------------------- 1 | {[ 2 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/unterminated-string/error.normal: -------------------------------------------------------------------------------- 1 | 1 3 3 2 | unexpected newline near '"a' 3 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/invalid/unterminated-string/input: -------------------------------------------------------------------------------- 1 | ["a 2 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/empty-array/input: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/empty-array/output: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/empty-object-in-array/input: -------------------------------------------------------------------------------- 1 | [{}] 2 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/empty-object-in-array/output: -------------------------------------------------------------------------------- 1 | [{}] -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/empty-object/input: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/empty-object/output: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/empty-string/input: -------------------------------------------------------------------------------- 1 | [""] 2 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/empty-string/output: -------------------------------------------------------------------------------- 1 | [""] -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/escaped-utf-control-char/input: -------------------------------------------------------------------------------- 1 | ["\u0012 escaped control character"] 2 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/escaped-utf-control-char/output: -------------------------------------------------------------------------------- 1 | ["\u0012 escaped control character"] -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/false/input: -------------------------------------------------------------------------------- 1 | [false] 2 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/false/output: -------------------------------------------------------------------------------- 1 | [false] -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/negative-int/input: -------------------------------------------------------------------------------- 1 | [-123] 2 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/negative-int/output: -------------------------------------------------------------------------------- 1 | [-123] -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/negative-one/input: -------------------------------------------------------------------------------- 1 | [-1] 2 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/negative-one/output: -------------------------------------------------------------------------------- 1 | [-1] -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/negative-zero/input: -------------------------------------------------------------------------------- 1 | [-0] 2 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/negative-zero/output: -------------------------------------------------------------------------------- 1 | [0] -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/null/input: -------------------------------------------------------------------------------- 1 | [null] 2 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/null/output: -------------------------------------------------------------------------------- 1 | [null] -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/one-byte-utf-8/input: -------------------------------------------------------------------------------- 1 | ["\u002c one-byte UTF-8"] 2 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/one-byte-utf-8/output: -------------------------------------------------------------------------------- 1 | [", one-byte UTF-8"] -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/real-capital-e-negative-exponent/input: -------------------------------------------------------------------------------- 1 | [1E-2] 2 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/real-capital-e-negative-exponent/output: -------------------------------------------------------------------------------- 1 | [0.01] -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/real-capital-e-positive-exponent/input: -------------------------------------------------------------------------------- 1 | [1E+2] 2 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/real-capital-e-positive-exponent/output: -------------------------------------------------------------------------------- 1 | [100.0] -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/real-capital-e/input: -------------------------------------------------------------------------------- 1 | [1E22] 2 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/real-capital-e/output: -------------------------------------------------------------------------------- 1 | [1e22] -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/real-exponent/input: -------------------------------------------------------------------------------- 1 | [123e45] 2 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/real-fraction-exponent/input: -------------------------------------------------------------------------------- 1 | [123.456e78] 2 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/real-fraction-exponent/output: -------------------------------------------------------------------------------- 1 | [1.23456e80] -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/real-negative-exponent/input: -------------------------------------------------------------------------------- 1 | [1e-2] 2 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/real-negative-exponent/output: -------------------------------------------------------------------------------- 1 | [0.01] -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/real-positive-exponent/input: -------------------------------------------------------------------------------- 1 | [1e+2] 2 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/real-positive-exponent/output: -------------------------------------------------------------------------------- 1 | [100.0] -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/real-underflow/output: -------------------------------------------------------------------------------- 1 | [0.0] -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/short-string/input: -------------------------------------------------------------------------------- 1 | ["a"] 2 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/short-string/output: -------------------------------------------------------------------------------- 1 | ["a"] -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/simple-ascii-string/input: -------------------------------------------------------------------------------- 1 | ["abcdefghijklmnopqrstuvwxyz1234567890 "] 2 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/simple-ascii-string/output: -------------------------------------------------------------------------------- 1 | ["abcdefghijklmnopqrstuvwxyz1234567890 "] -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/simple-int-0/input: -------------------------------------------------------------------------------- 1 | [0] 2 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/simple-int-0/output: -------------------------------------------------------------------------------- 1 | [0] -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/simple-int-1/input: -------------------------------------------------------------------------------- 1 | [1] 2 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/simple-int-1/output: -------------------------------------------------------------------------------- 1 | [1] -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/simple-int-123/input: -------------------------------------------------------------------------------- 1 | [123] 2 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/simple-int-123/output: -------------------------------------------------------------------------------- 1 | [123] -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/simple-object/input: -------------------------------------------------------------------------------- 1 | {"a":[]} 2 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/simple-object/output: -------------------------------------------------------------------------------- 1 | {"a": []} -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/simple-real/input: -------------------------------------------------------------------------------- 1 | [123.456789] 2 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/simple-real/output: -------------------------------------------------------------------------------- 1 | [123.456789] -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/string-escapes/input: -------------------------------------------------------------------------------- 1 | ["\"\\\/\b\f\n\r\t"] 2 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/string-escapes/output: -------------------------------------------------------------------------------- 1 | ["\"\\/\b\f\n\r\t"] -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/three-byte-utf-8/input: -------------------------------------------------------------------------------- 1 | ["\u0821 three-byte UTF-8"] 2 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/three-byte-utf-8/output: -------------------------------------------------------------------------------- 1 | ["ࠡ three-byte UTF-8"] -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/true/input: -------------------------------------------------------------------------------- 1 | [true] 2 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/true/output: -------------------------------------------------------------------------------- 1 | [true] -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/two-byte-utf-8/input: -------------------------------------------------------------------------------- 1 | ["\u0123 two-byte UTF-8"] 2 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/two-byte-utf-8/output: -------------------------------------------------------------------------------- 1 | ["ģ two-byte UTF-8"] -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/utf-8-string/input: -------------------------------------------------------------------------------- 1 | ["€þıœəßð some utf-8 ĸʒ×ŋµåäö𝄞"] 2 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/utf-8-string/output: -------------------------------------------------------------------------------- 1 | ["€þıœəßð some utf-8 ĸʒ×ŋµåäö𝄞"] -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jansson-2.4/test/suites/valid/utf-surrogate-four-byte-encoding/output: -------------------------------------------------------------------------------- 1 | ["𝄞 surrogate, four-byte UTF-8"] -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/jpeg-7/libjpeg.map: -------------------------------------------------------------------------------- 1 | LIBJPEG_7.0 { 2 | global: 3 | *; 4 | }; 5 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/miniupnpc-1.5/VERSION: -------------------------------------------------------------------------------- 1 | 1.5 2 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/miniupnpc-1.6.20120410/VERSION: -------------------------------------------------------------------------------- 1 | 1.6 2 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/speex-1.1.12/NEWS: -------------------------------------------------------------------------------- 1 | 2002/02/13: Creation of the "Speex" project 2 | -------------------------------------------------------------------------------- /External/RakNet/DependentExtensions/speex-1.1.12/include/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | SUBDIRS = speex 3 | -------------------------------------------------------------------------------- /External/RakNet/Help/0SleepTimer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/0SleepTimer.jpg -------------------------------------------------------------------------------- /External/RakNet/Help/0SleepTimerSmall.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/0SleepTimerSmall.jpg -------------------------------------------------------------------------------- /External/RakNet/Help/30SleepTimer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/30SleepTimer.jpg -------------------------------------------------------------------------------- /External/RakNet/Help/30SleepTimerSmall.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/30SleepTimerSmall.jpg -------------------------------------------------------------------------------- /External/RakNet/Help/AutopatcherVideo.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/AutopatcherVideo.htm -------------------------------------------------------------------------------- /External/RakNet/Help/Doxygen/html/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/Doxygen/html/bc_s.png -------------------------------------------------------------------------------- /External/RakNet/Help/Doxygen/html/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/Doxygen/html/bdwn.png -------------------------------------------------------------------------------- /External/RakNet/Help/Doxygen/html/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/Doxygen/html/closed.png -------------------------------------------------------------------------------- /External/RakNet/Help/Doxygen/html/doxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/Doxygen/html/doxygen.css -------------------------------------------------------------------------------- /External/RakNet/Help/Doxygen/html/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/Doxygen/html/doxygen.png -------------------------------------------------------------------------------- /External/RakNet/Help/Doxygen/html/files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/Doxygen/html/files.html -------------------------------------------------------------------------------- /External/RakNet/Help/Doxygen/html/ftv2cl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/Doxygen/html/ftv2cl.png -------------------------------------------------------------------------------- /External/RakNet/Help/Doxygen/html/ftv2doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/Doxygen/html/ftv2doc.png -------------------------------------------------------------------------------- /External/RakNet/Help/Doxygen/html/ftv2mo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/Doxygen/html/ftv2mo.png -------------------------------------------------------------------------------- /External/RakNet/Help/Doxygen/html/ftv2ns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/Doxygen/html/ftv2ns.png -------------------------------------------------------------------------------- /External/RakNet/Help/Doxygen/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/Doxygen/html/index.html -------------------------------------------------------------------------------- /External/RakNet/Help/Doxygen/html/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/Doxygen/html/jquery.js -------------------------------------------------------------------------------- /External/RakNet/Help/Doxygen/html/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/Doxygen/html/nav_f.png -------------------------------------------------------------------------------- /External/RakNet/Help/Doxygen/html/nav_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/Doxygen/html/nav_g.png -------------------------------------------------------------------------------- /External/RakNet/Help/Doxygen/html/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/Doxygen/html/nav_h.png -------------------------------------------------------------------------------- /External/RakNet/Help/Doxygen/html/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/Doxygen/html/open.png -------------------------------------------------------------------------------- /External/RakNet/Help/Doxygen/html/pages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/Doxygen/html/pages.html -------------------------------------------------------------------------------- /External/RakNet/Help/Doxygen/html/sync_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/Doxygen/html/sync_on.png -------------------------------------------------------------------------------- /External/RakNet/Help/Doxygen/html/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/Doxygen/html/tab_a.png -------------------------------------------------------------------------------- /External/RakNet/Help/Doxygen/html/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/Doxygen/html/tab_b.png -------------------------------------------------------------------------------- /External/RakNet/Help/Doxygen/html/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/Doxygen/html/tab_h.png -------------------------------------------------------------------------------- /External/RakNet/Help/Doxygen/html/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/Doxygen/html/tab_s.png -------------------------------------------------------------------------------- /External/RakNet/Help/Doxygen/html/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/Doxygen/html/tabs.css -------------------------------------------------------------------------------- /External/RakNet/Help/IrrlichtRakNetDemo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/IrrlichtRakNetDemo.jpg -------------------------------------------------------------------------------- /External/RakNet/Help/PathVariableShot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/PathVariableShot.jpg -------------------------------------------------------------------------------- /External/RakNet/Help/RPC3Video.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/RPC3Video.htm -------------------------------------------------------------------------------- /External/RakNet/Help/RakNetLogo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/RakNetLogo.jpg -------------------------------------------------------------------------------- /External/RakNet/Help/RakNetMajorFeatures.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/RakNetMajorFeatures.htm -------------------------------------------------------------------------------- /External/RakNet/Help/RakNetMajorFeatures.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/RakNetMajorFeatures.html -------------------------------------------------------------------------------- /External/RakNet/Help/RakNetUML.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/RakNetUML.jpg -------------------------------------------------------------------------------- /External/RakNet/Help/RakNet_Server_Setup.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/RakNet_Server_Setup.docx -------------------------------------------------------------------------------- /External/RakNet/Help/RaknetManual.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/RaknetManual.css -------------------------------------------------------------------------------- /External/RakNet/Help/ReplicaManager3Video.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/ReplicaManager3Video.htm -------------------------------------------------------------------------------- /External/RakNet/Help/addchatserverfile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/addchatserverfile.jpg -------------------------------------------------------------------------------- /External/RakNet/Help/autopatcher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/autopatcher.html -------------------------------------------------------------------------------- /External/RakNet/Help/bitstreams.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/bitstreams.html -------------------------------------------------------------------------------- /External/RakNet/Help/bluetooth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/bluetooth.html -------------------------------------------------------------------------------- /External/RakNet/Help/clientserver.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/clientserver.jpg -------------------------------------------------------------------------------- /External/RakNet/Help/cloudcomputing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/cloudcomputing.html -------------------------------------------------------------------------------- /External/RakNet/Help/cloudhosting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/cloudhosting.html -------------------------------------------------------------------------------- /External/RakNet/Help/cloudhosting1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/cloudhosting1.jpg -------------------------------------------------------------------------------- /External/RakNet/Help/cloudhosting2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/cloudhosting2.jpg -------------------------------------------------------------------------------- /External/RakNet/Help/cloudhosting3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/cloudhosting3.jpg -------------------------------------------------------------------------------- /External/RakNet/Help/cloudhosting4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/cloudhosting4.jpg -------------------------------------------------------------------------------- /External/RakNet/Help/cloudhosting5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/cloudhosting5.jpg -------------------------------------------------------------------------------- /External/RakNet/Help/cloudhosting6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/cloudhosting6.jpg -------------------------------------------------------------------------------- /External/RakNet/Help/cloudhosting7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/cloudhosting7.jpg -------------------------------------------------------------------------------- /External/RakNet/Help/compilersetup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/compilersetup.html -------------------------------------------------------------------------------- /External/RakNet/Help/compilersetup_xcode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/compilersetup_xcode.html -------------------------------------------------------------------------------- /External/RakNet/Help/completeproject.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/completeproject.jpg -------------------------------------------------------------------------------- /External/RakNet/Help/congestioncontrol.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/congestioncontrol.html -------------------------------------------------------------------------------- /External/RakNet/Help/connecting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/connecting.html -------------------------------------------------------------------------------- /External/RakNet/Help/connectionFilter.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /External/RakNet/Help/connectiongraph.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/connectiongraph.html -------------------------------------------------------------------------------- /External/RakNet/Help/consoleapplication.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/consoleapplication.jpg -------------------------------------------------------------------------------- /External/RakNet/Help/consoleserver.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/consoleserver.html -------------------------------------------------------------------------------- /External/RakNet/Help/crashreporter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/crashreporter.html -------------------------------------------------------------------------------- /External/RakNet/Help/creatingpackets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/creatingpackets.html -------------------------------------------------------------------------------- /External/RakNet/Help/csharpunity.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/csharpunity.html -------------------------------------------------------------------------------- /External/RakNet/Help/datacompression.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/datacompression.html -------------------------------------------------------------------------------- /External/RakNet/Help/dependencies.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/dependencies.html -------------------------------------------------------------------------------- /External/RakNet/Help/emailsender.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/emailsender.html -------------------------------------------------------------------------------- /External/RakNet/Help/faq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/faq.html -------------------------------------------------------------------------------- /External/RakNet/Help/filelisttransfer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/filelisttransfer.html -------------------------------------------------------------------------------- /External/RakNet/Help/fullyconnectedmesh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/fullyconnectedmesh.html -------------------------------------------------------------------------------- /External/RakNet/Help/fullyconnectedmesh2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/fullyconnectedmesh2.html -------------------------------------------------------------------------------- /External/RakNet/Help/helloworldvideo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/helloworldvideo.html -------------------------------------------------------------------------------- /External/RakNet/Help/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/index.html -------------------------------------------------------------------------------- /External/RakNet/Help/introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/introduction.html -------------------------------------------------------------------------------- /External/RakNet/Help/iocompletionports.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/iocompletionports.html -------------------------------------------------------------------------------- /External/RakNet/Help/ipv6support.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/ipv6support.html -------------------------------------------------------------------------------- /External/RakNet/Help/irrlichtfpsdemo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/irrlichtfpsdemo.html -------------------------------------------------------------------------------- /External/RakNet/Help/lightweightdatabase.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/lightweightdatabase.html -------------------------------------------------------------------------------- /External/RakNet/Help/lobby.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/lobby.html -------------------------------------------------------------------------------- /External/RakNet/Help/makedll.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/makedll.jpg -------------------------------------------------------------------------------- /External/RakNet/Help/makedllsmall.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/makedllsmall.jpg -------------------------------------------------------------------------------- /External/RakNet/Help/marmalade.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/marmalade.html -------------------------------------------------------------------------------- /External/RakNet/Help/masterserver.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/masterserver.html -------------------------------------------------------------------------------- /External/RakNet/Help/memorysynchronizer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/memorysynchronizer.html -------------------------------------------------------------------------------- /External/RakNet/Help/messagefilter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/messagefilter.html -------------------------------------------------------------------------------- /External/RakNet/Help/messagehandler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/messagehandler.html -------------------------------------------------------------------------------- /External/RakNet/Help/multithreadeddebug.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/multithreadeddebug.jpg -------------------------------------------------------------------------------- /External/RakNet/Help/natpunchpanel1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/natpunchpanel1.html -------------------------------------------------------------------------------- /External/RakNet/Help/natpunchpanel1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/natpunchpanel1.jpg -------------------------------------------------------------------------------- /External/RakNet/Help/natpunchpanel1small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/natpunchpanel1small.jpg -------------------------------------------------------------------------------- /External/RakNet/Help/natpunchpanel2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/natpunchpanel2.html -------------------------------------------------------------------------------- /External/RakNet/Help/natpunchpanel2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/natpunchpanel2.jpg -------------------------------------------------------------------------------- /External/RakNet/Help/natpunchpanel2small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/natpunchpanel2small.jpg -------------------------------------------------------------------------------- /External/RakNet/Help/natpunchpanel3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/natpunchpanel3.html -------------------------------------------------------------------------------- /External/RakNet/Help/natpunchpanel3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/natpunchpanel3.jpg -------------------------------------------------------------------------------- /External/RakNet/Help/natpunchpanel3small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/natpunchpanel3small.jpg -------------------------------------------------------------------------------- /External/RakNet/Help/natpunchpanel4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/natpunchpanel4.html -------------------------------------------------------------------------------- /External/RakNet/Help/natpunchpanel4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/natpunchpanel4.jpg -------------------------------------------------------------------------------- /External/RakNet/Help/natpunchpanel4small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/natpunchpanel4small.jpg -------------------------------------------------------------------------------- /External/RakNet/Help/natpunchpanel5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/natpunchpanel5.html -------------------------------------------------------------------------------- /External/RakNet/Help/natpunchpanel5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/natpunchpanel5.jpg -------------------------------------------------------------------------------- /External/RakNet/Help/natpunchpanel5small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/natpunchpanel5small.jpg -------------------------------------------------------------------------------- /External/RakNet/Help/natpunchpanel6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/natpunchpanel6.html -------------------------------------------------------------------------------- /External/RakNet/Help/natpunchpanel6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/natpunchpanel6.jpg -------------------------------------------------------------------------------- /External/RakNet/Help/natpunchpanel6small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/natpunchpanel6small.jpg -------------------------------------------------------------------------------- /External/RakNet/Help/natpunchpanel7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/natpunchpanel7.html -------------------------------------------------------------------------------- /External/RakNet/Help/natpunchpanel7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/natpunchpanel7.jpg -------------------------------------------------------------------------------- /External/RakNet/Help/natpunchpanel7small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/natpunchpanel7small.jpg -------------------------------------------------------------------------------- /External/RakNet/Help/natpunchthrough.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/natpunchthrough.html -------------------------------------------------------------------------------- /External/RakNet/Help/nattypedetection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/nattypedetection.html -------------------------------------------------------------------------------- /External/RakNet/Help/networkidobject.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/networkidobject.html -------------------------------------------------------------------------------- /External/RakNet/Help/networkmessages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/networkmessages.html -------------------------------------------------------------------------------- /External/RakNet/Help/networksimulator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/networksimulator.html -------------------------------------------------------------------------------- /External/RakNet/Help/newproject.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/newproject.jpg -------------------------------------------------------------------------------- /External/RakNet/Help/newprojectsmall.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/newprojectsmall.jpg -------------------------------------------------------------------------------- /External/RakNet/Help/ogre3dinterpdemo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/ogre3dinterpdemo.html -------------------------------------------------------------------------------- /External/RakNet/Help/packetlogger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/packetlogger.html -------------------------------------------------------------------------------- /External/RakNet/Help/phpdirectoryserver.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/phpdirectoryserver.html -------------------------------------------------------------------------------- /External/RakNet/Help/playerids.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/playerids.html -------------------------------------------------------------------------------- /External/RakNet/Help/plugininterface.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/plugininterface.html -------------------------------------------------------------------------------- /External/RakNet/Help/programmingtips.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/programmingtips.html -------------------------------------------------------------------------------- /External/RakNet/Help/rackspaceinterface.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/rackspaceinterface.html -------------------------------------------------------------------------------- /External/RakNet/Help/rakvoice.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/rakvoice.html -------------------------------------------------------------------------------- /External/RakNet/Help/readyevent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/readyevent.html -------------------------------------------------------------------------------- /External/RakNet/Help/receivingpackets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/receivingpackets.html -------------------------------------------------------------------------------- /External/RakNet/Help/reliabilitytypes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/reliabilitytypes.html -------------------------------------------------------------------------------- /External/RakNet/Help/replicamanager3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/replicamanager3.html -------------------------------------------------------------------------------- /External/RakNet/Help/revisionlog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/revisionlog.html -------------------------------------------------------------------------------- /External/RakNet/Help/router.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/router.html -------------------------------------------------------------------------------- /External/RakNet/Help/rpc4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/rpc4.html -------------------------------------------------------------------------------- /External/RakNet/Help/samples.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/samples.html -------------------------------------------------------------------------------- /External/RakNet/Help/secureconnections.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/secureconnections.html -------------------------------------------------------------------------------- /External/RakNet/Help/sendingpackets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/sendingpackets.html -------------------------------------------------------------------------------- /External/RakNet/Help/spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/spacer.gif -------------------------------------------------------------------------------- /External/RakNet/Help/sqlite3loggerplugin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/sqlite3loggerplugin.html -------------------------------------------------------------------------------- /External/RakNet/Help/sqlite3plugin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/sqlite3plugin.html -------------------------------------------------------------------------------- /External/RakNet/Help/startup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/startup.html -------------------------------------------------------------------------------- /External/RakNet/Help/statistics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/statistics.html -------------------------------------------------------------------------------- /External/RakNet/Help/steamlobby.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/steamlobby.html -------------------------------------------------------------------------------- /External/RakNet/Help/stringcompressor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/stringcompressor.html -------------------------------------------------------------------------------- /External/RakNet/Help/swfobject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/swfobject.js -------------------------------------------------------------------------------- /External/RakNet/Help/swigtutorial.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/swigtutorial.html -------------------------------------------------------------------------------- /External/RakNet/Help/systemaddresses.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/systemaddresses.html -------------------------------------------------------------------------------- /External/RakNet/Help/systemoverview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/systemoverview.html -------------------------------------------------------------------------------- /External/RakNet/Help/tcpinterface.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/tcpinterface.html -------------------------------------------------------------------------------- /External/RakNet/Help/teambalancer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/teambalancer.html -------------------------------------------------------------------------------- /External/RakNet/Help/teammanager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/teammanager.html -------------------------------------------------------------------------------- /External/RakNet/Help/telnet1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/telnet1.jpg -------------------------------------------------------------------------------- /External/RakNet/Help/telnet2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/telnet2.jpg -------------------------------------------------------------------------------- /External/RakNet/Help/telnet3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/telnet3.jpg -------------------------------------------------------------------------------- /External/RakNet/Help/timestamp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/timestamp.jpg -------------------------------------------------------------------------------- /External/RakNet/Help/timestamping.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/timestamping.html -------------------------------------------------------------------------------- /External/RakNet/Help/tutorial.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/tutorial.html -------------------------------------------------------------------------------- /External/RakNet/Help/tutorial1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/tutorial1.jpg -------------------------------------------------------------------------------- /External/RakNet/Help/tutorial2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/tutorial2.jpg -------------------------------------------------------------------------------- /External/RakNet/Help/tutorial3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/tutorial3.jpg -------------------------------------------------------------------------------- /External/RakNet/Help/tutorial4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/tutorial4.jpg -------------------------------------------------------------------------------- /External/RakNet/Help/tutorial5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/tutorial5.jpg -------------------------------------------------------------------------------- /External/RakNet/Help/tutorial6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/tutorial6.jpg -------------------------------------------------------------------------------- /External/RakNet/Help/tutorial7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/tutorial7.jpg -------------------------------------------------------------------------------- /External/RakNet/Help/tutorialsample1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/tutorialsample1.html -------------------------------------------------------------------------------- /External/RakNet/Help/tutorialsample2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/tutorialsample2.html -------------------------------------------------------------------------------- /External/RakNet/Help/tutorialsample3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/tutorialsample3.html -------------------------------------------------------------------------------- /External/RakNet/Help/useiocompletionports.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/useiocompletionports.jpg -------------------------------------------------------------------------------- /External/RakNet/Help/ws2_32include.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/ws2_32include.jpg -------------------------------------------------------------------------------- /External/RakNet/Help/ws2_32includesmall.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/ws2_32includesmall.jpg -------------------------------------------------------------------------------- /External/RakNet/Help/xcode_addfiles.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/xcode_addfiles.jpg -------------------------------------------------------------------------------- /External/RakNet/Help/xcode_changesdk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/xcode_changesdk.jpg -------------------------------------------------------------------------------- /External/RakNet/Help/xcode_library.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/xcode_library.jpg -------------------------------------------------------------------------------- /External/RakNet/Help/xcode_libraryname.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/xcode_libraryname.jpg -------------------------------------------------------------------------------- /External/RakNet/Help/xcode_librarysmall.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/xcode_librarysmall.jpg -------------------------------------------------------------------------------- /External/RakNet/Help/xcode_newworkspace.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/xcode_newworkspace.jpg -------------------------------------------------------------------------------- /External/RakNet/Help/xcode_remove_cat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/xcode_remove_cat.jpg -------------------------------------------------------------------------------- /External/RakNet/Help/xcode_sourcefolder.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Help/xcode_sourcefolder.jpg -------------------------------------------------------------------------------- /External/RakNet/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/LICENSE -------------------------------------------------------------------------------- /External/RakNet/Lib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Lib/CMakeLists.txt -------------------------------------------------------------------------------- /External/RakNet/Lib/DLL/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Lib/DLL/CMakeLists.txt -------------------------------------------------------------------------------- /External/RakNet/Lib/DLL/DLL.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Lib/DLL/DLL.rc -------------------------------------------------------------------------------- /External/RakNet/Lib/DLL/DLL.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Lib/DLL/DLL.vcproj -------------------------------------------------------------------------------- /External/RakNet/Lib/DLL/DLL_vc8.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Lib/DLL/DLL_vc8.vcproj -------------------------------------------------------------------------------- /External/RakNet/Lib/DLL/DLL_vc9.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Lib/DLL/DLL_vc9.vcproj -------------------------------------------------------------------------------- /External/RakNet/Lib/DLL/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Lib/DLL/readme.txt -------------------------------------------------------------------------------- /External/RakNet/Lib/DLL/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Lib/DLL/resource.h -------------------------------------------------------------------------------- /External/RakNet/Lib/LibStatic/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Lib/LibStatic/CMakeLists.txt -------------------------------------------------------------------------------- /External/RakNet/Lib/LibStatic/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Lib/LibStatic/readme.txt -------------------------------------------------------------------------------- /External/RakNet/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/PATENTS -------------------------------------------------------------------------------- /External/RakNet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/README.md -------------------------------------------------------------------------------- /External/RakNet/RakNet_IOS_XCode/RakNetTest/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /External/RakNet/RakNet_VS2008.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/RakNet_VS2008.sln -------------------------------------------------------------------------------- /External/RakNet/RakNet_WinPhone8_VS2012.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/RakNet_WinPhone8_VS2012.sln -------------------------------------------------------------------------------- /External/RakNet/Samples/BurstTest/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Samples/BurstTest/readme.txt -------------------------------------------------------------------------------- /External/RakNet/Samples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Samples/CMakeLists.txt -------------------------------------------------------------------------------- /External/RakNet/Samples/CloudTest/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Samples/CloudTest/readme.txt -------------------------------------------------------------------------------- /External/RakNet/Samples/Encryption/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Samples/Encryption/readme.txt -------------------------------------------------------------------------------- /External/RakNet/Samples/FCMHost/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Samples/FCMHost/readme.txt -------------------------------------------------------------------------------- /External/RakNet/Samples/Lobby3/Lobby3.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Samples/Lobby3/Lobby3.vcproj -------------------------------------------------------------------------------- /External/RakNet/Samples/Lobby3/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Samples/Lobby3/main.cpp -------------------------------------------------------------------------------- /External/RakNet/Samples/OfflineMessagesTest/OfflineMessagesTest.txt: -------------------------------------------------------------------------------- 1 | Tests advertise system and offline pings -------------------------------------------------------------------------------- /External/RakNet/Samples/Ping/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Samples/Ping/CMakeLists.txt -------------------------------------------------------------------------------- /External/RakNet/Samples/Ping/Ping.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Samples/Ping/Ping.cpp -------------------------------------------------------------------------------- /External/RakNet/Samples/Ping/Ping.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Samples/Ping/Ping.dsp -------------------------------------------------------------------------------- /External/RakNet/Samples/Ping/Ping.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Samples/Ping/Ping.txt -------------------------------------------------------------------------------- /External/RakNet/Samples/Ping/Ping.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Samples/Ping/Ping.vcproj -------------------------------------------------------------------------------- /External/RakNet/Samples/Ping/Ping_vc8.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Samples/Ping/Ping_vc8.vcproj -------------------------------------------------------------------------------- /External/RakNet/Samples/Ping/Ping_vc9.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Samples/Ping/Ping_vc9.vcproj -------------------------------------------------------------------------------- /External/RakNet/Samples/Ping/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Samples/Ping/readme.txt -------------------------------------------------------------------------------- /External/RakNet/Samples/RPC3/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Samples/RPC3/CMakeLists.txt -------------------------------------------------------------------------------- /External/RakNet/Samples/RPC3/RPC3.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Samples/RPC3/RPC3.vcproj -------------------------------------------------------------------------------- /External/RakNet/Samples/RPC3/RPC3Sample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Samples/RPC3/RPC3Sample.cpp -------------------------------------------------------------------------------- /External/RakNet/Samples/RPC3/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Samples/RPC3/readme.txt -------------------------------------------------------------------------------- /External/RakNet/Samples/RPC4/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Samples/RPC4/CMakeLists.txt -------------------------------------------------------------------------------- /External/RakNet/Samples/RPC4/RPC4.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Samples/RPC4/RPC4.vcproj -------------------------------------------------------------------------------- /External/RakNet/Samples/RPC4/RPC4Sample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Samples/RPC4/RPC4Sample.cpp -------------------------------------------------------------------------------- /External/RakNet/Samples/RPC4/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Samples/RPC4/readme.txt -------------------------------------------------------------------------------- /External/RakNet/Samples/RakVoice/RakVoice.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Samples/RakVoice/RakVoice.txt -------------------------------------------------------------------------------- /External/RakNet/Samples/RakVoice/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Samples/RakVoice/main.cpp -------------------------------------------------------------------------------- /External/RakNet/Samples/RakVoice/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Samples/RakVoice/readme.txt -------------------------------------------------------------------------------- /External/RakNet/Samples/Rooms/Rooms.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Samples/Rooms/Rooms.vcproj -------------------------------------------------------------------------------- /External/RakNet/Samples/Rooms/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Samples/Rooms/readme.txt -------------------------------------------------------------------------------- /External/RakNet/Samples/RoomsBrowserGFx3/RakNet/readme.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /External/RakNet/Samples/Router2/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Samples/Router2/readme.txt -------------------------------------------------------------------------------- /External/RakNet/Samples/SendEmail/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Samples/SendEmail/main.cpp -------------------------------------------------------------------------------- /External/RakNet/Samples/TestDLL/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Samples/TestDLL/main.cpp -------------------------------------------------------------------------------- /External/RakNet/Samples/TestDLL/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Samples/TestDLL/readme.txt -------------------------------------------------------------------------------- /External/RakNet/Samples/Tests/DebugTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Samples/Tests/DebugTools.h -------------------------------------------------------------------------------- /External/RakNet/Samples/Tests/RakTimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Samples/Tests/RakTimer.cpp -------------------------------------------------------------------------------- /External/RakNet/Samples/Tests/RakTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Samples/Tests/RakTimer.h -------------------------------------------------------------------------------- /External/RakNet/Samples/Tests/Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Samples/Tests/Tests.cpp -------------------------------------------------------------------------------- /External/RakNet/Samples/Tests/Tests.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Samples/Tests/Tests.vcproj -------------------------------------------------------------------------------- /External/RakNet/Samples/WinPhone8/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Samples/WinPhone8/pch.cpp -------------------------------------------------------------------------------- /External/RakNet/Samples/WinPhone8/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Samples/WinPhone8/pch.h -------------------------------------------------------------------------------- /External/RakNet/Samples/iOS/ChatClient/ChatClient/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /External/RakNet/Source/Base64Encoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/Base64Encoder.cpp -------------------------------------------------------------------------------- /External/RakNet/Source/Base64Encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/Base64Encoder.h -------------------------------------------------------------------------------- /External/RakNet/Source/BitStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/BitStream.cpp -------------------------------------------------------------------------------- /External/RakNet/Source/BitStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/BitStream.h -------------------------------------------------------------------------------- /External/RakNet/Source/CCRakNetUDT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/CCRakNetUDT.cpp -------------------------------------------------------------------------------- /External/RakNet/Source/CCRakNetUDT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/CCRakNetUDT.h -------------------------------------------------------------------------------- /External/RakNet/Source/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.6) 2 | -------------------------------------------------------------------------------- /External/RakNet/Source/CheckSum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/CheckSum.cpp -------------------------------------------------------------------------------- /External/RakNet/Source/CheckSum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/CheckSum.h -------------------------------------------------------------------------------- /External/RakNet/Source/CloudClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/CloudClient.cpp -------------------------------------------------------------------------------- /External/RakNet/Source/CloudClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/CloudClient.h -------------------------------------------------------------------------------- /External/RakNet/Source/CloudCommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/CloudCommon.cpp -------------------------------------------------------------------------------- /External/RakNet/Source/CloudCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/CloudCommon.h -------------------------------------------------------------------------------- /External/RakNet/Source/CloudServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/CloudServer.cpp -------------------------------------------------------------------------------- /External/RakNet/Source/CloudServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/CloudServer.h -------------------------------------------------------------------------------- /External/RakNet/Source/ConnectionGraph2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/ConnectionGraph2.h -------------------------------------------------------------------------------- /External/RakNet/Source/ConsoleServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/ConsoleServer.cpp -------------------------------------------------------------------------------- /External/RakNet/Source/ConsoleServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/ConsoleServer.h -------------------------------------------------------------------------------- /External/RakNet/Source/DR_SHA1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/DR_SHA1.cpp -------------------------------------------------------------------------------- /External/RakNet/Source/DR_SHA1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/DR_SHA1.h -------------------------------------------------------------------------------- /External/RakNet/Source/DS_BPlusTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/DS_BPlusTree.h -------------------------------------------------------------------------------- /External/RakNet/Source/DS_BytePool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/DS_BytePool.cpp -------------------------------------------------------------------------------- /External/RakNet/Source/DS_BytePool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/DS_BytePool.h -------------------------------------------------------------------------------- /External/RakNet/Source/DS_ByteQueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/DS_ByteQueue.cpp -------------------------------------------------------------------------------- /External/RakNet/Source/DS_ByteQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/DS_ByteQueue.h -------------------------------------------------------------------------------- /External/RakNet/Source/DS_Hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/DS_Hash.h -------------------------------------------------------------------------------- /External/RakNet/Source/DS_Heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/DS_Heap.h -------------------------------------------------------------------------------- /External/RakNet/Source/DS_LinkedList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/DS_LinkedList.h -------------------------------------------------------------------------------- /External/RakNet/Source/DS_List.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/DS_List.h -------------------------------------------------------------------------------- /External/RakNet/Source/DS_Map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/DS_Map.h -------------------------------------------------------------------------------- /External/RakNet/Source/DS_MemoryPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/DS_MemoryPool.h -------------------------------------------------------------------------------- /External/RakNet/Source/DS_Multilist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/DS_Multilist.h -------------------------------------------------------------------------------- /External/RakNet/Source/DS_OrderedList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/DS_OrderedList.h -------------------------------------------------------------------------------- /External/RakNet/Source/DS_Queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/DS_Queue.h -------------------------------------------------------------------------------- /External/RakNet/Source/DS_RangeList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/DS_RangeList.h -------------------------------------------------------------------------------- /External/RakNet/Source/DS_Table.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/DS_Table.cpp -------------------------------------------------------------------------------- /External/RakNet/Source/DS_Table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/DS_Table.h -------------------------------------------------------------------------------- /External/RakNet/Source/DS_Tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/DS_Tree.h -------------------------------------------------------------------------------- /External/RakNet/Source/DS_WeightedGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/DS_WeightedGraph.h -------------------------------------------------------------------------------- /External/RakNet/Source/DataCompressor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/DataCompressor.cpp -------------------------------------------------------------------------------- /External/RakNet/Source/DataCompressor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/DataCompressor.h -------------------------------------------------------------------------------- /External/RakNet/Source/DynDNS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/DynDNS.cpp -------------------------------------------------------------------------------- /External/RakNet/Source/DynDNS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/DynDNS.h -------------------------------------------------------------------------------- /External/RakNet/Source/EmailSender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/EmailSender.cpp -------------------------------------------------------------------------------- /External/RakNet/Source/EmailSender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/EmailSender.h -------------------------------------------------------------------------------- /External/RakNet/Source/EmptyHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/EmptyHeader.h -------------------------------------------------------------------------------- /External/RakNet/Source/EpochTimeToString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/EpochTimeToString.h -------------------------------------------------------------------------------- /External/RakNet/Source/Export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/Export.h -------------------------------------------------------------------------------- /External/RakNet/Source/FileList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/FileList.cpp -------------------------------------------------------------------------------- /External/RakNet/Source/FileList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/FileList.h -------------------------------------------------------------------------------- /External/RakNet/Source/FileListTransfer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/FileListTransfer.h -------------------------------------------------------------------------------- /External/RakNet/Source/FileOperations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/FileOperations.cpp -------------------------------------------------------------------------------- /External/RakNet/Source/FileOperations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/FileOperations.h -------------------------------------------------------------------------------- /External/RakNet/Source/FormatString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/FormatString.cpp -------------------------------------------------------------------------------- /External/RakNet/Source/FormatString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/FormatString.h -------------------------------------------------------------------------------- /External/RakNet/Source/GetTime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/GetTime.cpp -------------------------------------------------------------------------------- /External/RakNet/Source/GetTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/GetTime.h -------------------------------------------------------------------------------- /External/RakNet/Source/Getche.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/Getche.cpp -------------------------------------------------------------------------------- /External/RakNet/Source/Getche.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/Getche.h -------------------------------------------------------------------------------- /External/RakNet/Source/Gets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/Gets.cpp -------------------------------------------------------------------------------- /External/RakNet/Source/Gets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/Gets.h -------------------------------------------------------------------------------- /External/RakNet/Source/GridSectorizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/GridSectorizer.cpp -------------------------------------------------------------------------------- /External/RakNet/Source/GridSectorizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/GridSectorizer.h -------------------------------------------------------------------------------- /External/RakNet/Source/HTTPConnection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/HTTPConnection.cpp -------------------------------------------------------------------------------- /External/RakNet/Source/HTTPConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/HTTPConnection.h -------------------------------------------------------------------------------- /External/RakNet/Source/HTTPConnection2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/HTTPConnection2.cpp -------------------------------------------------------------------------------- /External/RakNet/Source/HTTPConnection2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/HTTPConnection2.h -------------------------------------------------------------------------------- /External/RakNet/Source/InternalPacket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/InternalPacket.h -------------------------------------------------------------------------------- /External/RakNet/Source/Itoa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/Itoa.cpp -------------------------------------------------------------------------------- /External/RakNet/Source/Itoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/Itoa.h -------------------------------------------------------------------------------- /External/RakNet/Source/Kbhit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/Kbhit.h -------------------------------------------------------------------------------- /External/RakNet/Source/LinuxStrings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/LinuxStrings.cpp -------------------------------------------------------------------------------- /External/RakNet/Source/LinuxStrings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/LinuxStrings.h -------------------------------------------------------------------------------- /External/RakNet/Source/LocklessTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/LocklessTypes.cpp -------------------------------------------------------------------------------- /External/RakNet/Source/LocklessTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/LocklessTypes.h -------------------------------------------------------------------------------- /External/RakNet/Source/LogCommandParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/LogCommandParser.h -------------------------------------------------------------------------------- /External/RakNet/Source/MTUSize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/MTUSize.h -------------------------------------------------------------------------------- /External/RakNet/Source/MessageFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/MessageFilter.cpp -------------------------------------------------------------------------------- /External/RakNet/Source/MessageFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/MessageFilter.h -------------------------------------------------------------------------------- /External/RakNet/Source/NativeTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/NativeTypes.h -------------------------------------------------------------------------------- /External/RakNet/Source/NetworkIDManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/NetworkIDManager.h -------------------------------------------------------------------------------- /External/RakNet/Source/NetworkIDObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/NetworkIDObject.cpp -------------------------------------------------------------------------------- /External/RakNet/Source/NetworkIDObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/NetworkIDObject.h -------------------------------------------------------------------------------- /External/RakNet/Source/PS3Includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/PS3Includes.h -------------------------------------------------------------------------------- /External/RakNet/Source/PS4Includes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/PS4Includes.cpp -------------------------------------------------------------------------------- /External/RakNet/Source/PS4Includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/PS4Includes.h -------------------------------------------------------------------------------- /External/RakNet/Source/PacketFileLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/PacketFileLogger.h -------------------------------------------------------------------------------- /External/RakNet/Source/PacketLogger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/PacketLogger.cpp -------------------------------------------------------------------------------- /External/RakNet/Source/PacketLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/PacketLogger.h -------------------------------------------------------------------------------- /External/RakNet/Source/PacketPool.h: -------------------------------------------------------------------------------- 1 | // REMOVEME -------------------------------------------------------------------------------- /External/RakNet/Source/PacketPriority.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/PacketPriority.h -------------------------------------------------------------------------------- /External/RakNet/Source/PacketizedTCP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/PacketizedTCP.cpp -------------------------------------------------------------------------------- /External/RakNet/Source/PacketizedTCP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/PacketizedTCP.h -------------------------------------------------------------------------------- /External/RakNet/Source/PluginInterface2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/PluginInterface2.h -------------------------------------------------------------------------------- /External/RakNet/Source/RPC4Plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/RPC4Plugin.cpp -------------------------------------------------------------------------------- /External/RakNet/Source/RPC4Plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/RPC4Plugin.h -------------------------------------------------------------------------------- /External/RakNet/Source/Rackspace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/Rackspace.cpp -------------------------------------------------------------------------------- /External/RakNet/Source/Rackspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/Rackspace.h -------------------------------------------------------------------------------- /External/RakNet/Source/RakAlloca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/RakAlloca.h -------------------------------------------------------------------------------- /External/RakNet/Source/RakAssert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/RakAssert.h -------------------------------------------------------------------------------- /External/RakNet/Source/RakMemoryOverride.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/RakMemoryOverride.h -------------------------------------------------------------------------------- /External/RakNet/Source/RakNet.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/RakNet.vcproj -------------------------------------------------------------------------------- /External/RakNet/Source/RakNetDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/RakNetDefines.h -------------------------------------------------------------------------------- /External/RakNet/Source/RakNetSmartPtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/RakNetSmartPtr.h -------------------------------------------------------------------------------- /External/RakNet/Source/RakNetSocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/RakNetSocket.cpp -------------------------------------------------------------------------------- /External/RakNet/Source/RakNetSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/RakNetSocket.h -------------------------------------------------------------------------------- /External/RakNet/Source/RakNetSocket2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/RakNetSocket2.cpp -------------------------------------------------------------------------------- /External/RakNet/Source/RakNetSocket2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/RakNetSocket2.h -------------------------------------------------------------------------------- /External/RakNet/Source/RakNetStatistics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/RakNetStatistics.h -------------------------------------------------------------------------------- /External/RakNet/Source/RakNetTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/RakNetTime.h -------------------------------------------------------------------------------- /External/RakNet/Source/RakNetTransport2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/RakNetTransport2.h -------------------------------------------------------------------------------- /External/RakNet/Source/RakNetTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/RakNetTypes.cpp -------------------------------------------------------------------------------- /External/RakNet/Source/RakNetTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/RakNetTypes.h -------------------------------------------------------------------------------- /External/RakNet/Source/RakNetVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/RakNetVersion.h -------------------------------------------------------------------------------- /External/RakNet/Source/RakNet_vc8.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/RakNet_vc8.vcproj -------------------------------------------------------------------------------- /External/RakNet/Source/RakNet_vc9.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/RakNet_vc9.vcproj -------------------------------------------------------------------------------- /External/RakNet/Source/RakPeer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/RakPeer.cpp -------------------------------------------------------------------------------- /External/RakNet/Source/RakPeer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/RakPeer.h -------------------------------------------------------------------------------- /External/RakNet/Source/RakPeerInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/RakPeerInterface.h -------------------------------------------------------------------------------- /External/RakNet/Source/RakSleep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/RakSleep.cpp -------------------------------------------------------------------------------- /External/RakNet/Source/RakSleep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/RakSleep.h -------------------------------------------------------------------------------- /External/RakNet/Source/RakString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/RakString.cpp -------------------------------------------------------------------------------- /External/RakNet/Source/RakString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/RakString.h -------------------------------------------------------------------------------- /External/RakNet/Source/RakThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/RakThread.cpp -------------------------------------------------------------------------------- /External/RakNet/Source/RakThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/RakThread.h -------------------------------------------------------------------------------- /External/RakNet/Source/RakWString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/RakWString.cpp -------------------------------------------------------------------------------- /External/RakNet/Source/RakWString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/RakWString.h -------------------------------------------------------------------------------- /External/RakNet/Source/Rand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/Rand.cpp -------------------------------------------------------------------------------- /External/RakNet/Source/Rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/Rand.h -------------------------------------------------------------------------------- /External/RakNet/Source/RandSync.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/RandSync.cpp -------------------------------------------------------------------------------- /External/RakNet/Source/RandSync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/RandSync.h -------------------------------------------------------------------------------- /External/RakNet/Source/ReadyEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/ReadyEvent.cpp -------------------------------------------------------------------------------- /External/RakNet/Source/ReadyEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/ReadyEvent.h -------------------------------------------------------------------------------- /External/RakNet/Source/RefCountedObj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/RefCountedObj.h -------------------------------------------------------------------------------- /External/RakNet/Source/RelayPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/RelayPlugin.cpp -------------------------------------------------------------------------------- /External/RakNet/Source/RelayPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/RelayPlugin.h -------------------------------------------------------------------------------- /External/RakNet/Source/ReliabilityLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/ReliabilityLayer.h -------------------------------------------------------------------------------- /External/RakNet/Source/ReplicaEnums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/ReplicaEnums.h -------------------------------------------------------------------------------- /External/RakNet/Source/ReplicaManager3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/ReplicaManager3.cpp -------------------------------------------------------------------------------- /External/RakNet/Source/ReplicaManager3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/ReplicaManager3.h -------------------------------------------------------------------------------- /External/RakNet/Source/Router2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/Router2.cpp -------------------------------------------------------------------------------- /External/RakNet/Source/Router2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/Router2.h -------------------------------------------------------------------------------- /External/RakNet/Source/SecureHandshake.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/SecureHandshake.cpp -------------------------------------------------------------------------------- /External/RakNet/Source/SecureHandshake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/SecureHandshake.h -------------------------------------------------------------------------------- /External/RakNet/Source/SendToThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/SendToThread.cpp -------------------------------------------------------------------------------- /External/RakNet/Source/SendToThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/SendToThread.h -------------------------------------------------------------------------------- /External/RakNet/Source/SignaledEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/SignaledEvent.cpp -------------------------------------------------------------------------------- /External/RakNet/Source/SignaledEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/SignaledEvent.h -------------------------------------------------------------------------------- /External/RakNet/Source/SimpleMutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/SimpleMutex.cpp -------------------------------------------------------------------------------- /External/RakNet/Source/SimpleMutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/SimpleMutex.h -------------------------------------------------------------------------------- /External/RakNet/Source/SimpleTCPServer.h: -------------------------------------------------------------------------------- 1 | // Eraseme -------------------------------------------------------------------------------- /External/RakNet/Source/SocketDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/SocketDefines.h -------------------------------------------------------------------------------- /External/RakNet/Source/SocketIncludes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/SocketIncludes.h -------------------------------------------------------------------------------- /External/RakNet/Source/SocketLayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/SocketLayer.cpp -------------------------------------------------------------------------------- /External/RakNet/Source/SocketLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/SocketLayer.h -------------------------------------------------------------------------------- /External/RakNet/Source/StatisticsHistory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/StatisticsHistory.h -------------------------------------------------------------------------------- /External/RakNet/Source/StringCompressor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/StringCompressor.h -------------------------------------------------------------------------------- /External/RakNet/Source/StringTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/StringTable.cpp -------------------------------------------------------------------------------- /External/RakNet/Source/StringTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/StringTable.h -------------------------------------------------------------------------------- /External/RakNet/Source/SuperFastHash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/SuperFastHash.cpp -------------------------------------------------------------------------------- /External/RakNet/Source/SuperFastHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/SuperFastHash.h -------------------------------------------------------------------------------- /External/RakNet/Source/TCPInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/TCPInterface.cpp -------------------------------------------------------------------------------- /External/RakNet/Source/TCPInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/TCPInterface.h -------------------------------------------------------------------------------- /External/RakNet/Source/TableSerializer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/TableSerializer.cpp -------------------------------------------------------------------------------- /External/RakNet/Source/TableSerializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/TableSerializer.h -------------------------------------------------------------------------------- /External/RakNet/Source/TeamBalancer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/TeamBalancer.cpp -------------------------------------------------------------------------------- /External/RakNet/Source/TeamBalancer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/TeamBalancer.h -------------------------------------------------------------------------------- /External/RakNet/Source/TeamManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/TeamManager.cpp -------------------------------------------------------------------------------- /External/RakNet/Source/TeamManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/TeamManager.h -------------------------------------------------------------------------------- /External/RakNet/Source/TelnetTransport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/TelnetTransport.cpp -------------------------------------------------------------------------------- /External/RakNet/Source/TelnetTransport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/TelnetTransport.h -------------------------------------------------------------------------------- /External/RakNet/Source/ThreadPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/ThreadPool.h -------------------------------------------------------------------------------- /External/RakNet/Source/UDPForwarder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/UDPForwarder.cpp -------------------------------------------------------------------------------- /External/RakNet/Source/UDPForwarder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/UDPForwarder.h -------------------------------------------------------------------------------- /External/RakNet/Source/UDPProxyClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/UDPProxyClient.cpp -------------------------------------------------------------------------------- /External/RakNet/Source/UDPProxyClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/UDPProxyClient.h -------------------------------------------------------------------------------- /External/RakNet/Source/UDPProxyCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/UDPProxyCommon.h -------------------------------------------------------------------------------- /External/RakNet/Source/UDPProxyServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/UDPProxyServer.cpp -------------------------------------------------------------------------------- /External/RakNet/Source/UDPProxyServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/UDPProxyServer.h -------------------------------------------------------------------------------- /External/RakNet/Source/VariadicSQLParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/VariadicSQLParser.h -------------------------------------------------------------------------------- /External/RakNet/Source/VitaIncludes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/VitaIncludes.cpp -------------------------------------------------------------------------------- /External/RakNet/Source/VitaIncludes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/VitaIncludes.h -------------------------------------------------------------------------------- /External/RakNet/Source/WindowsIncludes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/WindowsIncludes.h -------------------------------------------------------------------------------- /External/RakNet/Source/XBox360Includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/XBox360Includes.h -------------------------------------------------------------------------------- /External/RakNet/Source/_FindFirst.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/_FindFirst.cpp -------------------------------------------------------------------------------- /External/RakNet/Source/_FindFirst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/_FindFirst.h -------------------------------------------------------------------------------- /External/RakNet/Source/gettimeofday.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/gettimeofday.cpp -------------------------------------------------------------------------------- /External/RakNet/Source/gettimeofday.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/External/RakNet/Source/gettimeofday.h -------------------------------------------------------------------------------- /Folder.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/Folder.DotSettings -------------------------------------------------------------------------------- /INSTALL-deck.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/INSTALL-deck.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/LICENSE -------------------------------------------------------------------------------- /Mods/AdvancedRating/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/Mods/AdvancedRating/CMakeLists.txt -------------------------------------------------------------------------------- /Mods/AdvancedRating/Src/AdvancedRating.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/Mods/AdvancedRating/Src/AdvancedRating.cpp -------------------------------------------------------------------------------- /Mods/AdvancedRating/Src/AdvancedRating.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/Mods/AdvancedRating/Src/AdvancedRating.h -------------------------------------------------------------------------------- /Mods/AdvancedRating/Src/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/Mods/AdvancedRating/Src/json.hpp -------------------------------------------------------------------------------- /Mods/Assets/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/Mods/Assets/CMakeLists.txt -------------------------------------------------------------------------------- /Mods/Assets/Src/Assets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/Mods/Assets/Src/Assets.cpp -------------------------------------------------------------------------------- /Mods/Assets/Src/Assets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/Mods/Assets/Src/Assets.h -------------------------------------------------------------------------------- /Mods/Clumsy/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/Mods/Clumsy/CMakeLists.txt -------------------------------------------------------------------------------- /Mods/Clumsy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/Mods/Clumsy/README.md -------------------------------------------------------------------------------- /Mods/Clumsy/Smf/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/Mods/Clumsy/Smf/README -------------------------------------------------------------------------------- /Mods/Clumsy/Smf/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/Mods/Clumsy/Smf/manifest.json -------------------------------------------------------------------------------- /Mods/Clumsy/Src/Clumsy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/Mods/Clumsy/Src/Clumsy.cpp -------------------------------------------------------------------------------- /Mods/Clumsy/Src/Clumsy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/Mods/Clumsy/Src/Clumsy.h -------------------------------------------------------------------------------- /Mods/Clumsy/dab.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/Mods/Clumsy/dab.wav -------------------------------------------------------------------------------- /Mods/DebugMod/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/Mods/DebugMod/CMakeLists.txt -------------------------------------------------------------------------------- /Mods/DebugMod/Src/DebugMod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/Mods/DebugMod/Src/DebugMod.cpp -------------------------------------------------------------------------------- /Mods/DebugMod/Src/DebugMod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/Mods/DebugMod/Src/DebugMod.h -------------------------------------------------------------------------------- /Mods/DebugMod/Src/UI/PositionBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/Mods/DebugMod/Src/UI/PositionBox.cpp -------------------------------------------------------------------------------- /Mods/DiscordRichPresence/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/Mods/DiscordRichPresence/CMakeLists.txt -------------------------------------------------------------------------------- /Mods/DiscordRichPresence/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/Mods/DiscordRichPresence/README.md -------------------------------------------------------------------------------- /Mods/Editor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/Mods/Editor/CMakeLists.txt -------------------------------------------------------------------------------- /Mods/Editor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/Mods/Editor/README.md -------------------------------------------------------------------------------- /Mods/Editor/Smf/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/Mods/Editor/Smf/README -------------------------------------------------------------------------------- /Mods/Editor/Smf/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/Mods/Editor/Smf/manifest.json -------------------------------------------------------------------------------- /Mods/Editor/Src/Components/Actors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/Mods/Editor/Src/Components/Actors.cpp -------------------------------------------------------------------------------- /Mods/Editor/Src/Components/EditorAPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/Mods/Editor/Src/Components/EditorAPI.cpp -------------------------------------------------------------------------------- /Mods/Editor/Src/Components/EntityTree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/Mods/Editor/Src/Components/EntityTree.cpp -------------------------------------------------------------------------------- /Mods/Editor/Src/Components/Items.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/Mods/Editor/Src/Components/Items.cpp -------------------------------------------------------------------------------- /Mods/Editor/Src/Components/Library.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/Mods/Editor/Src/Components/Library.cpp -------------------------------------------------------------------------------- /Mods/Editor/Src/Components/PinTracer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/Mods/Editor/Src/Components/PinTracer.cpp -------------------------------------------------------------------------------- /Mods/Editor/Src/Editor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/Mods/Editor/Src/Editor.cpp -------------------------------------------------------------------------------- /Mods/Editor/Src/Editor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/Mods/Editor/Src/Editor.h -------------------------------------------------------------------------------- /Mods/Editor/Src/EditorServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/Mods/Editor/Src/EditorServer.cpp -------------------------------------------------------------------------------- /Mods/Editor/Src/EditorServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/Mods/Editor/Src/EditorServer.h -------------------------------------------------------------------------------- /Mods/Editor/Src/EntityTreeNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/Mods/Editor/Src/EntityTreeNode.h -------------------------------------------------------------------------------- /Mods/Editor/Src/JsonHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/Mods/Editor/Src/JsonHelpers.h -------------------------------------------------------------------------------- /Mods/Editor/Src/Properties/Array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/Mods/Editor/Src/Properties/Array.cpp -------------------------------------------------------------------------------- /Mods/Editor/Src/Properties/Color.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/Mods/Editor/Src/Properties/Color.cpp -------------------------------------------------------------------------------- /Mods/Editor/Src/Properties/Common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/Mods/Editor/Src/Properties/Common.cpp -------------------------------------------------------------------------------- /Mods/Editor/Src/Properties/Enum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/Mods/Editor/Src/Properties/Enum.cpp -------------------------------------------------------------------------------- /Mods/Editor/Src/Properties/Matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/Mods/Editor/Src/Properties/Matrix.cpp -------------------------------------------------------------------------------- /Mods/Editor/Src/Properties/Primitives.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/Mods/Editor/Src/Properties/Primitives.cpp -------------------------------------------------------------------------------- /Mods/Editor/Src/Properties/Resource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/Mods/Editor/Src/Properties/Resource.cpp -------------------------------------------------------------------------------- /Mods/Editor/Src/Properties/Vectors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/Mods/Editor/Src/Properties/Vectors.cpp -------------------------------------------------------------------------------- /Mods/Editor/editor-client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/Mods/Editor/editor-client.ts -------------------------------------------------------------------------------- /Mods/Editor/editor.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/Mods/Editor/editor.d.ts -------------------------------------------------------------------------------- /Mods/FreeCam/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/Mods/FreeCam/CMakeLists.txt -------------------------------------------------------------------------------- /Mods/FreeCam/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/Mods/FreeCam/README.md -------------------------------------------------------------------------------- /Mods/FreeCam/Src/FreeCam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/Mods/FreeCam/Src/FreeCam.cpp -------------------------------------------------------------------------------- /Mods/FreeCam/Src/FreeCam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/Mods/FreeCam/Src/FreeCam.h -------------------------------------------------------------------------------- /Mods/Hitmen/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/Mods/Hitmen/CMakeLists.txt -------------------------------------------------------------------------------- /Mods/Hitmen/Smf/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/Mods/Hitmen/Smf/manifest.json -------------------------------------------------------------------------------- /Mods/Hitmen/Src/BinaryStreamReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/Mods/Hitmen/Src/BinaryStreamReader.h -------------------------------------------------------------------------------- /Mods/Hitmen/Src/BinaryStreamWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/Mods/Hitmen/Src/BinaryStreamWriter.h -------------------------------------------------------------------------------- /Mods/Hitmen/Src/Hitmen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/Mods/Hitmen/Src/Hitmen.cpp -------------------------------------------------------------------------------- /Mods/Hitmen/Src/Hitmen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/Mods/Hitmen/Src/Hitmen.h -------------------------------------------------------------------------------- /Mods/MaxPatchLevel/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/Mods/MaxPatchLevel/CMakeLists.txt -------------------------------------------------------------------------------- /Mods/MaxPatchLevel/Src/MaxPatchLevel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/Mods/MaxPatchLevel/Src/MaxPatchLevel.cpp -------------------------------------------------------------------------------- /Mods/MaxPatchLevel/Src/MaxPatchLevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/Mods/MaxPatchLevel/Src/MaxPatchLevel.h -------------------------------------------------------------------------------- /Mods/NoPause/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/Mods/NoPause/CMakeLists.txt -------------------------------------------------------------------------------- /Mods/NoPause/Src/NoPause.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/Mods/NoPause/Src/NoPause.cpp -------------------------------------------------------------------------------- /Mods/NoPause/Src/NoPause.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/Mods/NoPause/Src/NoPause.h -------------------------------------------------------------------------------- /Mods/Noclip/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/Mods/Noclip/CMakeLists.txt -------------------------------------------------------------------------------- /Mods/Noclip/Src/Noclip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/Mods/Noclip/Src/Noclip.cpp -------------------------------------------------------------------------------- /Mods/Noclip/Src/Noclip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/Mods/Noclip/Src/Noclip.h -------------------------------------------------------------------------------- /Mods/OnlineTools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/Mods/OnlineTools/CMakeLists.txt -------------------------------------------------------------------------------- /Mods/OnlineTools/src/OnlineTools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/Mods/OnlineTools/src/OnlineTools.cpp -------------------------------------------------------------------------------- /Mods/OnlineTools/src/OnlineTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/Mods/OnlineTools/src/OnlineTools.h -------------------------------------------------------------------------------- /Mods/Player/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/Mods/Player/CMakeLists.txt -------------------------------------------------------------------------------- /Mods/Player/Src/Player.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/Mods/Player/Src/Player.cpp -------------------------------------------------------------------------------- /Mods/Player/Src/Player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/Mods/Player/Src/Player.h -------------------------------------------------------------------------------- /Mods/SkipIntro/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/Mods/SkipIntro/CMakeLists.txt -------------------------------------------------------------------------------- /Mods/SkipIntro/Src/SkipIntro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/Mods/SkipIntro/Src/SkipIntro.cpp -------------------------------------------------------------------------------- /Mods/SkipIntro/Src/SkipIntro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/Mods/SkipIntro/Src/SkipIntro.h -------------------------------------------------------------------------------- /Mods/WakingUpNpcs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/Mods/WakingUpNpcs/CMakeLists.txt -------------------------------------------------------------------------------- /Mods/WakingUpNpcs/Src/WakingUpNpcs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/Mods/WakingUpNpcs/Src/WakingUpNpcs.cpp -------------------------------------------------------------------------------- /Mods/WakingUpNpcs/Src/WakingUpNpcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/Mods/WakingUpNpcs/Src/WakingUpNpcs.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/README.md -------------------------------------------------------------------------------- /Tools/DevLoader/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/Tools/DevLoader/CMakeLists.txt -------------------------------------------------------------------------------- /Tools/DevLoader/Src/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/Tools/DevLoader/Src/Main.cpp -------------------------------------------------------------------------------- /ZHMModSDK.ChildProcessDbgSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK.ChildProcessDbgSettings -------------------------------------------------------------------------------- /ZHMModSDK/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/CMakeLists.txt -------------------------------------------------------------------------------- /ZHMModSDK/Include/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Include/Common.h -------------------------------------------------------------------------------- /ZHMModSDK/Include/Crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Include/Crypto.h -------------------------------------------------------------------------------- /ZHMModSDK/Include/D3DUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Include/D3DUtils.h -------------------------------------------------------------------------------- /ZHMModSDK/Include/EngineFunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Include/EngineFunction.h -------------------------------------------------------------------------------- /ZHMModSDK/Include/EventDispatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Include/EventDispatcher.h -------------------------------------------------------------------------------- /ZHMModSDK/Include/Events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Include/Events.h -------------------------------------------------------------------------------- /ZHMModSDK/Include/Functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Include/Functions.h -------------------------------------------------------------------------------- /ZHMModSDK/Include/Glacier/EDebugChannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Include/Glacier/EDebugChannel.h -------------------------------------------------------------------------------- /ZHMModSDK/Include/Glacier/EUpdateMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Include/Glacier/EUpdateMode.h -------------------------------------------------------------------------------- /ZHMModSDK/Include/Glacier/EntityFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Include/Glacier/EntityFactory.h -------------------------------------------------------------------------------- /ZHMModSDK/Include/Glacier/Enums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Include/Glacier/Enums.h -------------------------------------------------------------------------------- /ZHMModSDK/Include/Glacier/Hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Include/Glacier/Hash.h -------------------------------------------------------------------------------- /ZHMModSDK/Include/Glacier/IEnumType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Include/Glacier/IEnumType.h -------------------------------------------------------------------------------- /ZHMModSDK/Include/Glacier/MDF_FONT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Include/Glacier/MDF_FONT.h -------------------------------------------------------------------------------- /ZHMModSDK/Include/Glacier/Pins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Include/Glacier/Pins.h -------------------------------------------------------------------------------- /ZHMModSDK/Include/Glacier/Prim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Include/Glacier/Prim.h -------------------------------------------------------------------------------- /ZHMModSDK/Include/Glacier/Reflection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Include/Glacier/Reflection.h -------------------------------------------------------------------------------- /ZHMModSDK/Include/Glacier/SColorRGB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Include/Glacier/SColorRGB.h -------------------------------------------------------------------------------- /ZHMModSDK/Include/Glacier/SColorRGBA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Include/Glacier/SColorRGBA.h -------------------------------------------------------------------------------- /ZHMModSDK/Include/Glacier/SOnlineEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Include/Glacier/SOnlineEvent.h -------------------------------------------------------------------------------- /ZHMModSDK/Include/Glacier/SReasoningGrid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Include/Glacier/SReasoningGrid.h -------------------------------------------------------------------------------- /ZHMModSDK/Include/Glacier/TAlignedType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Include/Glacier/TAlignedType.h -------------------------------------------------------------------------------- /ZHMModSDK/Include/Glacier/TArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Include/Glacier/TArray.h -------------------------------------------------------------------------------- /ZHMModSDK/Include/Glacier/TBinaryTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Include/Glacier/TBinaryTree.h -------------------------------------------------------------------------------- /ZHMModSDK/Include/Glacier/THashMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Include/Glacier/THashMap.h -------------------------------------------------------------------------------- /ZHMModSDK/Include/Glacier/TIterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Include/Glacier/TIterator.h -------------------------------------------------------------------------------- /ZHMModSDK/Include/Glacier/TMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Include/Glacier/TMap.h -------------------------------------------------------------------------------- /ZHMModSDK/Include/Glacier/TPair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Include/Glacier/TPair.h -------------------------------------------------------------------------------- /ZHMModSDK/Include/Glacier/TRedBlackTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Include/Glacier/TRedBlackTree.h -------------------------------------------------------------------------------- /ZHMModSDK/Include/Glacier/TSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Include/Glacier/TSet.h -------------------------------------------------------------------------------- /ZHMModSDK/Include/Glacier/TSharedPointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Include/Glacier/TSharedPointer.h -------------------------------------------------------------------------------- /ZHMModSDK/Include/Glacier/ZAIGameState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Include/Glacier/ZAIGameState.h -------------------------------------------------------------------------------- /ZHMModSDK/Include/Glacier/ZAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Include/Glacier/ZAction.h -------------------------------------------------------------------------------- /ZHMModSDK/Include/Glacier/ZActor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Include/Glacier/ZActor.h -------------------------------------------------------------------------------- /ZHMModSDK/Include/Glacier/ZBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Include/Glacier/ZBuffer.h -------------------------------------------------------------------------------- /ZHMModSDK/Include/Glacier/ZCameraEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Include/Glacier/ZCameraEntity.h -------------------------------------------------------------------------------- /ZHMModSDK/Include/Glacier/ZCollision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Include/Glacier/ZCollision.h -------------------------------------------------------------------------------- /ZHMModSDK/Include/Glacier/ZColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Include/Glacier/ZColor.h -------------------------------------------------------------------------------- /ZHMModSDK/Include/Glacier/ZConfigCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Include/Glacier/ZConfigCommand.h -------------------------------------------------------------------------------- /ZHMModSDK/Include/Glacier/ZDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Include/Glacier/ZDelegate.h -------------------------------------------------------------------------------- /ZHMModSDK/Include/Glacier/ZEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Include/Glacier/ZEntity.h -------------------------------------------------------------------------------- /ZHMModSDK/Include/Glacier/ZEntityManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Include/Glacier/ZEntityManager.h -------------------------------------------------------------------------------- /ZHMModSDK/Include/Glacier/ZFreeCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Include/Glacier/ZFreeCamera.h -------------------------------------------------------------------------------- /ZHMModSDK/Include/Glacier/ZGameContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Include/Glacier/ZGameContext.h -------------------------------------------------------------------------------- /ZHMModSDK/Include/Glacier/ZGameMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Include/Glacier/ZGameMode.h -------------------------------------------------------------------------------- /ZHMModSDK/Include/Glacier/ZGameStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Include/Glacier/ZGameStats.h -------------------------------------------------------------------------------- /ZHMModSDK/Include/Glacier/ZGameTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Include/Glacier/ZGameTime.h -------------------------------------------------------------------------------- /ZHMModSDK/Include/Glacier/ZGameUIManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Include/Glacier/ZGameUIManager.h -------------------------------------------------------------------------------- /ZHMModSDK/Include/Glacier/ZGeomEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Include/Glacier/ZGeomEntity.h -------------------------------------------------------------------------------- /ZHMModSDK/Include/Glacier/ZGridManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Include/Glacier/ZGridManager.h -------------------------------------------------------------------------------- /ZHMModSDK/Include/Glacier/ZHM5CrippleBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Include/Glacier/ZHM5CrippleBox.h -------------------------------------------------------------------------------- /ZHMModSDK/Include/Glacier/ZHitman5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Include/Glacier/ZHitman5.h -------------------------------------------------------------------------------- /ZHMModSDK/Include/Glacier/ZHttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Include/Glacier/ZHttp.h -------------------------------------------------------------------------------- /ZHMModSDK/Include/Glacier/ZInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Include/Glacier/ZInput.h -------------------------------------------------------------------------------- /ZHMModSDK/Include/Glacier/ZInventory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Include/Glacier/ZInventory.h -------------------------------------------------------------------------------- /ZHMModSDK/Include/Glacier/ZItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Include/Glacier/ZItem.h -------------------------------------------------------------------------------- /ZHMModSDK/Include/Glacier/ZKnowledge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Include/Glacier/ZKnowledge.h -------------------------------------------------------------------------------- /ZHMModSDK/Include/Glacier/ZLevelManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Include/Glacier/ZLevelManager.h -------------------------------------------------------------------------------- /ZHMModSDK/Include/Glacier/ZLobby.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Include/Glacier/ZLobby.h -------------------------------------------------------------------------------- /ZHMModSDK/Include/Glacier/ZMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Include/Glacier/ZMath.h -------------------------------------------------------------------------------- /ZHMModSDK/Include/Glacier/ZMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Include/Glacier/ZMemory.h -------------------------------------------------------------------------------- /ZHMModSDK/Include/Glacier/ZModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Include/Glacier/ZModule.h -------------------------------------------------------------------------------- /ZHMModSDK/Include/Glacier/ZObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Include/Glacier/ZObject.h -------------------------------------------------------------------------------- /ZHMModSDK/Include/Glacier/ZObjectPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Include/Glacier/ZObjectPool.h -------------------------------------------------------------------------------- /ZHMModSDK/Include/Glacier/ZOutfit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Include/Glacier/ZOutfit.h -------------------------------------------------------------------------------- /ZHMModSDK/Include/Glacier/ZPathfinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Include/Glacier/ZPathfinder.h -------------------------------------------------------------------------------- /ZHMModSDK/Include/Glacier/ZPhysics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Include/Glacier/ZPhysics.h -------------------------------------------------------------------------------- /ZHMModSDK/Include/Glacier/ZPrimitives.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Include/Glacier/ZPrimitives.h -------------------------------------------------------------------------------- /ZHMModSDK/Include/Glacier/ZRakNet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Include/Glacier/ZRakNet.h -------------------------------------------------------------------------------- /ZHMModSDK/Include/Glacier/ZRender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Include/Glacier/ZRender.h -------------------------------------------------------------------------------- /ZHMModSDK/Include/Glacier/ZRepository.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Include/Glacier/ZRepository.h -------------------------------------------------------------------------------- /ZHMModSDK/Include/Glacier/ZResource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Include/Glacier/ZResource.h -------------------------------------------------------------------------------- /ZHMModSDK/Include/Glacier/ZResourceID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Include/Glacier/ZResourceID.h -------------------------------------------------------------------------------- /ZHMModSDK/Include/Glacier/ZScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Include/Glacier/ZScene.h -------------------------------------------------------------------------------- /ZHMModSDK/Include/Glacier/ZSpatialEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Include/Glacier/ZSpatialEntity.h -------------------------------------------------------------------------------- /ZHMModSDK/Include/Glacier/ZString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Include/Glacier/ZString.h -------------------------------------------------------------------------------- /ZHMModSDK/Include/Glacier/ZTypeRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Include/Glacier/ZTypeRegistry.h -------------------------------------------------------------------------------- /ZHMModSDK/Include/Globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Include/Globals.h -------------------------------------------------------------------------------- /ZHMModSDK/Include/Hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Include/Hook.h -------------------------------------------------------------------------------- /ZHMModSDK/Include/Hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Include/Hooks.h -------------------------------------------------------------------------------- /ZHMModSDK/Include/IModSDK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Include/IModSDK.h -------------------------------------------------------------------------------- /ZHMModSDK/Include/IO/ZBinaryDeserializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Include/IO/ZBinaryDeserializer.h -------------------------------------------------------------------------------- /ZHMModSDK/Include/IO/ZBinaryReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Include/IO/ZBinaryReader.h -------------------------------------------------------------------------------- /ZHMModSDK/Include/IO/ZBinaryWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Include/IO/ZBinaryWriter.h -------------------------------------------------------------------------------- /ZHMModSDK/Include/IPluginInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Include/IPluginInterface.h -------------------------------------------------------------------------------- /ZHMModSDK/Include/IRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Include/IRenderer.h -------------------------------------------------------------------------------- /ZHMModSDK/Include/Logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Include/Logging.h -------------------------------------------------------------------------------- /ZHMModSDK/Include/NavPower.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Include/NavPower.h -------------------------------------------------------------------------------- /ZHMModSDK/Include/Scaleform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Include/Scaleform.h -------------------------------------------------------------------------------- /ZHMModSDK/Include/Util/ImGuiUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Include/Util/ImGuiUtils.h -------------------------------------------------------------------------------- /ZHMModSDK/Include/Util/StringUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Include/Util/StringUtils.h -------------------------------------------------------------------------------- /ZHMModSDK/ModSDKVersion.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/ModSDKVersion.h.in -------------------------------------------------------------------------------- /ZHMModSDK/Rust/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Rust/Cargo.lock -------------------------------------------------------------------------------- /ZHMModSDK/Rust/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Rust/Cargo.toml -------------------------------------------------------------------------------- /ZHMModSDK/Rust/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Rust/src/lib.rs -------------------------------------------------------------------------------- /ZHMModSDK/Src/DebugConsole.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Src/DebugConsole.cpp -------------------------------------------------------------------------------- /ZHMModSDK/Src/DebugConsole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Src/DebugConsole.h -------------------------------------------------------------------------------- /ZHMModSDK/Src/EngineFunctionImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Src/EngineFunctionImpl.h -------------------------------------------------------------------------------- /ZHMModSDK/Src/EventDispatcherImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Src/EventDispatcherImpl.h -------------------------------------------------------------------------------- /ZHMModSDK/Src/Events.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Src/Events.cpp -------------------------------------------------------------------------------- /ZHMModSDK/Src/Failures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Src/Failures.h -------------------------------------------------------------------------------- /ZHMModSDK/Src/Functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Src/Functions.cpp -------------------------------------------------------------------------------- /ZHMModSDK/Src/Glacier/MDF_FONT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Src/Glacier/MDF_FONT.cpp -------------------------------------------------------------------------------- /ZHMModSDK/Src/Glacier/ZConfigCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Src/Glacier/ZConfigCommand.cpp -------------------------------------------------------------------------------- /ZHMModSDK/Src/Glacier/ZEntity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Src/Glacier/ZEntity.cpp -------------------------------------------------------------------------------- /ZHMModSDK/Src/Glacier/ZMath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Src/Glacier/ZMath.cpp -------------------------------------------------------------------------------- /ZHMModSDK/Src/Glacier/ZObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Src/Glacier/ZObject.cpp -------------------------------------------------------------------------------- /ZHMModSDK/Src/Glacier/ZResource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Src/Glacier/ZResource.cpp -------------------------------------------------------------------------------- /ZHMModSDK/Src/Glacier/ZString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Src/Glacier/ZString.cpp -------------------------------------------------------------------------------- /ZHMModSDK/Src/Globals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Src/Globals.cpp -------------------------------------------------------------------------------- /ZHMModSDK/Src/GlobalsImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Src/GlobalsImpl.h -------------------------------------------------------------------------------- /ZHMModSDK/Src/HookImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Src/HookImpl.h -------------------------------------------------------------------------------- /ZHMModSDK/Src/Hooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Src/Hooks.cpp -------------------------------------------------------------------------------- /ZHMModSDK/Src/IO/ZBinaryDeserializer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Src/IO/ZBinaryDeserializer.cpp -------------------------------------------------------------------------------- /ZHMModSDK/Src/Logging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Src/Logging.cpp -------------------------------------------------------------------------------- /ZHMModSDK/Src/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Src/Main.cpp -------------------------------------------------------------------------------- /ZHMModSDK/Src/ModLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Src/ModLoader.cpp -------------------------------------------------------------------------------- /ZHMModSDK/Src/ModLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Src/ModLoader.h -------------------------------------------------------------------------------- /ZHMModSDK/Src/ModSDK.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Src/ModSDK.cpp -------------------------------------------------------------------------------- /ZHMModSDK/Src/ModSDK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Src/ModSDK.h -------------------------------------------------------------------------------- /ZHMModSDK/Src/ModSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Src/ModSettings.cpp -------------------------------------------------------------------------------- /ZHMModSDK/Src/ModSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Src/ModSettings.h -------------------------------------------------------------------------------- /ZHMModSDK/Src/Multiplayer/Lobby.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Src/Multiplayer/Lobby.cpp -------------------------------------------------------------------------------- /ZHMModSDK/Src/Multiplayer/Lobby.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Src/Multiplayer/Lobby.h -------------------------------------------------------------------------------- /ZHMModSDK/Src/Multiplayer/SDKSocketOverride.cpp: -------------------------------------------------------------------------------- 1 | #include "SDKSocketOverride.h" -------------------------------------------------------------------------------- /ZHMModSDK/Src/NavPower.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Src/NavPower.cpp -------------------------------------------------------------------------------- /ZHMModSDK/Src/PinRegistry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Src/PinRegistry.cpp -------------------------------------------------------------------------------- /ZHMModSDK/Src/PinRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Src/PinRegistry.h -------------------------------------------------------------------------------- /ZHMModSDK/Src/Rendering/D3D12DXGIFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Src/Rendering/D3D12DXGIFactory.h -------------------------------------------------------------------------------- /ZHMModSDK/Src/Rendering/D3D12Device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Src/Rendering/D3D12Device.cpp -------------------------------------------------------------------------------- /ZHMModSDK/Src/Rendering/D3D12Device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Src/Rendering/D3D12Device.h -------------------------------------------------------------------------------- /ZHMModSDK/Src/Rendering/D3D12Hooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Src/Rendering/D3D12Hooks.cpp -------------------------------------------------------------------------------- /ZHMModSDK/Src/Rendering/D3D12Hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Src/Rendering/D3D12Hooks.h -------------------------------------------------------------------------------- /ZHMModSDK/Src/Rendering/D3D12SwapChain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Src/Rendering/D3D12SwapChain.cpp -------------------------------------------------------------------------------- /ZHMModSDK/Src/Rendering/D3D12SwapChain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Src/Rendering/D3D12SwapChain.h -------------------------------------------------------------------------------- /ZHMModSDK/Src/Rendering/DebugEffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Src/Rendering/DebugEffect.cpp -------------------------------------------------------------------------------- /ZHMModSDK/Src/Rendering/DebugEffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Src/Rendering/DebugEffect.h -------------------------------------------------------------------------------- /ZHMModSDK/Src/Rendering/Renderers/Fonts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Src/Rendering/Renderers/Fonts.h -------------------------------------------------------------------------------- /ZHMModSDK/Src/Rendering/ViewFrustum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Src/Rendering/ViewFrustum.cpp -------------------------------------------------------------------------------- /ZHMModSDK/Src/Rendering/ViewFrustum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Src/Rendering/ViewFrustum.h -------------------------------------------------------------------------------- /ZHMModSDK/Src/ResourceLoading.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Src/ResourceLoading.cpp -------------------------------------------------------------------------------- /ZHMModSDK/Src/UI/Console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Src/UI/Console.cpp -------------------------------------------------------------------------------- /ZHMModSDK/Src/UI/Console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Src/UI/Console.h -------------------------------------------------------------------------------- /ZHMModSDK/Src/UI/MainMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Src/UI/MainMenu.cpp -------------------------------------------------------------------------------- /ZHMModSDK/Src/UI/MainMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Src/UI/MainMenu.h -------------------------------------------------------------------------------- /ZHMModSDK/Src/UI/ModSelector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Src/UI/ModSelector.cpp -------------------------------------------------------------------------------- /ZHMModSDK/Src/UI/ModSelector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Src/UI/ModSelector.h -------------------------------------------------------------------------------- /ZHMModSDK/Src/Util/HashingUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Src/Util/HashingUtils.cpp -------------------------------------------------------------------------------- /ZHMModSDK/Src/Util/HashingUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Src/Util/HashingUtils.h -------------------------------------------------------------------------------- /ZHMModSDK/Src/Util/ProcessUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Src/Util/ProcessUtils.cpp -------------------------------------------------------------------------------- /ZHMModSDK/Src/Util/ProcessUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/Src/Util/ProcessUtils.h -------------------------------------------------------------------------------- /ZHMModSDK/ZHMModSDK.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/ZHMModSDK/ZHMModSDK.rc.in -------------------------------------------------------------------------------- /cmake/get-cpm.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/cmake/get-cpm.cmake -------------------------------------------------------------------------------- /cmake/sdk-dist.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/cmake/sdk-dist.cmake -------------------------------------------------------------------------------- /cmake/sdk-local.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/cmake/sdk-local.cmake -------------------------------------------------------------------------------- /cmake/vcpkg-overlays/x64-windows-zhm.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/cmake/vcpkg-overlays/x64-windows-zhm.cmake -------------------------------------------------------------------------------- /cmake/vcpkg-ports/imgui/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/cmake/vcpkg-ports/imgui/CMakeLists.txt -------------------------------------------------------------------------------- /cmake/vcpkg-ports/imgui/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/cmake/vcpkg-ports/imgui/portfile.cmake -------------------------------------------------------------------------------- /cmake/vcpkg-ports/imgui/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/cmake/vcpkg-ports/imgui/vcpkg.json -------------------------------------------------------------------------------- /cmake/zhm-mod.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/cmake/zhm-mod.cmake -------------------------------------------------------------------------------- /launch.vs.json-epic_sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/launch.vs.json-epic_sample -------------------------------------------------------------------------------- /launch.vs.json-legendary_sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/launch.vs.json-legendary_sample -------------------------------------------------------------------------------- /launch.vs.json-steam_sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/launch.vs.json-steam_sample -------------------------------------------------------------------------------- /vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrfeasZ/ZHMModSDK/HEAD/vcpkg.json --------------------------------------------------------------------------------