├── .gitignore ├── CMakeLists.txt ├── PreLoad.cmake ├── README ├── TODO ├── TODO_ANTICHEAT ├── cmake ├── compiler │ ├── clang │ │ └── settings.cmake │ ├── gcc │ │ └── settings.cmake │ ├── icc │ │ └── settings.cmake │ └── msvc │ │ └── settings.cmake ├── genrev.cmake ├── macros │ ├── CheckBuildDir.cmake │ ├── CheckPlatform.cmake │ ├── EnsureVersion.cmake │ ├── FindACE.cmake │ ├── FindMySQL.cmake │ ├── FindOpenSSL.cmake │ ├── FindPCHSupport.cmake │ └── FindReadline.cmake ├── options.cmake ├── platform │ ├── cmake_uninstall.in.cmake │ ├── settings.cmake │ ├── unix │ │ └── settings.cmake │ └── win │ │ └── settings.cmake └── showoptions.cmake ├── dep ├── CMakeLists.txt ├── PackageList.txt ├── SFMT │ ├── SFMT.h │ └── randomc.h ├── acelite │ ├── AUTHORS │ ├── CMakeLists.txt │ ├── COPYING │ ├── NEWS │ ├── README │ ├── THANKS │ ├── VERSION │ └── ace │ │ ├── ACE.cpp │ │ ├── ACE.h │ │ ├── ACE.inl │ │ ├── ACE.pc.in │ │ ├── ACE_crc32.cpp │ │ ├── ACE_crc_ccitt.cpp │ │ ├── ACE_export.h │ │ ├── ARGV.cpp │ │ ├── ARGV.h │ │ ├── ARGV.inl │ │ ├── ATM_Acceptor.cpp │ │ ├── ATM_Acceptor.h │ │ ├── ATM_Acceptor.inl │ │ ├── ATM_Addr.cpp │ │ ├── ATM_Addr.h │ │ ├── ATM_Addr.inl │ │ ├── ATM_Connector.cpp │ │ ├── ATM_Connector.h │ │ ├── ATM_Connector.inl │ │ ├── ATM_Params.cpp │ │ ├── ATM_Params.h │ │ ├── ATM_Params.inl │ │ ├── ATM_QoS.cpp │ │ ├── ATM_QoS.h │ │ ├── ATM_QoS.inl │ │ ├── ATM_Stream.cpp │ │ ├── ATM_Stream.h │ │ ├── ATM_Stream.inl │ │ ├── Abstract_Timer_Queue.cpp │ │ ├── Abstract_Timer_Queue.h │ │ ├── Acceptor.cpp │ │ ├── Acceptor.h │ │ ├── Activation_Queue.cpp │ │ ├── Activation_Queue.h │ │ ├── Activation_Queue.inl │ │ ├── Active_Map_Manager.cpp │ │ ├── Active_Map_Manager.h │ │ ├── Active_Map_Manager.inl │ │ ├── Active_Map_Manager_T.cpp │ │ ├── Active_Map_Manager_T.h │ │ ├── Active_Map_Manager_T.inl │ │ ├── Addr.cpp │ │ ├── Addr.h │ │ ├── Addr.inl │ │ ├── Arg_Shifter.cpp │ │ ├── Arg_Shifter.h │ │ ├── Argv_Type_Converter.cpp │ │ ├── Argv_Type_Converter.h │ │ ├── Argv_Type_Converter.inl │ │ ├── Array_Base.cpp │ │ ├── Array_Base.h │ │ ├── Array_Base.inl │ │ ├── Array_Map.cpp │ │ ├── Array_Map.h │ │ ├── Array_Map.inl │ │ ├── Assert.cpp │ │ ├── Assert.h │ │ ├── Asynch_Acceptor.cpp │ │ ├── Asynch_Acceptor.h │ │ ├── Asynch_Connector.cpp │ │ ├── Asynch_Connector.h │ │ ├── Asynch_IO.cpp │ │ ├── Asynch_IO.h │ │ ├── Asynch_IO_Impl.cpp │ │ ├── Asynch_IO_Impl.h │ │ ├── Asynch_IO_Impl.inl │ │ ├── Asynch_Pseudo_Task.cpp │ │ ├── Asynch_Pseudo_Task.h │ │ ├── Atomic_Op.cpp │ │ ├── Atomic_Op.h │ │ ├── Atomic_Op.inl │ │ ├── Atomic_Op_GCC_T.cpp │ │ ├── Atomic_Op_GCC_T.h │ │ ├── Atomic_Op_GCC_T.inl │ │ ├── Atomic_Op_Sparc.c │ │ ├── Atomic_Op_Sparc.h │ │ ├── Atomic_Op_T.cpp │ │ ├── Atomic_Op_T.h │ │ ├── Atomic_Op_T.inl │ │ ├── Auto_Event.cpp │ │ ├── Auto_Event.h │ │ ├── Auto_Event.inl │ │ ├── Auto_Functor.cpp │ │ ├── Auto_Functor.h │ │ ├── Auto_Functor.inl │ │ ├── Auto_IncDec_T.cpp │ │ ├── Auto_IncDec_T.h │ │ ├── Auto_IncDec_T.inl │ │ ├── Auto_Ptr.cpp │ │ ├── Auto_Ptr.h │ │ ├── Auto_Ptr.inl │ │ ├── Barrier.cpp │ │ ├── Barrier.h │ │ ├── Barrier.inl │ │ ├── Base_Thread_Adapter.cpp │ │ ├── Base_Thread_Adapter.h │ │ ├── Base_Thread_Adapter.inl │ │ ├── Based_Pointer_Repository.cpp │ │ ├── Based_Pointer_Repository.h │ │ ├── Based_Pointer_T.cpp │ │ ├── Based_Pointer_T.h │ │ ├── Based_Pointer_T.inl │ │ ├── Basic_Stats.cpp │ │ ├── Basic_Stats.h │ │ ├── Basic_Stats.inl │ │ ├── Basic_Types.cpp │ │ ├── Basic_Types.h │ │ ├── Bound_Ptr.h │ │ ├── Bound_Ptr.inl │ │ ├── CDR_Base.cpp │ │ ├── CDR_Base.h │ │ ├── CDR_Base.inl │ │ ├── CDR_Size.cpp │ │ ├── CDR_Size.h │ │ ├── CDR_Size.inl │ │ ├── CDR_Stream.cpp │ │ ├── CDR_Stream.h │ │ ├── CDR_Stream.inl │ │ ├── CE_Screen_Output.cpp │ │ ├── CE_Screen_Output.h │ │ ├── CMakeLists.txt │ │ ├── CORBA_macros.h │ │ ├── Cache_Map_Manager_T.cpp │ │ ├── Cache_Map_Manager_T.h │ │ ├── Cache_Map_Manager_T.inl │ │ ├── Cached_Connect_Strategy_T.cpp │ │ ├── Cached_Connect_Strategy_T.h │ │ ├── Caching_Strategies_T.cpp │ │ ├── Caching_Strategies_T.h │ │ ├── Caching_Strategies_T.inl │ │ ├── Caching_Utility_T.cpp │ │ ├── Caching_Utility_T.h │ │ ├── Capabilities.cpp │ │ ├── Capabilities.h │ │ ├── Capabilities.inl │ │ ├── Cleanup.cpp │ │ ├── Cleanup.h │ │ ├── Cleanup.inl │ │ ├── Cleanup_Strategies_T.cpp │ │ ├── Cleanup_Strategies_T.h │ │ ├── Codecs.cpp │ │ ├── Codecs.h │ │ ├── Codeset_IBM1047.cpp │ │ ├── Codeset_IBM1047.h │ │ ├── Codeset_Registry.cpp │ │ ├── Codeset_Registry.h │ │ ├── Codeset_Registry.inl │ │ ├── Codeset_Registry_db.cpp │ │ ├── Codeset_Symbols.h │ │ ├── Compression │ │ ├── ACE_Compression.mpc │ │ ├── ACE_Compression_export.h │ │ ├── Compressor.cpp │ │ ├── Compressor.h │ │ ├── Compressor.inl │ │ └── rle │ │ │ ├── ACE_RLECompression.mpc │ │ │ ├── ACE_RLECompression_export.h │ │ │ ├── RLECompressor.cpp │ │ │ └── RLECompressor.h │ │ ├── Condition_Attributes.cpp │ │ ├── Condition_Attributes.h │ │ ├── Condition_Attributes.inl │ │ ├── Condition_Recursive_Thread_Mutex.cpp │ │ ├── Condition_Recursive_Thread_Mutex.h │ │ ├── Condition_T.cpp │ │ ├── Condition_T.h │ │ ├── Condition_T.inl │ │ ├── Condition_Thread_Mutex.cpp │ │ ├── Condition_Thread_Mutex.h │ │ ├── Condition_Thread_Mutex.inl │ │ ├── Configuration.cpp │ │ ├── Configuration.h │ │ ├── Configuration.inl │ │ ├── Configuration_Import_Export.cpp │ │ ├── Configuration_Import_Export.h │ │ ├── Connection_Recycling_Strategy.cpp │ │ ├── Connection_Recycling_Strategy.h │ │ ├── Connector.cpp │ │ ├── Connector.h │ │ ├── Containers.cpp │ │ ├── Containers.h │ │ ├── Containers.inl │ │ ├── Containers_T.cpp │ │ ├── Containers_T.h │ │ ├── Containers_T.inl │ │ ├── Copy_Disabled.cpp │ │ ├── Copy_Disabled.h │ │ ├── Countdown_Time.h │ │ ├── Countdown_Time_T.cpp │ │ ├── Countdown_Time_T.h │ │ ├── Countdown_Time_T.inl │ │ ├── DEV.cpp │ │ ├── DEV.h │ │ ├── DEV.inl │ │ ├── DEV_Addr.cpp │ │ ├── DEV_Addr.h │ │ ├── DEV_Addr.inl │ │ ├── DEV_Connector.cpp │ │ ├── DEV_Connector.h │ │ ├── DEV_Connector.inl │ │ ├── DEV_IO.cpp │ │ ├── DEV_IO.h │ │ ├── DEV_IO.inl │ │ ├── DLL.cpp │ │ ├── DLL.h │ │ ├── DLL_Manager.cpp │ │ ├── DLL_Manager.h │ │ ├── Date_Time.cpp │ │ ├── Date_Time.h │ │ ├── Date_Time.inl │ │ ├── Default_Constants.h │ │ ├── Dev_Poll_Reactor.cpp │ │ ├── Dev_Poll_Reactor.h │ │ ├── Dev_Poll_Reactor.inl │ │ ├── Dirent.cpp │ │ ├── Dirent.h │ │ ├── Dirent.inl │ │ ├── Dirent_Selector.cpp │ │ ├── Dirent_Selector.h │ │ ├── Dirent_Selector.inl │ │ ├── Dump.cpp │ │ ├── Dump.h │ │ ├── Dump_T.cpp │ │ ├── Dump_T.h │ │ ├── Dynamic.cpp │ │ ├── Dynamic.h │ │ ├── Dynamic.inl │ │ ├── Dynamic_Message_Strategy.cpp │ │ ├── Dynamic_Message_Strategy.h │ │ ├── Dynamic_Message_Strategy.inl │ │ ├── Dynamic_Service.cpp │ │ ├── Dynamic_Service.h │ │ ├── Dynamic_Service.inl │ │ ├── Dynamic_Service_Base.cpp │ │ ├── Dynamic_Service_Base.h │ │ ├── Dynamic_Service_Dependency.cpp │ │ ├── Dynamic_Service_Dependency.h │ │ ├── ETCL │ │ ├── ACE_ETCL.pc.in │ │ ├── ACE_ETCL_Parser.pc.in │ │ ├── ETCL.ll │ │ ├── ETCL.mpc │ │ ├── ETCL.yy │ │ ├── ETCL_Constraint.cpp │ │ ├── ETCL_Constraint.h │ │ ├── ETCL_Constraint.inl │ │ ├── ETCL_Constraint_Visitor.cpp │ │ ├── ETCL_Constraint_Visitor.h │ │ ├── ETCL_Interpreter.cpp │ │ ├── ETCL_Interpreter.h │ │ ├── ETCL_l.cpp │ │ ├── ETCL_l.cpp.diff │ │ ├── ETCL_y.cpp │ │ ├── ETCL_y.cpp.diff │ │ ├── ETCL_y.h │ │ ├── ETCL_y.h.diff │ │ ├── ace_etcl_export.h │ │ └── etcl_parser_export.h │ │ ├── Encoding_Converter.cpp │ │ ├── Encoding_Converter.h │ │ ├── Encoding_Converter_Factory.cpp │ │ ├── Encoding_Converter_Factory.h │ │ ├── Env_Value_T.cpp │ │ ├── Env_Value_T.h │ │ ├── Env_Value_T.inl │ │ ├── Event.cpp │ │ ├── Event.h │ │ ├── Event.inl │ │ ├── Event_Base.cpp │ │ ├── Event_Base.h │ │ ├── Event_Base.inl │ │ ├── Event_Handler.cpp │ │ ├── Event_Handler.h │ │ ├── Event_Handler.inl │ │ ├── Event_Handler_Handle_Timeout_Upcall.cpp │ │ ├── Event_Handler_Handle_Timeout_Upcall.h │ │ ├── Event_Handler_Handle_Timeout_Upcall.inl │ │ ├── Event_Handler_T.cpp │ │ ├── Event_Handler_T.h │ │ ├── Event_Handler_T.inl │ │ ├── FIFO.cpp │ │ ├── FIFO.h │ │ ├── FIFO.inl │ │ ├── FIFO_Recv.cpp │ │ ├── FIFO_Recv.h │ │ ├── FIFO_Recv.inl │ │ ├── FIFO_Recv_Msg.cpp │ │ ├── FIFO_Recv_Msg.h │ │ ├── FIFO_Recv_Msg.inl │ │ ├── FIFO_Send.cpp │ │ ├── FIFO_Send.h │ │ ├── FIFO_Send.inl │ │ ├── FIFO_Send_Msg.cpp │ │ ├── FIFO_Send_Msg.h │ │ ├── FIFO_Send_Msg.inl │ │ ├── FILE.cpp │ │ ├── FILE.h │ │ ├── FILE.inl │ │ ├── FILE_Addr.cpp │ │ ├── FILE_Addr.h │ │ ├── FILE_Addr.inl │ │ ├── FILE_Connector.cpp │ │ ├── FILE_Connector.h │ │ ├── FILE_Connector.inl │ │ ├── FILE_IO.cpp │ │ ├── FILE_IO.h │ │ ├── FILE_IO.inl │ │ ├── File_Lock.cpp │ │ ├── File_Lock.h │ │ ├── File_Lock.inl │ │ ├── Filecache.cpp │ │ ├── Filecache.h │ │ ├── FlReactor │ │ ├── ACE_FlReactor.pc.in │ │ ├── ACE_FlReactor_export.h │ │ ├── FlReactor.cpp │ │ ├── FlReactor.h │ │ └── ace_flreactor.mpc │ │ ├── Flag_Manip.cpp │ │ ├── Flag_Manip.h │ │ ├── Flag_Manip.inl │ │ ├── FoxReactor │ │ ├── ACE_FoxReactor.pc.in │ │ ├── ACE_FoxReactor_export.h │ │ ├── FoxReactor.cpp │ │ ├── FoxReactor.h │ │ └── ace_foxreactor.mpc │ │ ├── Framework_Component.cpp │ │ ├── Framework_Component.h │ │ ├── Framework_Component.inl │ │ ├── Framework_Component_T.cpp │ │ ├── Framework_Component_T.h │ │ ├── Free_List.cpp │ │ ├── Free_List.h │ │ ├── Functor.cpp │ │ ├── Functor.h │ │ ├── Functor.inl │ │ ├── Functor_String.cpp │ │ ├── Functor_String.h │ │ ├── Functor_String.inl │ │ ├── Functor_T.cpp │ │ ├── Functor_T.h │ │ ├── Functor_T.inl │ │ ├── Future.cpp │ │ ├── Future.h │ │ ├── Future_Set.cpp │ │ ├── Future_Set.h │ │ ├── Get_Opt.cpp │ │ ├── Get_Opt.h │ │ ├── Get_Opt.inl │ │ ├── Global_Macros.h │ │ ├── Guard_T.cpp │ │ ├── Guard_T.h │ │ ├── Guard_T.inl │ │ ├── Handle_Gobbler.h │ │ ├── Handle_Gobbler.inl │ │ ├── Handle_Ops.cpp │ │ ├── Handle_Ops.h │ │ ├── Handle_Set.cpp │ │ ├── Handle_Set.h │ │ ├── Handle_Set.inl │ │ ├── Hash_Cache_Map_Manager_T.cpp │ │ ├── Hash_Cache_Map_Manager_T.h │ │ ├── Hash_Cache_Map_Manager_T.inl │ │ ├── Hash_Map_Manager.h │ │ ├── Hash_Map_Manager_T.cpp │ │ ├── Hash_Map_Manager_T.h │ │ ├── Hash_Map_Manager_T.inl │ │ ├── Hash_Map_With_Allocator_T.cpp │ │ ├── Hash_Map_With_Allocator_T.h │ │ ├── Hash_Map_With_Allocator_T.inl │ │ ├── Hash_Multi_Map_Manager_T.cpp │ │ ├── Hash_Multi_Map_Manager_T.h │ │ ├── Hash_Multi_Map_Manager_T.inl │ │ ├── Hashable.cpp │ │ ├── Hashable.h │ │ ├── Hashable.inl │ │ ├── High_Res_Timer.cpp │ │ ├── High_Res_Timer.h │ │ ├── High_Res_Timer.inl │ │ ├── ICMP_Socket.cpp │ │ ├── ICMP_Socket.h │ │ ├── INET_Addr.cpp │ │ ├── INET_Addr.h │ │ ├── INET_Addr.inl │ │ ├── IOStream.cpp │ │ ├── IOStream.h │ │ ├── IOStream_T.cpp │ │ ├── IOStream_T.h │ │ ├── IOStream_T.inl │ │ ├── IO_Cntl_Msg.cpp │ │ ├── IO_Cntl_Msg.h │ │ ├── IO_Cntl_Msg.inl │ │ ├── IO_SAP.cpp │ │ ├── IO_SAP.h │ │ ├── IO_SAP.inl │ │ ├── IPC_SAP.cpp │ │ ├── IPC_SAP.h │ │ ├── IPC_SAP.inl │ │ ├── If_Then_Else.h │ │ ├── Init_ACE.cpp │ │ ├── Init_ACE.h │ │ ├── Intrusive_Auto_Ptr.cpp │ │ ├── Intrusive_Auto_Ptr.h │ │ ├── Intrusive_Auto_Ptr.inl │ │ ├── Intrusive_List.cpp │ │ ├── Intrusive_List.h │ │ ├── Intrusive_List.inl │ │ ├── Intrusive_List_Node.cpp │ │ ├── Intrusive_List_Node.h │ │ ├── Intrusive_List_Node.inl │ │ ├── LOCK_SOCK_Acceptor.cpp │ │ ├── LOCK_SOCK_Acceptor.h │ │ ├── LSOCK.cpp │ │ ├── LSOCK.h │ │ ├── LSOCK.inl │ │ ├── LSOCK_Acceptor.cpp │ │ ├── LSOCK_Acceptor.h │ │ ├── LSOCK_CODgram.cpp │ │ ├── LSOCK_CODgram.h │ │ ├── LSOCK_CODgram.inl │ │ ├── LSOCK_Connector.cpp │ │ ├── LSOCK_Connector.h │ │ ├── LSOCK_Connector.inl │ │ ├── LSOCK_Dgram.cpp │ │ ├── LSOCK_Dgram.h │ │ ├── LSOCK_Dgram.inl │ │ ├── LSOCK_Stream.cpp │ │ ├── LSOCK_Stream.h │ │ ├── LSOCK_Stream.inl │ │ ├── Lib_Find.cpp │ │ ├── Lib_Find.h │ │ ├── Local_Memory_Pool.cpp │ │ ├── Local_Memory_Pool.h │ │ ├── Local_Name_Space.cpp │ │ ├── Local_Name_Space.h │ │ ├── Local_Name_Space_T.cpp │ │ ├── Local_Name_Space_T.h │ │ ├── Local_Tokens.cpp │ │ ├── Local_Tokens.h │ │ ├── Local_Tokens.inl │ │ ├── Lock.cpp │ │ ├── Lock.h │ │ ├── Lock.inl │ │ ├── Lock_Adapter_T.cpp │ │ ├── Lock_Adapter_T.h │ │ ├── Lock_Adapter_T.inl │ │ ├── Log_Category.cpp │ │ ├── Log_Category.h │ │ ├── Log_Category.inl │ │ ├── Log_Msg.cpp │ │ ├── Log_Msg.h │ │ ├── Log_Msg.inl │ │ ├── Log_Msg_Backend.cpp │ │ ├── Log_Msg_Backend.h │ │ ├── Log_Msg_Callback.cpp │ │ ├── Log_Msg_Callback.h │ │ ├── Log_Msg_IPC.cpp │ │ ├── Log_Msg_IPC.h │ │ ├── Log_Msg_NT_Event_Log.cpp │ │ ├── Log_Msg_NT_Event_Log.h │ │ ├── Log_Msg_UNIX_Syslog.cpp │ │ ├── Log_Msg_UNIX_Syslog.h │ │ ├── Log_Priority.h │ │ ├── Log_Record.cpp │ │ ├── Log_Record.h │ │ ├── Log_Record.inl │ │ ├── Logging_Strategy.cpp │ │ ├── Logging_Strategy.h │ │ ├── MEM_Acceptor.cpp │ │ ├── MEM_Acceptor.h │ │ ├── MEM_Acceptor.inl │ │ ├── MEM_Addr.cpp │ │ ├── MEM_Addr.h │ │ ├── MEM_Addr.inl │ │ ├── MEM_Connector.cpp │ │ ├── MEM_Connector.h │ │ ├── MEM_Connector.inl │ │ ├── MEM_IO.cpp │ │ ├── MEM_IO.h │ │ ├── MEM_IO.inl │ │ ├── MEM_SAP.cpp │ │ ├── MEM_SAP.h │ │ ├── MEM_SAP.inl │ │ ├── MEM_Stream.cpp │ │ ├── MEM_Stream.h │ │ ├── MEM_Stream.inl │ │ ├── MMAP_Memory_Pool.cpp │ │ ├── MMAP_Memory_Pool.h │ │ ├── MMAP_Memory_Pool.inl │ │ ├── Malloc.cpp │ │ ├── Malloc.h │ │ ├── Malloc.inl │ │ ├── Malloc_Allocator.cpp │ │ ├── Malloc_Allocator.h │ │ ├── Malloc_Allocator.inl │ │ ├── Malloc_Base.h │ │ ├── Malloc_T.cpp │ │ ├── Malloc_T.h │ │ ├── Malloc_T.inl │ │ ├── Managed_Object.cpp │ │ ├── Managed_Object.h │ │ ├── Managed_Object.inl │ │ ├── Manual_Event.cpp │ │ ├── Manual_Event.h │ │ ├── Manual_Event.inl │ │ ├── Map_Manager.cpp │ │ ├── Map_Manager.h │ │ ├── Map_Manager.inl │ │ ├── Map_T.cpp │ │ ├── Map_T.h │ │ ├── Map_T.inl │ │ ├── Mem_Map.cpp │ │ ├── Mem_Map.h │ │ ├── Mem_Map.inl │ │ ├── Memory_Pool.h │ │ ├── Message_Block.cpp │ │ ├── Message_Block.h │ │ ├── Message_Block.inl │ │ ├── Message_Block_T.cpp │ │ ├── Message_Block_T.h │ │ ├── Message_Block_T.inl │ │ ├── Message_Queue.cpp │ │ ├── Message_Queue.h │ │ ├── Message_Queue.inl │ │ ├── Message_Queue_NT.cpp │ │ ├── Message_Queue_NT.h │ │ ├── Message_Queue_NT.inl │ │ ├── Message_Queue_T.cpp │ │ ├── Message_Queue_T.h │ │ ├── Message_Queue_Vx.cpp │ │ ├── Message_Queue_Vx.h │ │ ├── Message_Queue_Vx.inl │ │ ├── Method_Request.cpp │ │ ├── Method_Request.h │ │ ├── Metrics_Cache.h │ │ ├── Metrics_Cache_T.cpp │ │ ├── Metrics_Cache_T.h │ │ ├── Metrics_Cache_T.inl │ │ ├── Min_Max.h │ │ ├── Module.cpp │ │ ├── Module.h │ │ ├── Module.inl │ │ ├── Monitor_Admin.cpp │ │ ├── Monitor_Admin.h │ │ ├── Monitor_Admin_Manager.cpp │ │ ├── Monitor_Admin_Manager.h │ │ ├── Monitor_Base.cpp │ │ ├── Monitor_Base.h │ │ ├── Monitor_Base.inl │ │ ├── Monitor_Control │ │ ├── Auto_Update_Starter.cpp │ │ ├── Auto_Update_Starter.h │ │ ├── BSD_Network_Interface_Monitor.cpp │ │ ├── BSD_Network_Interface_Monitor.h │ │ ├── Bytes_Received_Monitor.cpp │ │ ├── Bytes_Received_Monitor.h │ │ ├── Bytes_Sent_Monitor.cpp │ │ ├── Bytes_Sent_Monitor.h │ │ ├── CPU_Load_Monitor.cpp │ │ ├── CPU_Load_Monitor.h │ │ ├── Constraint_Interpreter.cpp │ │ ├── Constraint_Interpreter.h │ │ ├── Constraint_Visitor.cpp │ │ ├── Constraint_Visitor.h │ │ ├── FreeBSD_Network_Interface_Monitor.cpp │ │ ├── FreeBSD_Network_Interface_Monitor.h │ │ ├── Linux_Network_Interface_Monitor.cpp │ │ ├── Linux_Network_Interface_Monitor.h │ │ ├── Memory_Usage_Monitor.cpp │ │ ├── Memory_Usage_Monitor.h │ │ ├── Monitor_Control.h │ │ ├── Monitor_Control.mpc │ │ ├── Monitor_Control.vsd │ │ ├── Monitor_Control_export.h │ │ ├── Monitor_Control_utils.h │ │ ├── Monitor_Group.cpp │ │ ├── Monitor_Group.h │ │ ├── Monitor_Query.cpp │ │ ├── Monitor_Query.h │ │ ├── Null_Network_Interface_Monitor.cpp │ │ ├── Null_Network_Interface_Monitor.h │ │ ├── Num_Threads_Monitor.cpp │ │ ├── Num_Threads_Monitor.h │ │ ├── Packets_Received_Monitor.cpp │ │ ├── Packets_Received_Monitor.h │ │ ├── Packets_Sent_Monitor.cpp │ │ ├── Packets_Sent_Monitor.h │ │ ├── Solaris_Network_Interface_Monitor.cpp │ │ ├── Solaris_Network_Interface_Monitor.h │ │ ├── Windows_Monitor.cpp │ │ ├── Windows_Monitor.h │ │ ├── Windows_Multi_Instance_Monitor.cpp │ │ └── Windows_Multi_Instance_Monitor.h │ │ ├── Monitor_Control_Action.cpp │ │ ├── Monitor_Control_Action.h │ │ ├── Monitor_Control_Types.cpp │ │ ├── Monitor_Control_Types.h │ │ ├── Monitor_Point_Registry.cpp │ │ ├── Monitor_Point_Registry.h │ │ ├── Monitor_Size.cpp │ │ ├── Monitor_Size.h │ │ ├── Monotonic_Time_Policy.cpp │ │ ├── Monotonic_Time_Policy.h │ │ ├── Monotonic_Time_Policy.inl │ │ ├── Msg_WFMO_Reactor.cpp │ │ ├── Msg_WFMO_Reactor.h │ │ ├── Msg_WFMO_Reactor.inl │ │ ├── Multihomed_INET_Addr.cpp │ │ ├── Multihomed_INET_Addr.h │ │ ├── Multihomed_INET_Addr.inl │ │ ├── Mutex.cpp │ │ ├── Mutex.h │ │ ├── Mutex.inl │ │ ├── NT_Service.cpp │ │ ├── NT_Service.h │ │ ├── NT_Service.inl │ │ ├── Name_Proxy.cpp │ │ ├── Name_Proxy.h │ │ ├── Name_Request_Reply.cpp │ │ ├── Name_Request_Reply.h │ │ ├── Name_Space.cpp │ │ ├── Name_Space.h │ │ ├── Naming_Context.cpp │ │ ├── Naming_Context.h │ │ ├── Naming_Context.inl │ │ ├── Netlink_Addr.cpp │ │ ├── Netlink_Addr.h │ │ ├── Netlink_Addr.inl │ │ ├── Node.cpp │ │ ├── Node.h │ │ ├── Notification_Queue.cpp │ │ ├── Notification_Queue.h │ │ ├── Notification_Queue.inl │ │ ├── Notification_Strategy.cpp │ │ ├── Notification_Strategy.h │ │ ├── Notification_Strategy.inl │ │ ├── Null_Barrier.h │ │ ├── Null_Condition.h │ │ ├── Null_Mutex.h │ │ ├── Null_Semaphore.h │ │ ├── Numeric_Limits.h │ │ ├── OS.h │ │ ├── OS_Errno.cpp │ │ ├── OS_Errno.h │ │ ├── OS_Errno.inl │ │ ├── OS_Log_Msg_Attributes.cpp │ │ ├── OS_Log_Msg_Attributes.h │ │ ├── OS_Log_Msg_Attributes.inl │ │ ├── OS_Memory.h │ │ ├── OS_NS_Thread.cpp │ │ ├── OS_NS_Thread.h │ │ ├── OS_NS_Thread.inl │ │ ├── OS_NS_arpa_inet.cpp │ │ ├── OS_NS_arpa_inet.h │ │ ├── OS_NS_arpa_inet.inl │ │ ├── OS_NS_ctype.cpp │ │ ├── OS_NS_ctype.h │ │ ├── OS_NS_ctype.inl │ │ ├── OS_NS_dirent.cpp │ │ ├── OS_NS_dirent.h │ │ ├── OS_NS_dirent.inl │ │ ├── OS_NS_dlfcn.cpp │ │ ├── OS_NS_dlfcn.h │ │ ├── OS_NS_dlfcn.inl │ │ ├── OS_NS_errno.cpp │ │ ├── OS_NS_errno.h │ │ ├── OS_NS_errno.inl │ │ ├── OS_NS_fcntl.cpp │ │ ├── OS_NS_fcntl.h │ │ ├── OS_NS_fcntl.inl │ │ ├── OS_NS_macros.h │ │ ├── OS_NS_math.cpp │ │ ├── OS_NS_math.h │ │ ├── OS_NS_math.inl │ │ ├── OS_NS_netdb.cpp │ │ ├── OS_NS_netdb.h │ │ ├── OS_NS_netdb.inl │ │ ├── OS_NS_poll.cpp │ │ ├── OS_NS_poll.h │ │ ├── OS_NS_poll.inl │ │ ├── OS_NS_pwd.cpp │ │ ├── OS_NS_pwd.h │ │ ├── OS_NS_pwd.inl │ │ ├── OS_NS_regex.cpp │ │ ├── OS_NS_regex.h │ │ ├── OS_NS_regex.inl │ │ ├── OS_NS_signal.cpp │ │ ├── OS_NS_signal.h │ │ ├── OS_NS_signal.inl │ │ ├── OS_NS_stdio.cpp │ │ ├── OS_NS_stdio.h │ │ ├── OS_NS_stdio.inl │ │ ├── OS_NS_stdlib.cpp │ │ ├── OS_NS_stdlib.h │ │ ├── OS_NS_stdlib.inl │ │ ├── OS_NS_string.cpp │ │ ├── OS_NS_string.h │ │ ├── OS_NS_string.inl │ │ ├── OS_NS_strings.cpp │ │ ├── OS_NS_strings.h │ │ ├── OS_NS_strings.inl │ │ ├── OS_NS_stropts.cpp │ │ ├── OS_NS_stropts.h │ │ ├── OS_NS_stropts.inl │ │ ├── OS_NS_sys_mman.cpp │ │ ├── OS_NS_sys_mman.h │ │ ├── OS_NS_sys_mman.inl │ │ ├── OS_NS_sys_msg.cpp │ │ ├── OS_NS_sys_msg.h │ │ ├── OS_NS_sys_msg.inl │ │ ├── OS_NS_sys_resource.cpp │ │ ├── OS_NS_sys_resource.h │ │ ├── OS_NS_sys_resource.inl │ │ ├── OS_NS_sys_select.cpp │ │ ├── OS_NS_sys_select.h │ │ ├── OS_NS_sys_select.inl │ │ ├── OS_NS_sys_sendfile.cpp │ │ ├── OS_NS_sys_sendfile.h │ │ ├── OS_NS_sys_sendfile.inl │ │ ├── OS_NS_sys_shm.cpp │ │ ├── OS_NS_sys_shm.h │ │ ├── OS_NS_sys_shm.inl │ │ ├── OS_NS_sys_socket.cpp │ │ ├── OS_NS_sys_socket.h │ │ ├── OS_NS_sys_socket.inl │ │ ├── OS_NS_sys_stat.cpp │ │ ├── OS_NS_sys_stat.h │ │ ├── OS_NS_sys_stat.inl │ │ ├── OS_NS_sys_time.cpp │ │ ├── OS_NS_sys_time.h │ │ ├── OS_NS_sys_time.inl │ │ ├── OS_NS_sys_uio.cpp │ │ ├── OS_NS_sys_uio.h │ │ ├── OS_NS_sys_uio.inl │ │ ├── OS_NS_sys_utsname.cpp │ │ ├── OS_NS_sys_utsname.h │ │ ├── OS_NS_sys_wait.cpp │ │ ├── OS_NS_sys_wait.h │ │ ├── OS_NS_sys_wait.inl │ │ ├── OS_NS_time.cpp │ │ ├── OS_NS_time.h │ │ ├── OS_NS_time.inl │ │ ├── OS_NS_unistd.cpp │ │ ├── OS_NS_unistd.h │ │ ├── OS_NS_unistd.inl │ │ ├── OS_NS_wchar.cpp │ │ ├── OS_NS_wchar.h │ │ ├── OS_NS_wchar.inl │ │ ├── OS_NS_wctype.cpp │ │ ├── OS_NS_wctype.h │ │ ├── OS_NS_wctype.inl │ │ ├── OS_QoS.cpp │ │ ├── OS_QoS.h │ │ ├── OS_TLI.cpp │ │ ├── OS_TLI.h │ │ ├── OS_TLI.inl │ │ ├── OS_Thread_Adapter.cpp │ │ ├── OS_Thread_Adapter.h │ │ ├── OS_main.cpp │ │ ├── OS_main.h │ │ ├── Obchunk.cpp │ │ ├── Obchunk.h │ │ ├── Obchunk.inl │ │ ├── Object_Manager.cpp │ │ ├── Object_Manager.h │ │ ├── Object_Manager.inl │ │ ├── Object_Manager_Base.cpp │ │ ├── Object_Manager_Base.h │ │ ├── Obstack.cpp │ │ ├── Obstack.h │ │ ├── Obstack_T.cpp │ │ ├── Obstack_T.h │ │ ├── Obstack_T.inl │ │ ├── PI_Malloc.cpp │ │ ├── PI_Malloc.h │ │ ├── PI_Malloc.inl │ │ ├── POSIX_Asynch_IO.cpp │ │ ├── POSIX_Asynch_IO.h │ │ ├── POSIX_CB_Proactor.cpp │ │ ├── POSIX_CB_Proactor.h │ │ ├── POSIX_Proactor.cpp │ │ ├── POSIX_Proactor.h │ │ ├── POSIX_Proactor.inl │ │ ├── Pagefile_Memory_Pool.cpp │ │ ├── Pagefile_Memory_Pool.h │ │ ├── Pagefile_Memory_Pool.inl │ │ ├── Pair_T.cpp │ │ ├── Pair_T.h │ │ ├── Pair_T.inl │ │ ├── Parse_Node.cpp │ │ ├── Parse_Node.h │ │ ├── Ping_Socket.cpp │ │ ├── Ping_Socket.h │ │ ├── Ping_Socket.inl │ │ ├── Pipe.cpp │ │ ├── Pipe.h │ │ ├── Pipe.inl │ │ ├── PrecompiledHeaders │ │ ├── WinAcePCH.cpp │ │ └── WinAcePCH.h │ │ ├── Priority_Reactor.cpp │ │ ├── Priority_Reactor.h │ │ ├── Proactor.cpp │ │ ├── Proactor.h │ │ ├── Proactor.inl │ │ ├── Proactor_Impl.cpp │ │ ├── Proactor_Impl.h │ │ ├── Process.cpp │ │ ├── Process.h │ │ ├── Process.inl │ │ ├── Process_Manager.cpp │ │ ├── Process_Manager.h │ │ ├── Process_Manager.inl │ │ ├── Process_Mutex.cpp │ │ ├── Process_Mutex.h │ │ ├── Process_Mutex.inl │ │ ├── Process_Semaphore.cpp │ │ ├── Process_Semaphore.h │ │ ├── Process_Semaphore.inl │ │ ├── Profile_Timer.cpp │ │ ├── Profile_Timer.h │ │ ├── Profile_Timer.inl │ │ ├── QoS │ │ ├── ACE_QoS.pc.in │ │ ├── ACE_QoS_Export.h │ │ ├── QoS_Decorator.cpp │ │ ├── QoS_Decorator.h │ │ ├── QoS_Manager.cpp │ │ ├── QoS_Manager.h │ │ ├── QoS_Session.h │ │ ├── QoS_Session_Factory.cpp │ │ ├── QoS_Session_Factory.h │ │ ├── QoS_Session_Impl.cpp │ │ ├── QoS_Session_Impl.h │ │ ├── QoS_Session_Impl.inl │ │ ├── README │ │ ├── SOCK_Dgram_Mcast_QoS.cpp │ │ ├── SOCK_Dgram_Mcast_QoS.h │ │ ├── SOCK_Dgram_Mcast_QoS.inl │ │ └── qos.mpc │ │ ├── QtReactor │ │ ├── .gitignore │ │ ├── ACE_QtReactor.pc.in │ │ ├── ACE_QtReactor_export.h │ │ ├── QtReactor.cpp │ │ ├── QtReactor.h │ │ └── ace_qt4reactor.mpc │ │ ├── RB_Tree.cpp │ │ ├── RB_Tree.h │ │ ├── RB_Tree.inl │ │ ├── README │ │ ├── RW_Mutex.cpp │ │ ├── RW_Mutex.h │ │ ├── RW_Mutex.inl │ │ ├── RW_Process_Mutex.cpp │ │ ├── RW_Process_Mutex.h │ │ ├── RW_Process_Mutex.inl │ │ ├── RW_Thread_Mutex.cpp │ │ ├── RW_Thread_Mutex.h │ │ ├── RW_Thread_Mutex.inl │ │ ├── Reactor.cpp │ │ ├── Reactor.h │ │ ├── Reactor.inl │ │ ├── Reactor_Impl.cpp │ │ ├── Reactor_Impl.h │ │ ├── Reactor_Notification_Strategy.cpp │ │ ├── Reactor_Notification_Strategy.h │ │ ├── Reactor_Notification_Strategy.inl │ │ ├── Reactor_Timer_Interface.cpp │ │ ├── Reactor_Timer_Interface.h │ │ ├── Reactor_Token_T.cpp │ │ ├── Reactor_Token_T.h │ │ ├── Read_Buffer.cpp │ │ ├── Read_Buffer.h │ │ ├── Read_Buffer.inl │ │ ├── Recursive_Thread_Mutex.cpp │ │ ├── Recursive_Thread_Mutex.h │ │ ├── Recursive_Thread_Mutex.inl │ │ ├── Recyclable.cpp │ │ ├── Recyclable.h │ │ ├── Recyclable.inl │ │ ├── Refcountable_T.cpp │ │ ├── Refcountable_T.h │ │ ├── Refcountable_T.inl │ │ ├── Refcounted_Auto_Ptr.cpp │ │ ├── Refcounted_Auto_Ptr.h │ │ ├── Refcounted_Auto_Ptr.inl │ │ ├── Registry.cpp │ │ ├── Registry.h │ │ ├── Registry_Name_Space.cpp │ │ ├── Registry_Name_Space.h │ │ ├── Remote_Name_Space.cpp │ │ ├── Remote_Name_Space.h │ │ ├── Remote_Tokens.cpp │ │ ├── Remote_Tokens.h │ │ ├── Remote_Tokens.inl │ │ ├── Reverse_Lock_T.cpp │ │ ├── Reverse_Lock_T.h │ │ ├── Reverse_Lock_T.inl │ │ ├── Rtems_init.c │ │ ├── SOCK.cpp │ │ ├── SOCK.h │ │ ├── SOCK.inl │ │ ├── SOCK_Acceptor.cpp │ │ ├── SOCK_Acceptor.h │ │ ├── SOCK_Acceptor.inl │ │ ├── SOCK_CODgram.cpp │ │ ├── SOCK_CODgram.h │ │ ├── SOCK_CODgram.inl │ │ ├── SOCK_Connector.cpp │ │ ├── SOCK_Connector.h │ │ ├── SOCK_Connector.inl │ │ ├── SOCK_Dgram.cpp │ │ ├── SOCK_Dgram.h │ │ ├── SOCK_Dgram.inl │ │ ├── SOCK_Dgram_Bcast.cpp │ │ ├── SOCK_Dgram_Bcast.h │ │ ├── SOCK_Dgram_Bcast.inl │ │ ├── SOCK_Dgram_Mcast.cpp │ │ ├── SOCK_Dgram_Mcast.h │ │ ├── SOCK_Dgram_Mcast.inl │ │ ├── SOCK_IO.cpp │ │ ├── SOCK_IO.h │ │ ├── SOCK_IO.inl │ │ ├── SOCK_Netlink.cpp │ │ ├── SOCK_Netlink.h │ │ ├── SOCK_Netlink.inl │ │ ├── SOCK_SEQPACK_Acceptor.cpp │ │ ├── SOCK_SEQPACK_Acceptor.h │ │ ├── SOCK_SEQPACK_Acceptor.inl │ │ ├── SOCK_SEQPACK_Association.cpp │ │ ├── SOCK_SEQPACK_Association.h │ │ ├── SOCK_SEQPACK_Association.inl │ │ ├── SOCK_SEQPACK_Connector.cpp │ │ ├── SOCK_SEQPACK_Connector.h │ │ ├── SOCK_SEQPACK_Connector.inl │ │ ├── SOCK_Stream.cpp │ │ ├── SOCK_Stream.h │ │ ├── SOCK_Stream.inl │ │ ├── SPIPE.cpp │ │ ├── SPIPE.h │ │ ├── SPIPE.inl │ │ ├── SPIPE_Acceptor.cpp │ │ ├── SPIPE_Acceptor.h │ │ ├── SPIPE_Addr.cpp │ │ ├── SPIPE_Addr.h │ │ ├── SPIPE_Addr.inl │ │ ├── SPIPE_Connector.cpp │ │ ├── SPIPE_Connector.h │ │ ├── SPIPE_Connector.inl │ │ ├── SPIPE_Stream.cpp │ │ ├── SPIPE_Stream.h │ │ ├── SPIPE_Stream.inl │ │ ├── SSL │ │ ├── ACE_SSL.pc.in │ │ ├── SSL_Asynch_BIO.cpp │ │ ├── SSL_Asynch_BIO.h │ │ ├── SSL_Asynch_Stream.cpp │ │ ├── SSL_Asynch_Stream.h │ │ ├── SSL_Asynch_Stream.inl │ │ ├── SSL_Context.cpp │ │ ├── SSL_Context.h │ │ ├── SSL_Context.inl │ │ ├── SSL_Export.h │ │ ├── SSL_Initializer.cpp │ │ ├── SSL_Initializer.h │ │ ├── SSL_SOCK.cpp │ │ ├── SSL_SOCK.h │ │ ├── SSL_SOCK.inl │ │ ├── SSL_SOCK_Acceptor.cpp │ │ ├── SSL_SOCK_Acceptor.h │ │ ├── SSL_SOCK_Acceptor.inl │ │ ├── SSL_SOCK_Connector.cpp │ │ ├── SSL_SOCK_Connector.h │ │ ├── SSL_SOCK_Connector.inl │ │ ├── SSL_SOCK_Stream.cpp │ │ ├── SSL_SOCK_Stream.h │ │ ├── SSL_SOCK_Stream.inl │ │ ├── ssl.mpc │ │ ├── ssl_for_tao.mpc │ │ └── sslconf.h │ │ ├── SString.cpp │ │ ├── SString.h │ │ ├── SString.inl │ │ ├── SStringfwd.h │ │ ├── SUN_Proactor.cpp │ │ ├── SUN_Proactor.h │ │ ├── SV_Message.cpp │ │ ├── SV_Message.h │ │ ├── SV_Message.inl │ │ ├── SV_Message_Queue.cpp │ │ ├── SV_Message_Queue.h │ │ ├── SV_Message_Queue.inl │ │ ├── SV_Semaphore_Complex.cpp │ │ ├── SV_Semaphore_Complex.h │ │ ├── SV_Semaphore_Complex.inl │ │ ├── SV_Semaphore_Simple.cpp │ │ ├── SV_Semaphore_Simple.h │ │ ├── SV_Semaphore_Simple.inl │ │ ├── SV_Shared_Memory.cpp │ │ ├── SV_Shared_Memory.h │ │ ├── SV_Shared_Memory.inl │ │ ├── Sample_History.cpp │ │ ├── Sample_History.h │ │ ├── Sample_History.inl │ │ ├── Sbrk_Memory_Pool.cpp │ │ ├── Sbrk_Memory_Pool.h │ │ ├── Sched_Params.cpp │ │ ├── Sched_Params.h │ │ ├── Sched_Params.inl │ │ ├── Select_Reactor.h │ │ ├── Select_Reactor_Base.cpp │ │ ├── Select_Reactor_Base.h │ │ ├── Select_Reactor_Base.inl │ │ ├── Select_Reactor_T.cpp │ │ ├── Select_Reactor_T.h │ │ ├── Select_Reactor_T.inl │ │ ├── Semaphore.cpp │ │ ├── Semaphore.h │ │ ├── Semaphore.inl │ │ ├── Service_Config.cpp │ │ ├── Service_Config.h │ │ ├── Service_Config.inl │ │ ├── Service_Gestalt.cpp │ │ ├── Service_Gestalt.h │ │ ├── Service_Gestalt.inl │ │ ├── Service_Manager.cpp │ │ ├── Service_Manager.h │ │ ├── Service_Object.cpp │ │ ├── Service_Object.h │ │ ├── Service_Object.inl │ │ ├── Service_Repository.cpp │ │ ├── Service_Repository.h │ │ ├── Service_Repository.inl │ │ ├── Service_Types.cpp │ │ ├── Service_Types.h │ │ ├── Service_Types.inl │ │ ├── Shared_Memory.cpp │ │ ├── Shared_Memory.h │ │ ├── Shared_Memory_MM.cpp │ │ ├── Shared_Memory_MM.h │ │ ├── Shared_Memory_MM.inl │ │ ├── Shared_Memory_Pool.cpp │ │ ├── Shared_Memory_Pool.h │ │ ├── Shared_Memory_SV.cpp │ │ ├── Shared_Memory_SV.h │ │ ├── Shared_Memory_SV.inl │ │ ├── Shared_Object.cpp │ │ ├── Shared_Object.h │ │ ├── Shared_Object.inl │ │ ├── Sig_Adapter.cpp │ │ ├── Sig_Adapter.h │ │ ├── Sig_Handler.cpp │ │ ├── Sig_Handler.h │ │ ├── Sig_Handler.inl │ │ ├── Signal.cpp │ │ ├── Signal.h │ │ ├── Signal.inl │ │ ├── Singleton.cpp │ │ ├── Singleton.h │ │ ├── Singleton.inl │ │ ├── Sock_Connect.cpp │ │ ├── Sock_Connect.h │ │ ├── Stack_Trace.cpp │ │ ├── Stack_Trace.h │ │ ├── Static_Object_Lock.h │ │ ├── Stats.cpp │ │ ├── Stats.h │ │ ├── Stats.inl │ │ ├── Strategies_T.cpp │ │ ├── Strategies_T.h │ │ ├── Strategies_T.inl │ │ ├── Stream.cpp │ │ ├── Stream.h │ │ ├── Stream.inl │ │ ├── Stream_Modules.cpp │ │ ├── Stream_Modules.h │ │ ├── String_Base.cpp │ │ ├── String_Base.h │ │ ├── String_Base.inl │ │ ├── String_Base_Const.cpp │ │ ├── String_Base_Const.h │ │ ├── Svc_Conf.h │ │ ├── Svc_Conf.y │ │ ├── Svc_Conf_Lexer.cpp │ │ ├── Svc_Conf_Lexer.h │ │ ├── Svc_Conf_Param.h │ │ ├── Svc_Conf_Token_Table.h │ │ ├── Svc_Conf_Tokens.h │ │ ├── Svc_Conf_y.cpp │ │ ├── Svc_Handler.cpp │ │ ├── Svc_Handler.h │ │ ├── Synch.h │ │ ├── Synch_Options.cpp │ │ ├── Synch_Options.h │ │ ├── Synch_Traits.h │ │ ├── System_Time.cpp │ │ ├── System_Time.h │ │ ├── TLI.cpp │ │ ├── TLI.h │ │ ├── TLI.inl │ │ ├── TLI_Acceptor.cpp │ │ ├── TLI_Acceptor.h │ │ ├── TLI_Connector.cpp │ │ ├── TLI_Connector.h │ │ ├── TLI_Connector.inl │ │ ├── TLI_Stream.cpp │ │ ├── TLI_Stream.h │ │ ├── TLI_Stream.inl │ │ ├── TP_Reactor.cpp │ │ ├── TP_Reactor.h │ │ ├── TP_Reactor.inl │ │ ├── TSS_Adapter.cpp │ │ ├── TSS_Adapter.h │ │ ├── TSS_T.cpp │ │ ├── TSS_T.h │ │ ├── TSS_T.inl │ │ ├── TTY_IO.cpp │ │ ├── TTY_IO.h │ │ ├── Task.cpp │ │ ├── Task.h │ │ ├── Task.inl │ │ ├── Task_Ex_T.cpp │ │ ├── Task_Ex_T.h │ │ ├── Task_Ex_T.inl │ │ ├── Task_T.cpp │ │ ├── Task_T.h │ │ ├── Task_T.inl │ │ ├── Test_and_Set.cpp │ │ ├── Test_and_Set.h │ │ ├── Thread.cpp │ │ ├── Thread.h │ │ ├── Thread.inl │ │ ├── Thread_Adapter.cpp │ │ ├── Thread_Adapter.h │ │ ├── Thread_Adapter.inl │ │ ├── Thread_Control.cpp │ │ ├── Thread_Control.h │ │ ├── Thread_Control.inl │ │ ├── Thread_Exit.cpp │ │ ├── Thread_Exit.h │ │ ├── Thread_Hook.cpp │ │ ├── Thread_Hook.h │ │ ├── Thread_Manager.cpp │ │ ├── Thread_Manager.h │ │ ├── Thread_Manager.inl │ │ ├── Thread_Mutex.cpp │ │ ├── Thread_Mutex.h │ │ ├── Thread_Mutex.inl │ │ ├── Thread_Semaphore.cpp │ │ ├── Thread_Semaphore.h │ │ ├── Thread_Semaphore.inl │ │ ├── Throughput_Stats.cpp │ │ ├── Throughput_Stats.h │ │ ├── Time_Policy.cpp │ │ ├── Time_Policy.h │ │ ├── Time_Policy.inl │ │ ├── Time_Policy_T.cpp │ │ ├── Time_Policy_T.h │ │ ├── Time_Policy_T.inl │ │ ├── Time_Value.cpp │ │ ├── Time_Value.h │ │ ├── Time_Value.inl │ │ ├── Time_Value_T.cpp │ │ ├── Time_Value_T.h │ │ ├── Time_Value_T.inl │ │ ├── Timeprobe.cpp │ │ ├── Timeprobe.h │ │ ├── Timeprobe.inl │ │ ├── Timeprobe_T.cpp │ │ ├── Timeprobe_T.h │ │ ├── Timer_Hash.h │ │ ├── Timer_Hash_T.cpp │ │ ├── Timer_Hash_T.h │ │ ├── Timer_Heap.h │ │ ├── Timer_Heap_T.cpp │ │ ├── Timer_Heap_T.h │ │ ├── Timer_List.h │ │ ├── Timer_List_T.cpp │ │ ├── Timer_List_T.h │ │ ├── Timer_Queue.h │ │ ├── Timer_Queue_Adapters.cpp │ │ ├── Timer_Queue_Adapters.h │ │ ├── Timer_Queue_Adapters.inl │ │ ├── Timer_Queue_Iterator.cpp │ │ ├── Timer_Queue_Iterator.h │ │ ├── Timer_Queue_Iterator.inl │ │ ├── Timer_Queue_T.cpp │ │ ├── Timer_Queue_T.h │ │ ├── Timer_Queue_T.inl │ │ ├── Timer_Queuefwd.h │ │ ├── Timer_Wheel.h │ │ ├── Timer_Wheel_T.cpp │ │ ├── Timer_Wheel_T.h │ │ ├── TkReactor │ │ ├── ACE_TkReactor.pc.in │ │ ├── ACE_TkReactor_export.h │ │ ├── TkReactor.cpp │ │ ├── TkReactor.h │ │ └── ace_tkreactor.mpc │ │ ├── Token.cpp │ │ ├── Token.h │ │ ├── Token.inl │ │ ├── Token_Collection.cpp │ │ ├── Token_Collection.h │ │ ├── Token_Collection.inl │ │ ├── Token_Invariants.cpp │ │ ├── Token_Invariants.h │ │ ├── Token_Manager.cpp │ │ ├── Token_Manager.h │ │ ├── Token_Manager.inl │ │ ├── Token_Request_Reply.cpp │ │ ├── Token_Request_Reply.h │ │ ├── Token_Request_Reply.inl │ │ ├── Tokenizer_T.cpp │ │ ├── Tokenizer_T.h │ │ ├── Trace.cpp │ │ ├── Trace.h │ │ ├── Truncate.h │ │ ├── Typed_SV_Message.cpp │ │ ├── Typed_SV_Message.h │ │ ├── Typed_SV_Message.inl │ │ ├── Typed_SV_Message_Queue.cpp │ │ ├── Typed_SV_Message_Queue.h │ │ ├── Typed_SV_Message_Queue.inl │ │ ├── UNIX_Addr.cpp │ │ ├── UNIX_Addr.h │ │ ├── UNIX_Addr.inl │ │ ├── UPIPE_Acceptor.cpp │ │ ├── UPIPE_Acceptor.h │ │ ├── UPIPE_Acceptor.inl │ │ ├── UPIPE_Addr.h │ │ ├── UPIPE_Connector.cpp │ │ ├── UPIPE_Connector.h │ │ ├── UPIPE_Connector.inl │ │ ├── UPIPE_Stream.cpp │ │ ├── UPIPE_Stream.h │ │ ├── UPIPE_Stream.inl │ │ ├── UTF16_Encoding_Converter.cpp │ │ ├── UTF16_Encoding_Converter.h │ │ ├── UTF16_Encoding_Converter.inl │ │ ├── UTF32_Encoding_Converter.cpp │ │ ├── UTF32_Encoding_Converter.h │ │ ├── UTF8_Encoding_Converter.cpp │ │ ├── UTF8_Encoding_Converter.h │ │ ├── UUID.cpp │ │ ├── UUID.h │ │ ├── UUID.inl │ │ ├── Unbounded_Queue.cpp │ │ ├── Unbounded_Queue.h │ │ ├── Unbounded_Queue.inl │ │ ├── Unbounded_Set.cpp │ │ ├── Unbounded_Set.h │ │ ├── Unbounded_Set.inl │ │ ├── Unbounded_Set_Ex.cpp │ │ ├── Unbounded_Set_Ex.h │ │ ├── Unbounded_Set_Ex.inl │ │ ├── Value_Ptr.h │ │ ├── Vector_T.cpp │ │ ├── Vector_T.h │ │ ├── Vector_T.inl │ │ ├── Version.h │ │ ├── Versioned_Namespace.h │ │ ├── WFMO_Reactor.cpp │ │ ├── WFMO_Reactor.h │ │ ├── WFMO_Reactor.inl │ │ ├── WIN32_Asynch_IO.cpp │ │ ├── WIN32_Asynch_IO.h │ │ ├── WIN32_Proactor.cpp │ │ ├── WIN32_Proactor.h │ │ ├── XML_Svc_Conf.cpp │ │ ├── XML_Svc_Conf.h │ │ ├── XML_Utils │ │ ├── ACE_XML_Utils.pc.in │ │ ├── XML.mpc │ │ ├── XMLSchema │ │ │ ├── Traversal.hpp │ │ │ ├── Traversal.ipp │ │ │ ├── TypeInfo.hpp │ │ │ ├── TypeInfo.ipp │ │ │ ├── TypeInfo.tpp │ │ │ ├── Types.hpp │ │ │ ├── Types.ipp │ │ │ ├── Writer.hpp │ │ │ ├── Writer.ipp │ │ │ └── id_map.hpp │ │ ├── XML_Error_Handler.cpp │ │ ├── XML_Error_Handler.h │ │ ├── XML_Helper.h │ │ ├── XML_Helper.tpp │ │ ├── XML_Schema_Resolver.cpp │ │ ├── XML_Schema_Resolver.h │ │ ├── XML_Schema_Resolver.tpp │ │ ├── XML_Typedefs.cpp │ │ ├── XML_Typedefs.h │ │ ├── XML_Utils_Export.h │ │ ├── XSCRT │ │ │ ├── Elements.hpp │ │ │ ├── ExtendedTypeInfo.hpp │ │ │ ├── ExtendedTypeInfo.ipp │ │ │ ├── Parser.hpp │ │ │ ├── Traversal.hpp │ │ │ ├── Traversal.tpp │ │ │ ├── Writer.hpp │ │ │ ├── XML.hpp │ │ │ └── XMLSchema.hpp │ │ ├── XercesString.cpp │ │ └── XercesString.h │ │ ├── XTI_ATM_Mcast.cpp │ │ ├── XTI_ATM_Mcast.h │ │ ├── XTI_ATM_Mcast.inl │ │ ├── XtReactor │ │ ├── ACE_XtReactor.pc.in │ │ ├── ACE_XtReactor_export.h │ │ ├── XtReactor.cpp │ │ ├── XtReactor.h │ │ └── ace_xtreactor.mpc │ │ ├── ace.mpc │ │ ├── ace.mwc │ │ ├── ace.rc │ │ ├── ace_for_tao.mpc │ │ ├── ace_message_table.bin │ │ ├── ace_wchar.cpp │ │ ├── ace_wchar.h │ │ ├── ace_wchar.inl │ │ ├── checked_iterator.h │ │ ├── codecs.mpb │ │ ├── config-WinCE.h │ │ ├── config-aix-5.x.h │ │ ├── config-aix-7.h │ │ ├── config-all.h │ │ ├── config-android.h │ │ ├── config-cygwin32.h │ │ ├── config-freebsd.h │ │ ├── config-g++-common.h │ │ ├── config-hpux-11.00.h │ │ ├── config-icc-common.h │ │ ├── config-integritySCA.h │ │ ├── config-kfreebsd.h │ │ ├── config-linux.h │ │ ├── config-lite.h │ │ ├── config-lynxos.h │ │ ├── config-macosx-iOS-hardware.h │ │ ├── config-macosx-iOS-simulator.h │ │ ├── config-macosx-leopard.h │ │ ├── config-macosx-lion.h │ │ ├── config-macosx-mavericks.h │ │ ├── config-macosx-mountainlion.h │ │ ├── config-macosx-panther.h │ │ ├── config-macosx-snowleopard.h │ │ ├── config-macosx-tiger.h │ │ ├── config-macosx-yosemite.h │ │ ├── config-macosx.h │ │ ├── config-macros.h │ │ ├── config-netbsd.h │ │ ├── config-openbsd.h │ │ ├── config-openvms.h │ │ ├── config-pharlap.h │ │ ├── config-posix-nonetworking.h │ │ ├── config-posix.h │ │ ├── config-qnx.h │ │ ├── config-rtems.h │ │ ├── config-suncc-common.h │ │ ├── config-sunos5.10.h │ │ ├── config-sunos5.11.h │ │ ├── config-sunos5.4-g++.h │ │ ├── config-sunos5.4-sunc++-4.x.h │ │ ├── config-sunos5.5.h │ │ ├── config-sunos5.6.h │ │ ├── config-sunos5.7.h │ │ ├── config-sunos5.8.h │ │ ├── config-sunos5.9.h │ │ ├── config-vxworks.h │ │ ├── config-vxworks6.4.h │ │ ├── config-vxworks6.5.h │ │ ├── config-vxworks6.6.h │ │ ├── config-vxworks6.7.h │ │ ├── config-vxworks6.8.h │ │ ├── config-vxworks6.9.h │ │ ├── config-win32-borland.h │ │ ├── config-win32-cegcc.h │ │ ├── config-win32-common.h │ │ ├── config-win32-dmc.h │ │ ├── config-win32-interix.h │ │ ├── config-win32-mingw.h │ │ ├── config-win32-mingw64.h │ │ ├── config-win32-msvc-10.h │ │ ├── config-win32-msvc-11.h │ │ ├── config-win32-msvc-12.h │ │ ├── config-win32-msvc-14.h │ │ ├── config-win32-msvc-7.h │ │ ├── config-win32-msvc-8.h │ │ ├── config-win32-msvc-9.h │ │ ├── config-win32-msvc.h │ │ ├── config-win32.h │ │ ├── config-windows.h │ │ ├── filecache.mpb │ │ ├── iosfwd.h │ │ ├── os_include │ │ ├── arpa │ │ │ └── os_inet.h │ │ ├── net │ │ │ └── os_if.h │ │ ├── netinet │ │ │ ├── os_in.h │ │ │ └── os_tcp.h │ │ ├── os_aio.h │ │ ├── os_assert.h │ │ ├── os_byteswap.h │ │ ├── os_complex.h │ │ ├── os_cpio.h │ │ ├── os_ctype.h │ │ ├── os_dirent.h │ │ ├── os_dlfcn.h │ │ ├── os_errno.h │ │ ├── os_fcntl.h │ │ ├── os_fenv.h │ │ ├── os_float.h │ │ ├── os_fmtmsg.h │ │ ├── os_fnmatch.h │ │ ├── os_ftw.h │ │ ├── os_glob.h │ │ ├── os_grp.h │ │ ├── os_iconv.h │ │ ├── os_ifaddrs.h │ │ ├── os_intrin.h │ │ ├── os_inttypes.h │ │ ├── os_iso646.h │ │ ├── os_kstat.h │ │ ├── os_langinfo.h │ │ ├── os_libgen.h │ │ ├── os_limits.h │ │ ├── os_local.h │ │ ├── os_math.h │ │ ├── os_monetary.h │ │ ├── os_mqueue.h │ │ ├── os_ndbm.h │ │ ├── os_netdb.h │ │ ├── os_nl_types.h │ │ ├── os_pdh.h │ │ ├── os_pdhmsg.h │ │ ├── os_poll.h │ │ ├── os_pthread.h │ │ ├── os_pwd.h │ │ ├── os_regex.h │ │ ├── os_sched.h │ │ ├── os_search.h │ │ ├── os_semaphore.h │ │ ├── os_setjmp.h │ │ ├── os_signal.h │ │ ├── os_spawn.h │ │ ├── os_stdarg.h │ │ ├── os_stdbool.h │ │ ├── os_stddef.h │ │ ├── os_stdint.h │ │ ├── os_stdio.h │ │ ├── os_stdlib.h │ │ ├── os_string.h │ │ ├── os_strings.h │ │ ├── os_stropts.h │ │ ├── os_syslog.h │ │ ├── os_tar.h │ │ ├── os_termios.h │ │ ├── os_tgmath.h │ │ ├── os_time.h │ │ ├── os_trace.h │ │ ├── os_typeinfo.h │ │ ├── os_ucontext.h │ │ ├── os_ulimit.h │ │ ├── os_unistd.h │ │ ├── os_utime.h │ │ ├── os_utmpx.h │ │ ├── os_wchar.h │ │ ├── os_wctype.h │ │ ├── os_wordexp.h │ │ └── sys │ │ │ ├── os_ipc.h │ │ │ ├── os_loadavg.h │ │ │ ├── os_mman.h │ │ │ ├── os_msg.h │ │ │ ├── os_pstat.h │ │ │ ├── os_resource.h │ │ │ ├── os_select.h │ │ │ ├── os_sem.h │ │ │ ├── os_shm.h │ │ │ ├── os_socket.h │ │ │ ├── os_stat.h │ │ │ ├── os_statvfs.h │ │ │ ├── os_sysctl.h │ │ │ ├── os_sysinfo.h │ │ │ ├── os_time.h │ │ │ ├── os_timeb.h │ │ │ ├── os_times.h │ │ │ ├── os_types.h │ │ │ ├── os_uio.h │ │ │ ├── os_un.h │ │ │ ├── os_utsname.h │ │ │ └── os_wait.h │ │ ├── other.mpb │ │ ├── post.h │ │ ├── pre.h │ │ ├── streams.h │ │ ├── svc_export.h │ │ ├── svcconf.mpb │ │ ├── svcconfgen.mpc │ │ ├── token.mpb │ │ └── uuid.mpb ├── bzip2 │ ├── CMakeLists.txt │ ├── LICENSE │ ├── README │ ├── blocksort.c │ ├── bzlib.c │ ├── bzlib.h │ ├── bzlib_private.h │ ├── compress.c │ ├── crctable.c │ ├── decompress.c │ ├── huffman.c │ └── randtable.c ├── g3dlite │ ├── CMakeLists.txt │ ├── G3D-v8.0_hotfix1.diff │ ├── G3D-v8.0_hotfix2.diff │ ├── G3D-v8.0_hotfix3.diff │ ├── G3D-v8.0_hotfix4.diff │ ├── G3D-v8.0_hotfix5.diff │ ├── G3D-v8.0_hotfix6.diff │ ├── G3D-v8.0_hotfix7.diff │ ├── G3D-v8.0_hotfix8.diff │ ├── Readme.txt │ ├── include │ │ └── G3D │ │ │ ├── AABox.h │ │ │ ├── Any.h │ │ │ ├── AnyVal.h │ │ │ ├── AreaMemoryManager.h │ │ │ ├── Array.h │ │ │ ├── AtomicInt32.h │ │ │ ├── BinaryFormat.h │ │ │ ├── BinaryInput.h │ │ │ ├── BinaryOutput.h │ │ │ ├── BoundsTrait.h │ │ │ ├── Box.h │ │ │ ├── Box2D.h │ │ │ ├── BumpMapPreprocess.h │ │ │ ├── Capsule.h │ │ │ ├── CollisionDetection.h │ │ │ ├── Color1.h │ │ │ ├── Color1uint8.h │ │ │ ├── Color3.h │ │ │ ├── Color3uint8.h │ │ │ ├── Color4.h │ │ │ ├── Color4uint8.h │ │ │ ├── Cone.h │ │ │ ├── ConvexPolyhedron.h │ │ │ ├── CoordinateFrame.h │ │ │ ├── Crypto.h │ │ │ ├── Cylinder.h │ │ │ ├── EqualsTrait.h │ │ │ ├── FileSystem.h │ │ │ ├── G3D.h │ │ │ ├── G3DAll.h │ │ │ ├── G3DGameUnits.h │ │ │ ├── GCamera.h │ │ │ ├── GImage.h │ │ │ ├── GLight.h │ │ │ ├── GMutex.h │ │ │ ├── GThread.h │ │ │ ├── GUniqueID.h │ │ │ ├── HashTrait.h │ │ │ ├── Image1.h │ │ │ ├── Image1uint8.h │ │ │ ├── Image3.h │ │ │ ├── Image3uint8.h │ │ │ ├── Image4.h │ │ │ ├── Image4uint8.h │ │ │ ├── ImageFormat.h │ │ │ ├── Intersect.h │ │ │ ├── KDTree.h │ │ │ ├── Line.h │ │ │ ├── LineSegment.h │ │ │ ├── Log.h │ │ │ ├── Map2D.h │ │ │ ├── Matrix.h │ │ │ ├── Matrix2.h │ │ │ ├── Matrix3.h │ │ │ ├── Matrix4.h │ │ │ ├── MemoryManager.h │ │ │ ├── MeshAlg.h │ │ │ ├── MeshBuilder.h │ │ │ ├── NetAddress.h │ │ │ ├── NetworkDevice.h │ │ │ ├── ParseError.h │ │ │ ├── PhysicsFrame.h │ │ │ ├── PhysicsFrameSpline.h │ │ │ ├── Plane.h │ │ │ ├── PointHashGrid.h │ │ │ ├── PointKDTree.h │ │ │ ├── Pointer.h │ │ │ ├── PositionTrait.h │ │ │ ├── PrecomputedRandom.h │ │ │ ├── Quat.h │ │ │ ├── Queue.h │ │ │ ├── Random.h │ │ │ ├── Ray.h │ │ │ ├── Rect2D.h │ │ │ ├── ReferenceCount.h │ │ │ ├── RegistryUtil.h │ │ │ ├── Set.h │ │ │ ├── SmallArray.h │ │ │ ├── Sphere.h │ │ │ ├── Spline.h │ │ │ ├── Stopwatch.h │ │ │ ├── System.h │ │ │ ├── Table.h │ │ │ ├── TextInput.h │ │ │ ├── TextOutput.h │ │ │ ├── ThreadSet.h │ │ │ ├── Triangle.h │ │ │ ├── UprightFrame.h │ │ │ ├── Vector2.h │ │ │ ├── Vector2int16.h │ │ │ ├── Vector3.h │ │ │ ├── Vector3int16.h │ │ │ ├── Vector3int32.h │ │ │ ├── Vector4.h │ │ │ ├── Vector4int8.h │ │ │ ├── WeakCache.h │ │ │ ├── Welder.h │ │ │ ├── WrapMode.h │ │ │ ├── XML.h │ │ │ ├── constants.h │ │ │ ├── debug.h │ │ │ ├── debugAssert.h │ │ │ ├── debugPrintf.h │ │ │ ├── enumclass.h │ │ │ ├── fileutils.h │ │ │ ├── filter.h │ │ │ ├── format.h │ │ │ ├── g3dfnmatch.h │ │ │ ├── g3dmath.h │ │ │ ├── netheaders.h │ │ │ ├── networkHelpers.h │ │ │ ├── platform.h │ │ │ ├── prompt.h │ │ │ ├── serialize.h │ │ │ ├── splinefunc.h │ │ │ ├── stringutils.h │ │ │ ├── uint128.h │ │ │ ├── units.h │ │ │ └── vectorMath.h │ └── source │ │ ├── AABox.cpp │ │ ├── Any.cpp │ │ ├── AnyVal.cpp │ │ ├── AreaMemoryManager.cpp │ │ ├── BinaryFormat.cpp │ │ ├── BinaryInput.cpp │ │ ├── BinaryOutput.cpp │ │ ├── Box.cpp │ │ ├── Box2D.cpp │ │ ├── BumpMapPreprocess.cpp │ │ ├── Capsule.cpp │ │ ├── CollisionDetection.cpp │ │ ├── Color1.cpp │ │ ├── Color1uint8.cpp │ │ ├── Color3.cpp │ │ ├── Color3uint8.cpp │ │ ├── Color4.cpp │ │ ├── Color4uint8.cpp │ │ ├── Cone.cpp │ │ ├── ConvexPolyhedron.cpp │ │ ├── CoordinateFrame.cpp │ │ ├── Crypto.cpp │ │ ├── Crypto_md5.cpp │ │ ├── Cylinder.cpp │ │ ├── FileSystem.cpp │ │ ├── GCamera.cpp │ │ ├── GImage.cpp │ │ ├── GImage_bayer.cpp │ │ ├── GImage_bmp.cpp │ │ ├── GImage_jpeg.cpp │ │ ├── GImage_png.cpp │ │ ├── GImage_ppm.cpp │ │ ├── GImage_tga.cpp │ │ ├── GLight.cpp │ │ ├── GThread.cpp │ │ ├── GUniqueID.cpp │ │ ├── Image1.cpp │ │ ├── Image1uint8.cpp │ │ ├── Image3.cpp │ │ ├── Image3uint8.cpp │ │ ├── Image4.cpp │ │ ├── Image4uint8.cpp │ │ ├── ImageFormat.cpp │ │ ├── ImageFormat_convert.cpp │ │ ├── Intersect.cpp │ │ ├── Line.cpp │ │ ├── LineSegment.cpp │ │ ├── Log.cpp │ │ ├── Matrix.cpp │ │ ├── Matrix3.cpp │ │ ├── Matrix4.cpp │ │ ├── MemoryManager.cpp │ │ ├── MeshAlg.cpp │ │ ├── MeshAlgAdjacency.cpp │ │ ├── MeshAlgWeld.cpp │ │ ├── MeshBuilder.cpp │ │ ├── NetAddress.cpp │ │ ├── NetworkDevice.cpp │ │ ├── PhysicsFrame.cpp │ │ ├── PhysicsFrameSpline.cpp │ │ ├── Plane.cpp │ │ ├── PrecomputedRandom.cpp │ │ ├── Quat.cpp │ │ ├── Random.cpp │ │ ├── Ray.cpp │ │ ├── Rect2D.cpp │ │ ├── ReferenceCount.cpp │ │ ├── RegistryUtil.cpp │ │ ├── Sphere.cpp │ │ ├── SplineBase.cpp │ │ ├── Stopwatch.cpp │ │ ├── System.cpp │ │ ├── TextInput.cpp │ │ ├── TextOutput.cpp │ │ ├── ThreadSet.cpp │ │ ├── Triangle.cpp │ │ ├── UprightFrame.cpp │ │ ├── Vector2.cpp │ │ ├── Vector2int16.cpp │ │ ├── Vector3.cpp │ │ ├── Vector3int16.cpp │ │ ├── Vector3int32.cpp │ │ ├── Vector4.cpp │ │ ├── Vector4int8.cpp │ │ ├── Welder.cpp │ │ ├── WinMain.cpp │ │ ├── XML.cpp │ │ ├── constants.cpp │ │ ├── debugAssert.cpp │ │ ├── fileutils.cpp │ │ ├── filter.cpp │ │ ├── format.cpp │ │ ├── g3dfnmatch.cpp │ │ ├── g3dmath.cpp │ │ ├── license.cpp │ │ ├── prompt.cpp │ │ ├── stringutils.cpp │ │ └── uint128.cpp ├── gsoap │ ├── CMakeLists.txt │ ├── gsoap.stub │ ├── soapC.cpp │ ├── soapH.h │ ├── soapServer.cpp │ ├── soapStub.h │ ├── stdsoap2.cpp │ ├── stdsoap2.h │ ├── tc_changes.diff │ └── tc_upgrades.txt ├── jemalloc │ ├── CMakeLists.txt │ ├── COPYING │ ├── ChangeLog │ ├── README │ ├── TC_NOTE.txt │ ├── VERSION │ ├── include │ │ ├── jemalloc │ │ │ ├── internal │ │ │ │ ├── arena.h │ │ │ │ ├── atomic.h │ │ │ │ ├── base.h │ │ │ │ ├── bitmap.h │ │ │ │ ├── chunk.h │ │ │ │ ├── chunk_dss.h │ │ │ │ ├── chunk_mmap.h │ │ │ │ ├── ckh.h │ │ │ │ ├── ctl.h │ │ │ │ ├── extent.h │ │ │ │ ├── hash.h │ │ │ │ ├── huge.h │ │ │ │ ├── jemalloc_internal.h │ │ │ │ ├── mb.h │ │ │ │ ├── mutex.h │ │ │ │ ├── private_namespace.h │ │ │ │ ├── prng.h │ │ │ │ ├── prof.h │ │ │ │ ├── ql.h │ │ │ │ ├── qr.h │ │ │ │ ├── quarantine.h │ │ │ │ ├── rb.h │ │ │ │ ├── rtree.h │ │ │ │ ├── size_classes.h │ │ │ │ ├── stats.h │ │ │ │ ├── tcache.h │ │ │ │ ├── tsd.h │ │ │ │ └── util.h │ │ │ └── jemalloc.h │ │ └── msvc_compat │ │ │ ├── inttypes.h │ │ │ ├── stdbool.h │ │ │ ├── stdint.h │ │ │ └── strings.h │ ├── jemalloc_defs.h.in.cmake │ └── src │ │ ├── arena.c │ │ ├── atomic.c │ │ ├── base.c │ │ ├── bitmap.c │ │ ├── chunk.c │ │ ├── chunk_dss.c │ │ ├── chunk_mmap.c │ │ ├── ckh.c │ │ ├── ctl.c │ │ ├── extent.c │ │ ├── hash.c │ │ ├── huge.c │ │ ├── jemalloc.c │ │ ├── mb.c │ │ ├── mutex.c │ │ ├── prof.c │ │ ├── quarantine.c │ │ ├── rtree.c │ │ ├── stats.c │ │ ├── tcache.c │ │ ├── tsd.c │ │ ├── util.c │ │ └── zone.c ├── lualib │ ├── CMakeLists.txt │ ├── lapi.c │ ├── lapi.h │ ├── lauxlib.c │ ├── lauxlib.h │ ├── lbaselib.c │ ├── lbitlib.c │ ├── lcode.c │ ├── lcode.h │ ├── lcorolib.c │ ├── lctype.c │ ├── lctype.h │ ├── ldblib.c │ ├── ldebug.c │ ├── ldebug.h │ ├── ldo.c │ ├── ldo.h │ ├── ldump.c │ ├── lfunc.c │ ├── lfunc.h │ ├── lgc.c │ ├── lgc.h │ ├── linit.c │ ├── liolib.c │ ├── llex.c │ ├── llex.h │ ├── llimits.h │ ├── lmathlib.c │ ├── lmem.c │ ├── lmem.h │ ├── loadlib.c │ ├── lobject.c │ ├── lobject.h │ ├── lopcodes.c │ ├── lopcodes.h │ ├── loslib.c │ ├── lparser.c │ ├── lparser.h │ ├── lstate.c │ ├── lstate.h │ ├── lstring.c │ ├── lstring.h │ ├── lstrlib.c │ ├── ltable.c │ ├── ltable.h │ ├── ltablib.c │ ├── ltm.c │ ├── ltm.h │ ├── lua.c │ ├── lua.h │ ├── lua.hpp │ ├── luaconf.h │ ├── lualib.h │ ├── lundump.c │ ├── lundump.h │ ├── lvm.c │ ├── lvm.h │ ├── lzio.c │ └── lzio.h ├── mysqllite │ ├── CMakeLists.txt │ ├── COPYING │ ├── README │ ├── VERSION │ ├── cmake │ │ ├── character_sets.cmake │ │ ├── mysql_version.cmake │ │ ├── os │ │ │ ├── Windows.cmake │ │ │ └── WindowsCache.cmake │ │ ├── stack_direction.c │ │ └── versioninfo.rc.in │ ├── config.h.cmake │ ├── configure.cmake │ ├── dbug │ │ ├── dbug.c │ │ ├── dbug_long.h │ │ ├── monty.doc │ │ └── user.r │ ├── include │ │ ├── decimal.h │ │ ├── errmsg.h │ │ ├── internal │ │ │ ├── atomic │ │ │ │ ├── gcc_builtins.h │ │ │ │ ├── generic-msvc.h │ │ │ │ ├── nolock.h │ │ │ │ ├── rwlock.h │ │ │ │ ├── solaris.h │ │ │ │ └── x86-gcc.h │ │ │ ├── base64.h │ │ │ ├── hash.h │ │ │ ├── lf.h │ │ │ ├── my_aes.h │ │ │ ├── my_alarm.h │ │ │ ├── my_atomic.h │ │ │ ├── my_base.h │ │ │ ├── my_bit.h │ │ │ ├── my_bitmap.h │ │ │ ├── my_handler.h │ │ │ ├── my_libwrap.h │ │ │ ├── my_md5.h │ │ │ ├── my_nosys.h │ │ │ ├── my_rdtsc.h │ │ │ ├── my_stacktrace.h │ │ │ ├── my_time.h │ │ │ ├── my_tree.h │ │ │ ├── my_uctype.h │ │ │ ├── myisampack.h │ │ │ ├── mysql_version.h.in │ │ │ ├── mysys_err.h │ │ │ ├── password.h │ │ │ ├── probes_mysql.h │ │ │ ├── probes_mysql_nodtrace.h │ │ │ ├── queues.h │ │ │ ├── rijndael.h │ │ │ ├── sha1.h │ │ │ ├── t_ctype.h │ │ │ ├── thr_alarm.h │ │ │ ├── thr_lock.h │ │ │ └── violite.h │ │ ├── keycache.h │ │ ├── m_ctype.h │ │ ├── m_string.h │ │ ├── my_alloc.h │ │ ├── my_attribute.h │ │ ├── my_compiler.h │ │ ├── my_dbug.h │ │ ├── my_dir.h │ │ ├── my_getopt.h │ │ ├── my_global.h │ │ ├── my_list.h │ │ ├── my_net.h │ │ ├── my_pthread.h │ │ ├── my_sys.h │ │ ├── my_xml.h │ │ ├── mysql.h │ │ ├── mysql │ │ │ ├── client_plugin.h │ │ │ ├── innodb_priv.h │ │ │ ├── plugin.h │ │ │ ├── plugin_audit.h │ │ │ ├── plugin_auth.h │ │ │ ├── plugin_auth_common.h │ │ │ ├── plugin_ftparser.h │ │ │ ├── psi │ │ │ │ ├── mysql_file.h │ │ │ │ ├── mysql_thread.h │ │ │ │ ├── psi.h │ │ │ │ ├── psi_abi_v1.h │ │ │ │ └── psi_abi_v2.h │ │ │ ├── service_my_snprintf.h │ │ │ ├── service_thd_alloc.h │ │ │ ├── service_thd_wait.h │ │ │ ├── service_thread_scheduler.h │ │ │ └── services.h │ │ ├── mysql_com.h │ │ ├── mysql_embed.h │ │ ├── mysql_time.h │ │ ├── mysqld_ername.h │ │ ├── mysqld_error.h │ │ ├── plugin.h │ │ ├── plugin_audit.h │ │ ├── plugin_ftparser.h │ │ ├── sql_common.h │ │ ├── sql_state.h │ │ ├── sslopt-case.h │ │ ├── sslopt-longopts.h │ │ ├── sslopt-vars.h │ │ └── typelib.h │ ├── libmysql │ │ ├── client_settings.h │ │ ├── errmsg.c │ │ ├── get_password.c │ │ ├── libmysql.c │ │ └── libmysql_exports.def │ ├── mysys │ │ ├── ChangeLog │ │ ├── array.c │ │ ├── base64.c │ │ ├── charset-def.c │ │ ├── charset.c │ │ ├── checksum.c │ │ ├── default.c │ │ ├── errors.c │ │ ├── hash.c │ │ ├── lf_alloc-pin.c │ │ ├── lf_dynarray.c │ │ ├── lf_hash.c │ │ ├── list.c │ │ ├── md5.c │ │ ├── mf_arr_appstr.c │ │ ├── mf_cache.c │ │ ├── mf_dirname.c │ │ ├── mf_fn_ext.c │ │ ├── mf_format.c │ │ ├── mf_getdate.c │ │ ├── mf_iocache.c │ │ ├── mf_iocache2.c │ │ ├── mf_keycache.c │ │ ├── mf_keycaches.c │ │ ├── mf_loadpath.c │ │ ├── mf_pack.c │ │ ├── mf_path.c │ │ ├── mf_qsort.c │ │ ├── mf_qsort2.c │ │ ├── mf_radix.c │ │ ├── mf_same.c │ │ ├── mf_sort.c │ │ ├── mf_soundex.c │ │ ├── mf_tempdir.c │ │ ├── mf_tempfile.c │ │ ├── mf_unixpath.c │ │ ├── mf_wcomp.c │ │ ├── mulalloc.c │ │ ├── my_access.c │ │ ├── my_aes.c │ │ ├── my_alarm.c │ │ ├── my_alloc.c │ │ ├── my_atomic.c │ │ ├── my_bit.c │ │ ├── my_bitmap.c │ │ ├── my_chsize.c │ │ ├── my_compress.c │ │ ├── my_conio.c │ │ ├── my_copy.c │ │ ├── my_create.c │ │ ├── my_delete.c │ │ ├── my_div.c │ │ ├── my_error.c │ │ ├── my_file.c │ │ ├── my_fopen.c │ │ ├── my_fstream.c │ │ ├── my_gethostbyname.c │ │ ├── my_gethwaddr.c │ │ ├── my_getncpus.c │ │ ├── my_getopt.c │ │ ├── my_getpagesize.c │ │ ├── my_getsystime.c │ │ ├── my_getwd.c │ │ ├── my_handler.c │ │ ├── my_handler_errors.h │ │ ├── my_init.c │ │ ├── my_largepage.c │ │ ├── my_lib.c │ │ ├── my_libwrap.c │ │ ├── my_lock.c │ │ ├── my_lockmem.c │ │ ├── my_malloc.c │ │ ├── my_memmem.c │ │ ├── my_mess.c │ │ ├── my_mkdir.c │ │ ├── my_mmap.c │ │ ├── my_new.cc │ │ ├── my_once.c │ │ ├── my_open.c │ │ ├── my_port.c │ │ ├── my_pread.c │ │ ├── my_pthread.c │ │ ├── my_quick.c │ │ ├── my_rdtsc.c │ │ ├── my_read.c │ │ ├── my_redel.c │ │ ├── my_rename.c │ │ ├── my_seek.c │ │ ├── my_sleep.c │ │ ├── my_static.c │ │ ├── my_static.h │ │ ├── my_symlink.c │ │ ├── my_symlink2.c │ │ ├── my_sync.c │ │ ├── my_thr_init.c │ │ ├── my_wincond.c │ │ ├── my_windac.c │ │ ├── my_winerr.c │ │ ├── my_winfile.c │ │ ├── my_winthread.c │ │ ├── my_write.c │ │ ├── mysys_priv.h │ │ ├── ptr_cmp.c │ │ ├── queues.c │ │ ├── rijndael.c │ │ ├── sha1.c │ │ ├── stacktrace.c │ │ ├── string.c │ │ ├── thr_alarm.c │ │ ├── thr_lock.c │ │ ├── thr_mutex.c │ │ ├── thr_rwlock.c │ │ ├── tree.c │ │ └── typelib.c │ ├── sql-common │ │ ├── client.c │ │ ├── client_plugin.c │ │ ├── my_time.c │ │ └── pack.c │ ├── sql │ │ ├── net_serv.cc │ │ └── password.c │ ├── strings │ │ ├── CHARSET_INFO.txt │ │ ├── README │ │ ├── bchange.c │ │ ├── bmove_upp.c │ │ ├── ctype-big5.c │ │ ├── ctype-bin.c │ │ ├── ctype-cp932.c │ │ ├── ctype-czech.c │ │ ├── ctype-euc_kr.c │ │ ├── ctype-extra.c │ │ ├── ctype-gb2312.c │ │ ├── ctype-gbk.c │ │ ├── ctype-latin1.c │ │ ├── ctype-mb.c │ │ ├── ctype-simple.c │ │ ├── ctype-tis620.c │ │ ├── ctype-uca.c │ │ ├── ctype-ucs2.c │ │ ├── ctype-utf8.c │ │ ├── ctype-win1250ch.c │ │ ├── ctype.c │ │ ├── decimal.c │ │ ├── dtoa.c │ │ ├── int2str.c │ │ ├── is_prefix.c │ │ ├── latin2.def │ │ ├── llstr.c │ │ ├── longlong2str.c │ │ ├── my_strchr.c │ │ ├── my_strtoll10.c │ │ ├── my_vsnprintf.c │ │ ├── str2int.c │ │ ├── str_alloc.c │ │ ├── strappend.c │ │ ├── strcend.c │ │ ├── strcont.c │ │ ├── strend.c │ │ ├── strfill.c │ │ ├── strmake.c │ │ ├── strmov.c │ │ ├── strnlen.c │ │ ├── strnmov.c │ │ ├── strxmov.c │ │ ├── strxnmov.c │ │ ├── t_ctype.h │ │ └── xml.c │ └── vio │ │ ├── vio.c │ │ ├── vio_priv.h │ │ ├── viosocket.c │ │ ├── viossl.c │ │ └── viosslfactories.c ├── recastnavigation │ ├── CMakeLists.txt │ ├── Detour │ │ ├── CMakeLists.txt │ │ ├── Include │ │ │ ├── DetourAlloc.h │ │ │ ├── DetourAssert.h │ │ │ ├── DetourCommon.h │ │ │ ├── DetourMath.h │ │ │ ├── DetourNavMesh.h │ │ │ ├── DetourNavMeshBuilder.h │ │ │ ├── DetourNavMeshQuery.h │ │ │ ├── DetourNode.h │ │ │ └── DetourStatus.h │ │ └── Source │ │ │ ├── DetourAlloc.cpp │ │ │ ├── DetourCommon.cpp │ │ │ ├── DetourNavMesh.cpp │ │ │ ├── DetourNavMeshBuilder.cpp │ │ │ ├── DetourNavMeshQuery.cpp │ │ │ └── DetourNode.cpp │ ├── License.txt │ ├── README.md │ ├── Recast │ │ ├── CMakeLists.txt │ │ ├── Include │ │ │ ├── Recast.h │ │ │ ├── RecastAlloc.h │ │ │ └── RecastAssert.h │ │ └── Source │ │ │ ├── Recast.cpp │ │ │ ├── RecastAlloc.cpp │ │ │ ├── RecastArea.cpp │ │ │ ├── RecastContour.cpp │ │ │ ├── RecastFilter.cpp │ │ │ ├── RecastLayers.cpp │ │ │ ├── RecastMesh.cpp │ │ │ ├── RecastMeshDetail.cpp │ │ │ ├── RecastRasterization.cpp │ │ │ └── RecastRegion.cpp │ └── recastnavigation.diff ├── utf8cpp │ ├── utf8.h │ └── utf8 │ │ ├── checked.h │ │ ├── core.h │ │ └── unchecked.h └── zlib │ ├── CMakeLists.txt │ ├── adler32.c │ ├── compress.c │ ├── crc32.c │ ├── crc32.h │ ├── deflate.c │ ├── deflate.h │ ├── example.c │ ├── gzclose.c │ ├── gzguts.h │ ├── gzlib.c │ ├── gzread.c │ ├── gzwrite.c │ ├── infback.c │ ├── inffast.c │ ├── inffast.h │ ├── inffixed.h │ ├── inflate.c │ ├── inflate.h │ ├── inftrees.c │ ├── inftrees.h │ ├── minigzip.c │ ├── trees.c │ ├── trees.h │ ├── uncompr.c │ ├── zconf.h │ ├── zlib.h │ ├── zutil.c │ └── zutil.h ├── resources └── API │ └── api.php ├── revision.h.in.cmake ├── sql ├── battle for undercity alliance.sql ├── battle for undercity horde.sql ├── battle for undercity universal.sql ├── dump │ └── dump.zip ├── misc.sql └── updates │ ├── auth │ └── YYYY_MM_DD_XX_placeholder │ ├── characters │ └── YYYY_MM_DD_XX_placeholder │ └── world │ ├── 2017_02_19_01_world.sql │ └── _YYYY_MM_DD_XX_placeholder ├── src ├── CMakeLists.txt ├── LuaEngine │ ├── AuraMethods.cpp │ ├── AuraMethods.h │ ├── CMakeLists.txt │ ├── GameObjectMethods.cpp │ ├── GameObjectMethods.h │ ├── GlobalMethods.h │ ├── GroupMethods.h │ ├── GuildMethods.h │ ├── HookMgr.cpp │ ├── HookMgr.h │ ├── Includes.h │ ├── ItemMethods.h │ ├── LuaEngine.cpp │ ├── LuaEngine.h │ ├── LuaFunctions.cpp │ ├── LuaHooks.cpp │ ├── MapMethods.h │ ├── QueryMethods.h │ ├── QuestMethods.h │ ├── SpellMethods.h │ ├── UnitMethods.cpp │ ├── UnitMethods.h │ └── WorldPacketMethods.h ├── genrev │ └── CMakeLists.txt └── server │ ├── CMakeLists.txt │ ├── authserver │ ├── Authentication │ │ ├── AuthCodes.cpp │ │ ├── AuthCodes.h │ │ ├── TOTP.cpp │ │ └── TOTP.h │ ├── CMakeLists.txt │ ├── Main.cpp │ ├── PrecompiledHeaders │ │ ├── authPCH.cpp │ │ └── authPCH.h │ ├── Realms │ │ ├── RealmList.cpp │ │ └── RealmList.h │ ├── Server │ │ ├── AuthSocket.cpp │ │ ├── AuthSocket.h │ │ ├── RealmAcceptor.h │ │ ├── RealmSocket.cpp │ │ └── RealmSocket.h │ ├── authserver.conf.dist │ ├── authserver.ico │ ├── authserver.rc │ └── resource.h │ ├── collision │ ├── BoundingIntervalHierarchy.cpp │ ├── BoundingIntervalHierarchy.h │ ├── BoundingIntervalHierarchyWrapper.h │ ├── CMakeLists.txt │ ├── DynamicTree.cpp │ ├── DynamicTree.h │ ├── Management │ │ ├── IMMAPManager.h │ │ ├── IVMapManager.h │ │ ├── MMapFactory.cpp │ │ ├── MMapFactory.h │ │ ├── MMapManager.cpp │ │ ├── MMapManager.h │ │ ├── VMapFactory.cpp │ │ ├── VMapFactory.h │ │ ├── VMapManager2.cpp │ │ └── VMapManager2.h │ ├── Maps │ │ ├── MapTree.cpp │ │ ├── MapTree.h │ │ ├── TileAssembler.cpp │ │ └── TileAssembler.h │ ├── Models │ │ ├── GameObjectModel.cpp │ │ ├── GameObjectModel.h │ │ ├── ModelInstance.cpp │ │ ├── ModelInstance.h │ │ ├── WorldModel.cpp │ │ └── WorldModel.h │ ├── PrecompiledHeaders │ │ ├── collisionPCH.cpp │ │ └── collisionPCH.h │ ├── RegularGrid.h │ ├── VMapDefinitions.h │ └── VMapTools.h │ ├── game │ ├── AI │ │ ├── CoreAI │ │ │ ├── CombatAI.cpp │ │ │ ├── CombatAI.h │ │ │ ├── GameObjectAI.cpp │ │ │ ├── GameObjectAI.h │ │ │ ├── GuardAI.cpp │ │ │ ├── GuardAI.h │ │ │ ├── PassiveAI.cpp │ │ │ ├── PassiveAI.h │ │ │ ├── PetAI.cpp │ │ │ ├── PetAI.h │ │ │ ├── ReactorAI.cpp │ │ │ ├── ReactorAI.h │ │ │ ├── TotemAI.cpp │ │ │ ├── TotemAI.h │ │ │ ├── UnitAI.cpp │ │ │ └── UnitAI.h │ │ ├── CreatureAI.cpp │ │ ├── CreatureAI.h │ │ ├── CreatureAIFactory.h │ │ ├── CreatureAIImpl.h │ │ ├── CreatureAIRegistry.cpp │ │ ├── CreatureAIRegistry.h │ │ ├── CreatureAISelector.cpp │ │ ├── CreatureAISelector.h │ │ ├── ScriptedAI │ │ │ ├── ScriptedCreature.cpp │ │ │ ├── ScriptedCreature.h │ │ │ ├── ScriptedEscortAI.cpp │ │ │ ├── ScriptedEscortAI.h │ │ │ ├── ScriptedFollowerAI.cpp │ │ │ ├── ScriptedFollowerAI.h │ │ │ └── ScriptedGossip.h │ │ └── SmartScripts │ │ │ ├── SmartAI.cpp │ │ │ ├── SmartAI.h │ │ │ ├── SmartScript.cpp │ │ │ ├── SmartScript.h │ │ │ ├── SmartScriptMgr.cpp │ │ │ └── SmartScriptMgr.h │ ├── API │ │ ├── ArenaAPI.cpp │ │ ├── ArenaAPI.h │ │ ├── BattlegroundAPI.cpp │ │ ├── BattlegroundAPI.h │ │ ├── DungeonAPI.cpp │ │ ├── DungeonAPI.h │ │ ├── PlayerAPI.cpp │ │ ├── PlayerAPI.h │ │ ├── RaidAPI.cpp │ │ └── RaidAPI.h │ ├── AccountControl │ │ └── AccountControl.cpp │ ├── Accounts │ │ ├── AccountMgr.cpp │ │ └── AccountMgr.h │ ├── Achievements │ │ ├── AchievementMgr.cpp │ │ └── AchievementMgr.h │ ├── Addons │ │ ├── AddonMgr.cpp │ │ └── AddonMgr.h │ ├── Anticheat │ │ ├── AnticheatData.cpp │ │ ├── AnticheatData.h │ │ ├── AnticheatMgr.cpp │ │ ├── AnticheatMgr.h │ │ ├── AnticheatScripts.cpp │ │ ├── AnticheatScripts.h │ │ ├── MovementChecker.cpp │ │ └── MovementChecker.h │ ├── ArenaSpectator │ │ └── ArenaSpectator.h │ ├── AuctionHouse │ │ ├── AuctionHouseMgr.cpp │ │ └── AuctionHouseMgr.h │ ├── AuctionHouseBot │ │ ├── AuctionHouseBot.cpp │ │ ├── AuctionHouseBot.h │ │ ├── AuctionHouseBotBuyer.cpp │ │ ├── AuctionHouseBotBuyer.h │ │ ├── AuctionHouseBotSeller.cpp │ │ └── AuctionHouseBotSeller.h │ ├── Battlefield │ │ ├── Battlefield.cpp │ │ ├── Battlefield.h │ │ ├── BattlefieldHandler.cpp │ │ ├── BattlefieldMgr.cpp │ │ ├── BattlefieldMgr.h │ │ └── Zones │ │ │ ├── BattlefieldWG.cpp │ │ │ └── BattlefieldWG.h │ ├── Battlegrounds │ │ ├── ArenaTeam.cpp │ │ ├── ArenaTeam.h │ │ ├── ArenaTeamMgr.cpp │ │ ├── ArenaTeamMgr.h │ │ ├── Battleground.cpp │ │ ├── Battleground.h │ │ ├── BattlegroundMgr.cpp │ │ ├── BattlegroundMgr.h │ │ ├── BattlegroundQueue.cpp │ │ ├── BattlegroundQueue.h │ │ └── Zones │ │ │ ├── BattlegroundAB.cpp │ │ │ ├── BattlegroundAB.h │ │ │ ├── BattlegroundAV.cpp │ │ │ ├── BattlegroundAV.h │ │ │ ├── BattlegroundBE.cpp │ │ │ ├── BattlegroundBE.h │ │ │ ├── BattlegroundDS.cpp │ │ │ ├── BattlegroundDS.h │ │ │ ├── BattlegroundEY.cpp │ │ │ ├── BattlegroundEY.h │ │ │ ├── BattlegroundIC.cpp │ │ │ ├── BattlegroundIC.h │ │ │ ├── BattlegroundNA.cpp │ │ │ ├── BattlegroundNA.h │ │ │ ├── BattlegroundRL.cpp │ │ │ ├── BattlegroundRL.h │ │ │ ├── BattlegroundRV.cpp │ │ │ ├── BattlegroundRV.h │ │ │ ├── BattlegroundSA.cpp │ │ │ ├── BattlegroundSA.h │ │ │ ├── BattlegroundWS.cpp │ │ │ └── BattlegroundWS.h │ ├── CMakeLists.txt │ ├── Calendar │ │ ├── CalendarMgr.cpp │ │ └── CalendarMgr.h │ ├── Character │ │ ├── CharacterMgr.cpp │ │ └── CharacterMgr.h │ ├── Chat │ │ ├── Channels │ │ │ ├── Channel.cpp │ │ │ ├── Channel.h │ │ │ ├── ChannelMgr.cpp │ │ │ └── ChannelMgr.h │ │ ├── Chat.cpp │ │ ├── Chat.h │ │ ├── ChatLink.cpp │ │ └── ChatLink.h │ ├── Combat │ │ ├── HostileRefManager.cpp │ │ ├── HostileRefManager.h │ │ ├── ThreatManager.cpp │ │ ├── ThreatManager.h │ │ └── UnitEvents.h │ ├── Conditions │ │ ├── ConditionMgr.cpp │ │ ├── ConditionMgr.h │ │ ├── DisableMgr.cpp │ │ └── DisableMgr.h │ ├── Crossfaction │ │ ├── Crossfaction.cpp │ │ └── Crossfaction.h │ ├── DataStores │ │ ├── DBCEnums.h │ │ ├── DBCStores.cpp │ │ ├── DBCStores.h │ │ ├── DBCStructure.h │ │ └── DBCfmt.h │ ├── DungeonFinding │ │ ├── LFG.cpp │ │ ├── LFG.h │ │ ├── LFGGroupData.cpp │ │ ├── LFGGroupData.h │ │ ├── LFGMgr.cpp │ │ ├── LFGMgr.h │ │ ├── LFGPlayerData.cpp │ │ ├── LFGPlayerData.h │ │ ├── LFGQueue.cpp │ │ ├── LFGQueue.h │ │ ├── LFGScripts.cpp │ │ └── LFGScripts.h │ ├── Entities │ │ ├── Corpse │ │ │ ├── Corpse.cpp │ │ │ └── Corpse.h │ │ ├── Creature │ │ │ ├── Creature.cpp │ │ │ ├── Creature.h │ │ │ ├── CreatureGroups.cpp │ │ │ ├── CreatureGroups.h │ │ │ ├── GossipDef.cpp │ │ │ ├── GossipDef.h │ │ │ ├── TemporarySummon.cpp │ │ │ └── TemporarySummon.h │ │ ├── DynamicObject │ │ │ ├── DynamicObject.cpp │ │ │ └── DynamicObject.h │ │ ├── GameObject │ │ │ ├── GameObject.cpp │ │ │ └── GameObject.h │ │ ├── Item │ │ │ ├── Container │ │ │ │ ├── Bag.cpp │ │ │ │ └── Bag.h │ │ │ ├── Item.cpp │ │ │ ├── Item.h │ │ │ ├── ItemEnchantmentMgr.cpp │ │ │ ├── ItemEnchantmentMgr.h │ │ │ ├── ItemPrototype.h │ │ │ └── Transmogrification.h │ │ ├── Object │ │ │ ├── G3DPosition.hpp │ │ │ ├── Object.cpp │ │ │ ├── Object.h │ │ │ ├── ObjectDefines.h │ │ │ ├── ObjectPosSelector.cpp │ │ │ ├── ObjectPosSelector.h │ │ │ └── Updates │ │ │ │ ├── UpdateData.cpp │ │ │ │ ├── UpdateData.h │ │ │ │ ├── UpdateFieldFlags.cpp │ │ │ │ ├── UpdateFieldFlags.h │ │ │ │ ├── UpdateFields.h │ │ │ │ └── UpdateMask.h │ │ ├── Pet │ │ │ ├── Pet.cpp │ │ │ ├── Pet.h │ │ │ └── PetDefines.h │ │ ├── Player │ │ │ ├── Player.cpp │ │ │ ├── Player.h │ │ │ ├── SocialMgr.cpp │ │ │ └── SocialMgr.h │ │ ├── Totem │ │ │ ├── Totem.cpp │ │ │ └── Totem.h │ │ ├── Transport │ │ │ ├── Transport.cpp │ │ │ └── Transport.h │ │ ├── Unit │ │ │ ├── StatSystem.cpp │ │ │ ├── Unit.cpp │ │ │ └── Unit.h │ │ └── Vehicle │ │ │ ├── Vehicle.cpp │ │ │ ├── Vehicle.h │ │ │ └── VehicleDefines.h │ ├── Events │ │ ├── GameEventMgr.cpp │ │ └── GameEventMgr.h │ ├── Globals │ │ ├── ObjectAccessor.cpp │ │ ├── ObjectAccessor.h │ │ ├── ObjectMgr.cpp │ │ └── ObjectMgr.h │ ├── Grids │ │ ├── Cells │ │ │ ├── Cell.h │ │ │ └── CellImpl.h │ │ ├── Grid.h │ │ ├── GridDefines.h │ │ ├── GridLoader.h │ │ ├── GridRefManager.h │ │ ├── GridReference.h │ │ ├── NGrid.h │ │ ├── Notifiers │ │ │ ├── GridNotifiers.cpp │ │ │ ├── GridNotifiers.h │ │ │ └── GridNotifiersImpl.h │ │ ├── ObjectGridLoader.cpp │ │ └── ObjectGridLoader.h │ ├── Groups │ │ ├── Group.cpp │ │ ├── Group.h │ │ ├── GroupMgr.cpp │ │ ├── GroupMgr.h │ │ ├── GroupRefManager.h │ │ ├── GroupReference.cpp │ │ └── GroupReference.h │ ├── Guilds │ │ ├── Guild.cpp │ │ ├── Guild.h │ │ ├── GuildMgr.cpp │ │ └── GuildMgr.h │ ├── Handlers │ │ ├── 1v1.h │ │ ├── AddonHandler.cpp │ │ ├── AddonHandler.h │ │ ├── ArenaTeamHandler.cpp │ │ ├── AuctionHouseHandler.cpp │ │ ├── AuthHandler.cpp │ │ ├── BattleGroundHandler.cpp │ │ ├── CalendarHandler.cpp │ │ ├── ChannelHandler.cpp │ │ ├── CharacterHandler.cpp │ │ ├── ChatHandler.cpp │ │ ├── CombatHandler.cpp │ │ ├── DuelHandler.cpp │ │ ├── GroupHandler.cpp │ │ ├── GuildHandler.cpp │ │ ├── ItemHandler.cpp │ │ ├── LFGHandler.cpp │ │ ├── LootHandler.cpp │ │ ├── MailHandler.cpp │ │ ├── MiscHandler.cpp │ │ ├── MovementHandler.cpp │ │ ├── NPCHandler.cpp │ │ ├── NPCHandler.h │ │ ├── PetHandler.cpp │ │ ├── PetitionsHandler.cpp │ │ ├── QueryHandler.cpp │ │ ├── QuestHandler.cpp │ │ ├── ReferAFriendHandler.cpp │ │ ├── SkillHandler.cpp │ │ ├── SpellHandler.cpp │ │ ├── TaxiHandler.cpp │ │ ├── TicketHandler.cpp │ │ ├── TradeHandler.cpp │ │ └── VehicleHandler.cpp │ ├── Instances │ │ ├── InstanceSaveMgr.cpp │ │ ├── InstanceSaveMgr.h │ │ ├── InstanceScript.cpp │ │ └── InstanceScript.h │ ├── Loot │ │ ├── LootItemStorage.cpp │ │ ├── LootItemStorage.h │ │ ├── LootMgr.cpp │ │ └── LootMgr.h │ ├── Mails │ │ ├── Mail.cpp │ │ └── Mail.h │ ├── Maps │ │ ├── Map.cpp │ │ ├── Map.h │ │ ├── MapInstanced.cpp │ │ ├── MapInstanced.h │ │ ├── MapManager.cpp │ │ ├── MapManager.h │ │ ├── MapRefManager.h │ │ ├── MapReference.h │ │ ├── MapUpdater.cpp │ │ ├── MapUpdater.h │ │ ├── TransportMgr.cpp │ │ ├── TransportMgr.h │ │ └── ZoneScript.h │ ├── Misc │ │ ├── AsyncAuctionListing.cpp │ │ ├── AsyncAuctionListing.h │ │ ├── AvgDiffTracker.cpp │ │ ├── AvgDiffTracker.h │ │ ├── DynamicVisibility.cpp │ │ ├── DynamicVisibility.h │ │ ├── SavingSystem.cpp │ │ ├── SavingSystem.h │ │ ├── WhoListCache.cpp │ │ └── WhoListCache.h │ ├── Miscellaneous │ │ ├── Formulas.h │ │ ├── Language.h │ │ └── SharedDefines.h │ ├── Movement │ │ ├── AbstractFollower.cpp │ │ ├── AbstractFollower.h │ │ ├── MotionMaster.cpp │ │ ├── MotionMaster.h │ │ ├── MovementGenerator.cpp │ │ ├── MovementGenerator.h │ │ ├── MovementGeneratorImpl.h │ │ ├── MovementGenerators │ │ │ ├── ChaseMovementGenerator.cpp │ │ │ ├── ChaseMovementGenerator.h │ │ │ ├── ConfusedMovementGenerator.cpp │ │ │ ├── ConfusedMovementGenerator.h │ │ │ ├── EscortMovementGenerator.cpp │ │ │ ├── EscortMovementGenerator.h │ │ │ ├── FleeingMovementGenerator.cpp │ │ │ ├── FleeingMovementGenerator.h │ │ │ ├── FollowMovementGenerator.cpp │ │ │ ├── FollowMovementGenerator.h │ │ │ ├── HomeMovementGenerator.cpp │ │ │ ├── HomeMovementGenerator.h │ │ │ ├── IdleMovementGenerator.cpp │ │ │ ├── IdleMovementGenerator.h │ │ │ ├── PointMovementGenerator.cpp │ │ │ ├── PointMovementGenerator.h │ │ │ ├── RandomMovementGenerator.cpp │ │ │ ├── RandomMovementGenerator.h │ │ │ ├── WaypointMovementGenerator.cpp │ │ │ └── WaypointMovementGenerator.h │ │ ├── PathGenerator.cpp │ │ ├── PathGenerator.h │ │ ├── Spline │ │ │ ├── MoveSpline.cpp │ │ │ ├── MoveSpline.h │ │ │ ├── MoveSplineFlag.h │ │ │ ├── MoveSplineInit.cpp │ │ │ ├── MoveSplineInit.h │ │ │ ├── MoveSplineInitArgs.h │ │ │ ├── MovementPacketBuilder.cpp │ │ │ ├── MovementPacketBuilder.h │ │ │ ├── MovementTypedefs.h │ │ │ ├── MovementUtil.cpp │ │ │ ├── Spline.cpp │ │ │ ├── Spline.h │ │ │ └── SplineImpl.h │ │ └── Waypoints │ │ │ ├── WaypointManager.cpp │ │ │ └── WaypointManager.h │ ├── OutdoorPvP │ │ ├── OutdoorPvP.cpp │ │ ├── OutdoorPvP.h │ │ ├── OutdoorPvPMgr.cpp │ │ └── OutdoorPvPMgr.h │ ├── Petitions │ │ ├── PetitionMgr.cpp │ │ └── PetitionMgr.h │ ├── Pools │ │ ├── PoolMgr.cpp │ │ └── PoolMgr.h │ ├── PrecompiledHeaders │ │ ├── gamePCH.cpp │ │ └── gamePCH.h │ ├── Quests │ │ ├── QuestDef.cpp │ │ └── QuestDef.h │ ├── Reputation │ │ ├── ReputationMgr.cpp │ │ └── ReputationMgr.h │ ├── Scripting │ │ ├── MapScripts.cpp │ │ ├── ScriptLoader.cpp │ │ ├── ScriptLoader.h │ │ ├── ScriptMgr.cpp │ │ ├── ScriptMgr.h │ │ ├── ScriptSystem.cpp │ │ └── ScriptSystem.h │ ├── Server │ │ ├── Protocol │ │ │ ├── Opcodes.cpp │ │ │ ├── Opcodes.h │ │ │ ├── PacketLog.cpp │ │ │ └── PacketLog.h │ │ ├── WorldSession.cpp │ │ ├── WorldSession.h │ │ ├── WorldSocket.cpp │ │ ├── WorldSocket.h │ │ ├── WorldSocketAcceptor.h │ │ ├── WorldSocketMgr.cpp │ │ └── WorldSocketMgr.h │ ├── Skills │ │ ├── SkillDiscovery.cpp │ │ ├── SkillDiscovery.h │ │ ├── SkillExtraItems.cpp │ │ └── SkillExtraItems.h │ ├── Spells │ │ ├── Auras │ │ │ ├── SpellAuraDefines.h │ │ │ ├── SpellAuraEffects.cpp │ │ │ ├── SpellAuraEffects.h │ │ │ ├── SpellAuras.cpp │ │ │ └── SpellAuras.h │ │ ├── Spell.cpp │ │ ├── Spell.h │ │ ├── SpellEffects.cpp │ │ ├── SpellInfo.cpp │ │ ├── SpellInfo.h │ │ ├── SpellMgr.cpp │ │ ├── SpellMgr.h │ │ ├── SpellScript.cpp │ │ └── SpellScript.h │ ├── Texts │ │ ├── CreatureTextMgr.cpp │ │ └── CreatureTextMgr.h │ ├── Tickets │ │ ├── TicketMgr.cpp │ │ └── TicketMgr.h │ ├── Tools │ │ ├── CharacterDatabaseCleaner.cpp │ │ ├── CharacterDatabaseCleaner.h │ │ ├── PlayerDump.cpp │ │ └── PlayerDump.h │ ├── VoiceChat │ │ ├── VoiceChat.h │ │ ├── VoiceChatClientSocket.cpp │ │ ├── VoiceChatClientSocket.h │ │ ├── VoiceChatHandler.cpp │ │ ├── VoiceChatHandler.h │ │ └── VoiceChatOpcodes.h │ ├── Warden │ │ ├── Modules │ │ │ ├── WardenModuleMac.h │ │ │ └── WardenModuleWin.h │ │ ├── Warden.cpp │ │ ├── Warden.h │ │ ├── WardenCheckMgr.cpp │ │ ├── WardenCheckMgr.h │ │ ├── WardenMac.cpp │ │ ├── WardenMac.h │ │ ├── WardenWin.cpp │ │ └── WardenWin.h │ ├── Weather │ │ ├── Weather.cpp │ │ ├── Weather.h │ │ ├── WeatherMgr.cpp │ │ └── WeatherMgr.h │ └── World │ │ ├── World.cpp │ │ └── World.h │ ├── scripts │ ├── CMakeLists.txt │ ├── Commands │ │ ├── CMakeLists.txt │ │ ├── cs_account.cpp │ │ ├── cs_achievement.cpp │ │ ├── cs_ahbot.cpp │ │ ├── cs_anticheat.cpp │ │ ├── cs_ban.cpp │ │ ├── cs_bf.cpp │ │ ├── cs_cast.cpp │ │ ├── cs_character.cpp │ │ ├── cs_cheat.cpp │ │ ├── cs_debug.cpp │ │ ├── cs_disable.cpp │ │ ├── cs_event.cpp │ │ ├── cs_gm.cpp │ │ ├── cs_go.cpp │ │ ├── cs_gobject.cpp │ │ ├── cs_guild.cpp │ │ ├── cs_honor.cpp │ │ ├── cs_instance.cpp │ │ ├── cs_learn.cpp │ │ ├── cs_lfg.cpp │ │ ├── cs_list.cpp │ │ ├── cs_lookup.cpp │ │ ├── cs_message.cpp │ │ ├── cs_misc.cpp │ │ ├── cs_mmaps.cpp │ │ ├── cs_modify.cpp │ │ ├── cs_npc.cpp │ │ ├── cs_pb.cpp │ │ ├── cs_progressive.cpp │ │ ├── cs_quest.cpp │ │ ├── cs_reload.cpp │ │ ├── cs_reset.cpp │ │ ├── cs_server.cpp │ │ ├── cs_spectator.cpp │ │ ├── cs_tele.cpp │ │ ├── cs_ticket.cpp │ │ ├── cs_titles.cpp │ │ └── cs_wp.cpp │ ├── Custom │ │ ├── ArenaCrystal │ │ │ └── ArenaCrystal.cpp │ │ ├── ArenaDementia │ │ │ └── ArenaDementia.cpp │ │ ├── ArenaSpectate │ │ │ └── ArenaSpectate.cpp │ │ ├── ArenaStuff │ │ │ └── ArenaStuff.cpp │ │ ├── BoostNpc │ │ │ └── BoostNpc.cpp │ │ ├── CMakeLists.txt │ │ ├── Challenge │ │ │ └── Challenge.cpp │ │ ├── DuelReset │ │ │ └── DuelReset.cpp │ │ ├── Enchanter │ │ │ └── Enchanter.cpp │ │ ├── ItemRequester │ │ │ └── ItemRequester.cpp │ │ ├── MMRCommands │ │ │ └── MMRCommands.cpp │ │ ├── OneClickTrainerNPC │ │ │ └── OneClickTrainerNPC.cpp │ │ ├── PhasedDueling │ │ │ └── PhasedDueling.cpp │ │ ├── ProfessionsNPC │ │ │ └── ProfessionsNPC.cpp │ │ ├── QueueCommands │ │ │ └── QueueCommands.cpp │ │ ├── Request.cpp │ │ ├── SpellRegulator │ │ │ ├── SpellRegulator.cpp │ │ │ └── SpellRegulator.h │ │ ├── TempTransmog │ │ │ └── TempTransmog.cpp │ │ ├── TemplateNPC │ │ │ ├── Sql │ │ │ │ └── characters.sql │ │ │ ├── TemplateCopyCommand.cpp │ │ │ ├── TemplateNPC.cpp │ │ │ └── TemplateNPC.h │ │ ├── Transmogrification │ │ │ ├── Transmogrification.cpp │ │ │ └── Transmogrification.h │ │ └── WorldChat │ │ │ └── WorldChat.cpp │ ├── EasternKingdoms │ │ ├── AlteracValley │ │ │ ├── alterac_valley.cpp │ │ │ ├── boss_balinda.cpp │ │ │ ├── boss_drekthar.cpp │ │ │ ├── boss_galvangar.cpp │ │ │ └── boss_vanndar.cpp │ │ ├── BlackrockMountain │ │ │ ├── BlackrockDepths │ │ │ │ ├── blackrock_depths.cpp │ │ │ │ ├── blackrock_depths.h │ │ │ │ ├── boss_ambassador_flamelash.cpp │ │ │ │ ├── boss_anubshiah.cpp │ │ │ │ ├── boss_emperor_dagran_thaurissan.cpp │ │ │ │ ├── boss_general_angerforge.cpp │ │ │ │ ├── boss_gorosh_the_dervish.cpp │ │ │ │ ├── boss_grizzle.cpp │ │ │ │ ├── boss_high_interrogator_gerstahn.cpp │ │ │ │ ├── boss_magmus.cpp │ │ │ │ ├── boss_moira_bronzebeard.cpp │ │ │ │ ├── boss_tomb_of_seven.cpp │ │ │ │ └── instance_blackrock_depths.cpp │ │ │ ├── BlackrockSpire │ │ │ │ ├── blackrock_spire.h │ │ │ │ ├── boss_drakkisath.cpp │ │ │ │ ├── boss_gizrul_the_slavener.cpp │ │ │ │ ├── boss_gyth.cpp │ │ │ │ ├── boss_halycon.cpp │ │ │ │ ├── boss_highlord_omokk.cpp │ │ │ │ ├── boss_lord_valthalak.cpp │ │ │ │ ├── boss_mother_smolderweb.cpp │ │ │ │ ├── boss_overlord_wyrmthalak.cpp │ │ │ │ ├── boss_pyroguard_emberseer.cpp │ │ │ │ ├── boss_quartermaster_zigris.cpp │ │ │ │ ├── boss_rend_blackhand.cpp │ │ │ │ ├── boss_shadow_hunter_voshgajin.cpp │ │ │ │ ├── boss_the_beast.cpp │ │ │ │ ├── boss_urok_doomhowl.cpp │ │ │ │ ├── boss_warmaster_voone.cpp │ │ │ │ └── instance_blackrock_spire.cpp │ │ │ ├── BlackwingLair │ │ │ │ ├── blackwing_lair.h │ │ │ │ ├── boss_broodlord_lashlayer.cpp │ │ │ │ ├── boss_chromaggus.cpp │ │ │ │ ├── boss_ebonroc.cpp │ │ │ │ ├── boss_firemaw.cpp │ │ │ │ ├── boss_flamegor.cpp │ │ │ │ ├── boss_nefarian.cpp │ │ │ │ ├── boss_razorgore.cpp │ │ │ │ ├── boss_vaelastrasz.cpp │ │ │ │ └── instance_blackwing_lair.cpp │ │ │ └── MoltenCore │ │ │ │ ├── boss_baron_geddon.cpp │ │ │ │ ├── boss_garr.cpp │ │ │ │ ├── boss_gehennas.cpp │ │ │ │ ├── boss_golemagg.cpp │ │ │ │ ├── boss_lucifron.cpp │ │ │ │ ├── boss_magmadar.cpp │ │ │ │ ├── boss_majordomo_executus.cpp │ │ │ │ ├── boss_ragnaros.cpp │ │ │ │ ├── boss_shazzrah.cpp │ │ │ │ ├── boss_sulfuron_harbinger.cpp │ │ │ │ ├── instance_molten_core.cpp │ │ │ │ └── molten_core.h │ │ ├── CMakeLists.txt │ │ ├── Deadmines │ │ │ ├── boss_mr_smite.cpp │ │ │ ├── deadmines.h │ │ │ └── instance_deadmines.cpp │ │ ├── Gnomeregan │ │ │ └── instance_gnomeregan.cpp │ │ ├── Karazhan │ │ │ ├── boss_curator.cpp │ │ │ ├── boss_maiden_of_virtue.cpp │ │ │ ├── boss_midnight.cpp │ │ │ ├── boss_moroes.cpp │ │ │ ├── boss_netherspite.cpp │ │ │ ├── boss_nightbane.cpp │ │ │ ├── boss_prince_malchezaar.cpp │ │ │ ├── boss_servant_quarters.cpp │ │ │ ├── boss_shade_of_aran.cpp │ │ │ ├── boss_terestian_illhoof.cpp │ │ │ ├── bosses_chess.rar │ │ │ ├── bosses_opera.cpp │ │ │ ├── instance_karazhan.cpp │ │ │ ├── karazhan.cpp │ │ │ └── karazhan.h │ │ ├── MagistersTerrace │ │ │ ├── boss_felblood_kaelthas.cpp │ │ │ ├── boss_priestess_delrissa.cpp │ │ │ ├── boss_selin_fireheart.cpp │ │ │ ├── boss_vexallus.cpp │ │ │ ├── instance_magisters_terrace.cpp │ │ │ └── magisters_terrace.h │ │ ├── ScarletEnclave │ │ │ ├── chapter1.cpp │ │ │ ├── chapter2.cpp │ │ │ ├── chapter5.cpp │ │ │ └── zone_the_scarlet_enclave.cpp │ │ ├── ScarletMonastery │ │ │ └── instance_scarlet_monastery.cpp │ │ ├── Scholomance │ │ │ ├── boss_kirtonos_the_herald.cpp │ │ │ ├── instance_scholomance.cpp │ │ │ └── scholomance.h │ │ ├── ShadowfangKeep │ │ │ ├── instance_shadowfang_keep.cpp │ │ │ └── shadowfang_keep.h │ │ ├── Stratholme │ │ │ ├── instance_stratholme.cpp │ │ │ └── stratholme.h │ │ ├── SunkenTemple │ │ │ ├── instance_sunken_temple.cpp │ │ │ └── sunken_temple.h │ │ ├── SunwellPlateau │ │ │ ├── boss_brutallus.cpp │ │ │ ├── boss_eredar_twins.cpp │ │ │ ├── boss_felmyst.cpp │ │ │ ├── boss_kalecgos.cpp │ │ │ ├── boss_kiljaeden.cpp │ │ │ ├── boss_muru.cpp │ │ │ ├── instance_sunwell_plateau.cpp │ │ │ └── sunwell_plateau.h │ │ ├── TheStockade │ │ │ └── instance_the_stockade.cpp │ │ ├── Uldaman │ │ │ ├── instance_uldaman.cpp │ │ │ └── uldaman.h │ │ ├── ZulAman │ │ │ ├── boss_akilzon.cpp │ │ │ ├── boss_halazzi.cpp │ │ │ ├── boss_hexlord.cpp │ │ │ ├── boss_janalai.cpp │ │ │ ├── boss_nalorakk.cpp │ │ │ ├── boss_zuljin.cpp │ │ │ ├── instance_zulaman.cpp │ │ │ ├── zulaman.cpp │ │ │ └── zulaman.h │ │ ├── ZulGurub │ │ │ ├── boss_arlokk.cpp │ │ │ ├── boss_gahzranka.cpp │ │ │ ├── boss_grilek.cpp │ │ │ ├── boss_hakkar.cpp │ │ │ ├── boss_hazzarah.cpp │ │ │ ├── boss_jeklik.cpp │ │ │ ├── boss_jindo.cpp │ │ │ ├── boss_mandokir.cpp │ │ │ ├── boss_marli.cpp │ │ │ ├── boss_renataki.cpp │ │ │ ├── boss_thekal.cpp │ │ │ ├── boss_venoxis.cpp │ │ │ ├── boss_wushoolay.cpp │ │ │ ├── instance_zulgurub.cpp │ │ │ └── zulgurub.h │ │ ├── zone_alterac_mountains.cpp │ │ ├── zone_arathi_highlands.cpp │ │ ├── zone_blasted_lands.cpp │ │ ├── zone_burning_steppes.cpp │ │ ├── zone_duskwood.cpp │ │ ├── zone_eastern_plaguelands.cpp │ │ ├── zone_eversong_woods.cpp │ │ ├── zone_ghostlands.cpp │ │ ├── zone_hinterlands.cpp │ │ ├── zone_ironforge.cpp │ │ ├── zone_isle_of_queldanas.cpp │ │ ├── zone_loch_modan.cpp │ │ ├── zone_redridge_mountains.cpp │ │ ├── zone_silverpine_forest.cpp │ │ ├── zone_stormwind_city.cpp │ │ ├── zone_stranglethorn_vale.cpp │ │ ├── zone_swamp_of_sorrows.cpp │ │ ├── zone_tirisfal_glades.cpp │ │ ├── zone_undercity.cpp │ │ ├── zone_western_plaguelands.cpp │ │ ├── zone_westfall.cpp │ │ └── zone_wetlands.cpp │ ├── Events │ │ ├── CMakeLists.txt │ │ ├── brewfest.cpp │ │ ├── childrens_week.cpp │ │ ├── hallows_end.cpp │ │ ├── love_in_air.cpp │ │ ├── midsummer.cpp │ │ ├── pilgrims_bounty.cpp │ │ └── winter_veil.cpp │ ├── Kalimdor │ │ ├── BlackfathomDeeps │ │ │ ├── blackfathom_deeps.h │ │ │ └── instance_blackfathom_deeps.cpp │ │ ├── CMakeLists.txt │ │ ├── CavernsOfTime │ │ │ ├── BattleForMountHyjal │ │ │ │ ├── boss_anetheron.cpp │ │ │ │ ├── boss_archimonde.cpp │ │ │ │ ├── boss_azgalor.cpp │ │ │ │ ├── boss_kazrogal.cpp │ │ │ │ ├── boss_rage_winterchill.cpp │ │ │ │ ├── hyjal.cpp │ │ │ │ ├── hyjal.h │ │ │ │ ├── hyjalAI.cpp │ │ │ │ ├── hyjalAI.h │ │ │ │ ├── hyjal_trash.cpp │ │ │ │ ├── hyjal_trash.h │ │ │ │ └── instance_hyjal.cpp │ │ │ ├── CullingOfStratholme │ │ │ │ ├── boss_epoch.cpp │ │ │ │ ├── boss_infinite.cpp │ │ │ │ ├── boss_mal_ganis.cpp │ │ │ │ ├── boss_meathook.cpp │ │ │ │ ├── boss_salramm.cpp │ │ │ │ ├── culling_of_stratholme.cpp │ │ │ │ ├── culling_of_stratholme.h │ │ │ │ └── instance_culling_of_stratholme.cpp │ │ │ ├── EscapeFromDurnholdeKeep │ │ │ │ ├── boss_captain_skarloc.cpp │ │ │ │ ├── boss_epoch_hunter.cpp │ │ │ │ ├── boss_lieutenant_drake.cpp │ │ │ │ ├── instance_old_hillsbrad.cpp │ │ │ │ ├── old_hillsbrad.cpp │ │ │ │ └── old_hillsbrad.h │ │ │ └── TheBlackMorass │ │ │ │ ├── boss_aeonus.cpp │ │ │ │ ├── boss_chrono_lord_deja.cpp │ │ │ │ ├── boss_temporus.cpp │ │ │ │ ├── instance_the_black_morass.cpp │ │ │ │ ├── the_black_morass.cpp │ │ │ │ └── the_black_morass.h │ │ ├── DireMaul │ │ │ ├── dire_maul.h │ │ │ └── instance_dire_maul.cpp │ │ ├── Maraudon │ │ │ ├── instance_maraudon.cpp │ │ │ └── maraudon.h │ │ ├── OnyxiasLair │ │ │ ├── boss_onyxia.cpp │ │ │ ├── instance_onyxias_lair.cpp │ │ │ └── onyxias_lair.h │ │ ├── RagefireChasm │ │ │ └── instance_ragefire_chasm.cpp │ │ ├── RazorfenDowns │ │ │ ├── instance_razorfen_downs.cpp │ │ │ ├── razorfen_downs.cpp │ │ │ └── razorfen_downs.h │ │ ├── RazorfenKraul │ │ │ └── instance_razorfen_kraul.cpp │ │ ├── RuinsOfAhnQiraj │ │ │ ├── boss_ayamiss.cpp │ │ │ ├── boss_buru.cpp │ │ │ ├── boss_kurinnaxx.cpp │ │ │ ├── boss_moam.cpp │ │ │ ├── boss_ossirian.cpp │ │ │ ├── boss_rajaxx.cpp │ │ │ ├── instance_ruins_of_ahnqiraj.cpp │ │ │ └── ruins_of_ahnqiraj.h │ │ ├── TempleOfAhnQiraj │ │ │ ├── boss_bug_trio.cpp │ │ │ ├── boss_cthun.cpp │ │ │ ├── boss_fankriss.cpp │ │ │ ├── boss_huhuran.cpp │ │ │ ├── boss_ouro.cpp │ │ │ ├── boss_sartura.cpp │ │ │ ├── boss_skeram.cpp │ │ │ ├── boss_twinemperors.cpp │ │ │ ├── boss_viscidus.cpp │ │ │ ├── instance_temple_of_ahnqiraj.cpp │ │ │ ├── mob_anubisath_sentinel.cpp │ │ │ └── temple_of_ahnqiraj.h │ │ ├── WailingCaverns │ │ │ ├── instance_wailing_caverns.cpp │ │ │ └── wailing_caverns.h │ │ ├── ZulFarrak │ │ │ ├── instance_zulfarrak.cpp │ │ │ └── zulfarrak.h │ │ ├── boss_azuregos.cpp │ │ ├── zone_ashenvale.cpp │ │ ├── zone_azshara.cpp │ │ ├── zone_azuremyst_isle.cpp │ │ ├── zone_bloodmyst_isle.cpp │ │ ├── zone_darkshore.cpp │ │ ├── zone_desolace.cpp │ │ ├── zone_durotar.cpp │ │ ├── zone_dustwallow_marsh.cpp │ │ ├── zone_felwood.cpp │ │ ├── zone_feralas.cpp │ │ ├── zone_moonglade.cpp │ │ ├── zone_mulgore.cpp │ │ ├── zone_orgrimmar.cpp │ │ ├── zone_silithus.cpp │ │ ├── zone_stonetalon_mountains.cpp │ │ ├── zone_tanaris.cpp │ │ ├── zone_teldrassil.cpp │ │ ├── zone_the_barrens.cpp │ │ ├── zone_thousand_needles.cpp │ │ ├── zone_thunder_bluff.cpp │ │ ├── zone_ungoro_crater.cpp │ │ └── zone_winterspring.cpp │ ├── Northrend │ │ ├── AzjolNerub │ │ │ ├── AzjolNerub │ │ │ │ ├── azjol_nerub.h │ │ │ │ ├── boss_anubarak.cpp │ │ │ │ ├── boss_hadronox.cpp │ │ │ │ ├── boss_krikthir_the_gatewatcher.cpp │ │ │ │ └── instance_azjol_nerub.cpp │ │ │ └── ahnkahet │ │ │ │ ├── ahnkahet.h │ │ │ │ ├── boss_amanitar.cpp │ │ │ │ ├── boss_elder_nadox.cpp │ │ │ │ ├── boss_herald_volazj.cpp │ │ │ │ ├── boss_jedoga_shadowseeker.cpp │ │ │ │ ├── boss_prince_taldaram.cpp │ │ │ │ ├── def_ahnkahet.h │ │ │ │ └── instance_ahnkahet.cpp │ │ ├── CMakeLists.txt │ │ ├── ChamberOfAspects │ │ │ ├── ObsidianSanctum │ │ │ │ ├── boss_sartharion.cpp │ │ │ │ ├── instance_obsidian_sanctum.cpp │ │ │ │ └── obsidian_sanctum.h │ │ │ └── RubySanctum │ │ │ │ ├── boss_baltharus_the_warborn.cpp │ │ │ │ ├── boss_general_zarithrian.cpp │ │ │ │ ├── boss_halion.cpp │ │ │ │ ├── boss_saviana_ragefire.cpp │ │ │ │ ├── instance_ruby_sanctum.cpp │ │ │ │ └── ruby_sanctum.h │ │ ├── CrusadersColiseum │ │ │ ├── TrialOfTheChampion │ │ │ │ ├── boss_argent_challenge.cpp │ │ │ │ ├── boss_black_knight.cpp │ │ │ │ ├── boss_grand_champions.cpp │ │ │ │ ├── instance_trial_of_the_champion.cpp │ │ │ │ ├── trial_of_the_champion.cpp │ │ │ │ └── trial_of_the_champion.h │ │ │ └── TrialOfTheCrusader │ │ │ │ ├── boss_anubarak_trial.cpp │ │ │ │ ├── boss_faction_champions.cpp │ │ │ │ ├── boss_lord_jaraxxus.cpp │ │ │ │ ├── boss_northrend_beasts.cpp │ │ │ │ ├── boss_twin_valkyr.cpp │ │ │ │ ├── instance_trial_of_the_crusader.cpp │ │ │ │ ├── trial_of_the_crusader.cpp │ │ │ │ └── trial_of_the_crusader.h │ │ ├── DraktharonKeep │ │ │ ├── boss_dred.cpp │ │ │ ├── boss_novos.cpp │ │ │ ├── boss_tharon_ja.cpp │ │ │ ├── boss_trollgore.cpp │ │ │ ├── drak_tharon_keep.h │ │ │ └── instance_drak_tharon_keep.cpp │ │ ├── FrozenHalls │ │ │ ├── ForgeOfSouls │ │ │ │ ├── boss_bronjahm.cpp │ │ │ │ ├── boss_devourer_of_souls.cpp │ │ │ │ ├── forge_of_souls.cpp │ │ │ │ ├── forge_of_souls.h │ │ │ │ └── instance_forge_of_souls.cpp │ │ │ ├── HallsOfReflection │ │ │ │ ├── boss_falric.cpp │ │ │ │ ├── boss_marwyn.cpp │ │ │ │ ├── halls_of_reflection.cpp │ │ │ │ ├── halls_of_reflection.h │ │ │ │ └── instance_halls_of_reflection.cpp │ │ │ └── PitOfSaron │ │ │ │ ├── boss_forgemaster_garfrost.cpp │ │ │ │ ├── boss_krickandick.cpp │ │ │ │ ├── boss_scourgelord_tyrannus.cpp │ │ │ │ ├── instance_pit_of_saron.cpp │ │ │ │ ├── pit_of_saron.cpp │ │ │ │ └── pit_of_saron.h │ │ ├── Gundrak │ │ │ ├── boss_drakkari_colossus.cpp │ │ │ ├── boss_eck.cpp │ │ │ ├── boss_gal_darah.cpp │ │ │ ├── boss_moorabi.cpp │ │ │ ├── boss_slad_ran.cpp │ │ │ ├── gundrak.h │ │ │ └── instance_gundrak.cpp │ │ ├── IcecrownCitadel │ │ │ ├── boss_blood_prince_council.cpp │ │ │ ├── boss_blood_queen_lana_thel.cpp │ │ │ ├── boss_deathbringer_saurfang.cpp │ │ │ ├── boss_festergut.cpp │ │ │ ├── boss_icecrown_gunship_battle.cpp │ │ │ ├── boss_lady_deathwhisper.cpp │ │ │ ├── boss_lord_marrowgar.cpp │ │ │ ├── boss_professor_putricide.cpp │ │ │ ├── boss_rotface.cpp │ │ │ ├── boss_sindragosa.cpp │ │ │ ├── boss_the_lich_king.cpp │ │ │ ├── boss_valithria_dreamwalker.cpp │ │ │ ├── icecrown_citadel.cpp │ │ │ ├── icecrown_citadel.h │ │ │ ├── icecrown_citadel_teleport.cpp │ │ │ └── instance_icecrown_citadel.cpp │ │ ├── Naxxramas │ │ │ ├── boss_anubrekhan.cpp │ │ │ ├── boss_faerlina.cpp │ │ │ ├── boss_four_horsemen.cpp │ │ │ ├── boss_gluth.cpp │ │ │ ├── boss_gothik.cpp │ │ │ ├── boss_grobbulus.cpp │ │ │ ├── boss_heigan.cpp │ │ │ ├── boss_kelthuzad.cpp │ │ │ ├── boss_loatheb.cpp │ │ │ ├── boss_maexxna.cpp │ │ │ ├── boss_noth.cpp │ │ │ ├── boss_patchwerk.cpp │ │ │ ├── boss_razuvious.cpp │ │ │ ├── boss_sapphiron.cpp │ │ │ ├── boss_thaddius.cpp │ │ │ ├── instance_naxxramas.cpp │ │ │ └── naxxramas.h │ │ ├── Nexus │ │ │ ├── EyeOfEternity │ │ │ │ ├── boss_malygos.cpp │ │ │ │ ├── eye_of_eternity.h │ │ │ │ └── instance_eye_of_eternity.cpp │ │ │ ├── Nexus │ │ │ │ ├── boss_anomalus.cpp │ │ │ │ ├── boss_commander_stoutbeard_kolurg.cpp │ │ │ │ ├── boss_keristrasza.cpp │ │ │ │ ├── boss_magus_telestra.cpp │ │ │ │ ├── boss_ormorok.cpp │ │ │ │ ├── instance_nexus.cpp │ │ │ │ └── nexus.h │ │ │ └── Oculus │ │ │ │ ├── boss_drakos.cpp │ │ │ │ ├── boss_eregos.cpp │ │ │ │ ├── boss_urom.cpp │ │ │ │ ├── boss_varos.cpp │ │ │ │ ├── instance_oculus.cpp │ │ │ │ ├── oculus.cpp │ │ │ │ └── oculus.h │ │ ├── Ulduar │ │ │ ├── HallsOfLightning │ │ │ │ ├── boss_bjarngrim.cpp │ │ │ │ ├── boss_ionar.cpp │ │ │ │ ├── boss_loken.cpp │ │ │ │ ├── boss_volkhan.cpp │ │ │ │ ├── halls_of_lightning.h │ │ │ │ └── instance_halls_of_lightning.cpp │ │ │ ├── HallsOfStone │ │ │ │ ├── boss_krystallus.cpp │ │ │ │ ├── boss_maiden_of_grief.cpp │ │ │ │ ├── boss_sjonnir.cpp │ │ │ │ ├── brann_bronzebeard.cpp │ │ │ │ ├── halls_of_stone.h │ │ │ │ └── instance_halls_of_stone.cpp │ │ │ └── Ulduar │ │ │ │ ├── boss_algalon_the_observer.cpp │ │ │ │ ├── boss_assembly_of_iron.cpp │ │ │ │ ├── boss_auriaya.cpp │ │ │ │ ├── boss_flame_leviathan.cpp │ │ │ │ ├── boss_freya.cpp │ │ │ │ ├── boss_general_vezax.cpp │ │ │ │ ├── boss_hodir.cpp │ │ │ │ ├── boss_ignis.cpp │ │ │ │ ├── boss_kologarn.cpp │ │ │ │ ├── boss_mimiron.cpp │ │ │ │ ├── boss_razorscale.cpp │ │ │ │ ├── boss_thorim.cpp │ │ │ │ ├── boss_xt002.cpp │ │ │ │ ├── boss_yoggsaron.cpp │ │ │ │ ├── instance_ulduar.cpp │ │ │ │ ├── ulduar.cpp │ │ │ │ └── ulduar.h │ │ ├── UtgardeKeep │ │ │ ├── UtgardeKeep │ │ │ │ ├── boss_ingvar_the_plunderer.cpp │ │ │ │ ├── boss_keleseth.cpp │ │ │ │ ├── boss_skarvald_dalronn.cpp │ │ │ │ ├── instance_utgarde_keep.cpp │ │ │ │ ├── utgarde_keep.cpp │ │ │ │ └── utgarde_keep.h │ │ │ └── UtgardePinnacle │ │ │ │ ├── boss_palehoof.cpp │ │ │ │ ├── boss_skadi.cpp │ │ │ │ ├── boss_svala.cpp │ │ │ │ ├── boss_ymiron.cpp │ │ │ │ ├── instance_utgarde_pinnacle.cpp │ │ │ │ └── utgarde_pinnacle.h │ │ ├── VaultOfArchavon │ │ │ ├── boss_archavon.cpp │ │ │ ├── boss_emalon.cpp │ │ │ ├── boss_koralon.cpp │ │ │ ├── boss_toravon.cpp │ │ │ ├── instance_vault_of_archavon.cpp │ │ │ └── vault_of_archavon.h │ │ ├── VioletHold │ │ │ ├── boss_cyanigosa.cpp │ │ │ ├── boss_erekem.cpp │ │ │ ├── boss_ichoron.cpp │ │ │ ├── boss_lavanthor.cpp │ │ │ ├── boss_moragg.cpp │ │ │ ├── boss_xevozz.cpp │ │ │ ├── boss_zuramat.cpp │ │ │ ├── instance_violet_hold.cpp │ │ │ ├── violet_hold.cpp │ │ │ └── violet_hold.h │ │ ├── isle_of_conquest.cpp │ │ ├── zone_borean_tundra.cpp │ │ ├── zone_crystalsong_forest.cpp │ │ ├── zone_dalaran.cpp │ │ ├── zone_dragonblight.cpp │ │ ├── zone_grizzly_hills.cpp │ │ ├── zone_howling_fjord.cpp │ │ ├── zone_icecrown.cpp │ │ ├── zone_sholazar_basin.cpp │ │ ├── zone_storm_peaks.cpp │ │ ├── zone_wintergrasp.cpp │ │ └── zone_zuldrak.cpp │ ├── OutdoorPvP │ │ ├── CMakeLists.txt │ │ ├── OutdoorPvPEP.cpp │ │ ├── OutdoorPvPEP.h │ │ ├── OutdoorPvPGH.cpp │ │ ├── OutdoorPvPGH.h │ │ ├── OutdoorPvPHP.cpp │ │ ├── OutdoorPvPHP.h │ │ ├── OutdoorPvPNA.cpp │ │ ├── OutdoorPvPNA.h │ │ ├── OutdoorPvPSI.cpp │ │ ├── OutdoorPvPSI.h │ │ ├── OutdoorPvPTF.cpp │ │ ├── OutdoorPvPTF.h │ │ ├── OutdoorPvPZM.cpp │ │ └── OutdoorPvPZM.h │ ├── Outland │ │ ├── Auchindoun │ │ │ ├── AuchenaiCrypts │ │ │ │ ├── boss_exarch_maladaar.cpp │ │ │ │ └── boss_shirrak_the_dead_watcher.cpp │ │ │ ├── ManaTombs │ │ │ │ └── boss_nexusprince_shaffar.cpp │ │ │ ├── SethekkHalls │ │ │ │ ├── boss_talon_king_ikiss.cpp │ │ │ │ ├── instance_sethekk_halls.cpp │ │ │ │ └── sethekk_halls.h │ │ │ └── ShadowLabyrinth │ │ │ │ ├── boss_ambassador_hellmaw.cpp │ │ │ │ ├── boss_blackheart_the_inciter.cpp │ │ │ │ ├── boss_grandmaster_vorpil.cpp │ │ │ │ ├── boss_murmur.cpp │ │ │ │ ├── instance_shadow_labyrinth.cpp │ │ │ │ └── shadow_labyrinth.h │ │ ├── BlackTemple │ │ │ ├── black_temple.h │ │ │ ├── boss_bloodboil.cpp │ │ │ ├── boss_illidan.cpp │ │ │ ├── boss_mother_shahraz.cpp │ │ │ ├── boss_reliquary_of_souls.cpp │ │ │ ├── boss_shade_of_akama.cpp │ │ │ ├── boss_supremus.cpp │ │ │ ├── boss_teron_gorefiend.cpp │ │ │ ├── boss_warlord_najentus.cpp │ │ │ ├── illidari_council.cpp │ │ │ └── instance_black_temple.cpp │ │ ├── CMakeLists.txt │ │ ├── CoilfangReservoir │ │ │ ├── SerpentShrine │ │ │ │ ├── boss_fathomlord_karathress.cpp │ │ │ │ ├── boss_hydross_the_unstable.cpp │ │ │ │ ├── boss_lady_vashj.cpp │ │ │ │ ├── boss_leotheras_the_blind.cpp │ │ │ │ ├── boss_lurker_below.cpp │ │ │ │ ├── boss_morogrim_tidewalker.cpp │ │ │ │ ├── instance_serpent_shrine.cpp │ │ │ │ └── serpent_shrine.h │ │ │ ├── SlavePens │ │ │ │ └── boss_ahune.cpp │ │ │ ├── SteamVault │ │ │ │ ├── boss_hydromancer_thespia.cpp │ │ │ │ ├── boss_mekgineer_steamrigger.cpp │ │ │ │ ├── boss_warlord_kalithresh.cpp │ │ │ │ ├── instance_steam_vault.cpp │ │ │ │ └── steam_vault.h │ │ │ └── underbog │ │ │ │ └── boss_the_black_stalker.cpp │ │ ├── GruulsLair │ │ │ ├── boss_gruul.cpp │ │ │ ├── boss_high_king_maulgar.cpp │ │ │ ├── gruuls_lair.h │ │ │ └── instance_gruuls_lair.cpp │ │ ├── HellfireCitadel │ │ │ ├── BloodFurnace │ │ │ │ ├── blood_furnace.h │ │ │ │ ├── boss_broggok.cpp │ │ │ │ ├── boss_kelidan_the_breaker.cpp │ │ │ │ ├── boss_the_maker.cpp │ │ │ │ └── instance_blood_furnace.cpp │ │ │ ├── HellfireRamparts │ │ │ │ ├── boss_omor_the_unscarred.cpp │ │ │ │ ├── boss_vazruden_the_herald.cpp │ │ │ │ ├── boss_watchkeeper_gargolmar.cpp │ │ │ │ ├── hellfire_ramparts.h │ │ │ │ └── instance_hellfire_ramparts.cpp │ │ │ ├── MagtheridonsLair │ │ │ │ ├── boss_magtheridon.cpp │ │ │ │ ├── instance_magtheridons_lair.cpp │ │ │ │ └── magtheridons_lair.h │ │ │ └── ShatteredHalls │ │ │ │ ├── boss_nethekurse.cpp │ │ │ │ ├── boss_warbringer_omrogg.cpp │ │ │ │ ├── boss_warchief_kargath_bladefist.cpp │ │ │ │ ├── instance_shattered_halls.cpp │ │ │ │ └── shattered_halls.h │ │ ├── TempestKeep │ │ │ ├── Eye │ │ │ │ ├── boss_alar.cpp │ │ │ │ ├── boss_astromancer.cpp │ │ │ │ ├── boss_kaelthas.cpp │ │ │ │ ├── boss_void_reaver.cpp │ │ │ │ ├── instance_the_eye.cpp │ │ │ │ └── the_eye.h │ │ │ ├── Mechanar │ │ │ │ ├── boss_gatewatcher_gyrokill.cpp │ │ │ │ ├── boss_gatewatcher_ironhand.cpp │ │ │ │ ├── boss_mechano_lord_capacitus.cpp │ │ │ │ ├── boss_nethermancer_sepethrea.cpp │ │ │ │ ├── boss_pathaleon_the_calculator.cpp │ │ │ │ ├── instance_mechanar.cpp │ │ │ │ └── mechanar.h │ │ │ ├── arcatraz │ │ │ │ ├── arcatraz.cpp │ │ │ │ ├── arcatraz.h │ │ │ │ ├── boss_dalliah_the_doomsayer.cpp │ │ │ │ ├── boss_harbinger_skyriss.cpp │ │ │ │ ├── boss_wrath_scryer_soccothrates.cpp │ │ │ │ ├── boss_zereketh_the_unbound.cpp │ │ │ │ └── instance_arcatraz.cpp │ │ │ └── botanica │ │ │ │ ├── boss_commander_sarannis.cpp │ │ │ │ ├── boss_high_botanist_freywinn.cpp │ │ │ │ ├── boss_laj.cpp │ │ │ │ ├── boss_thorngrin_the_tender.cpp │ │ │ │ ├── boss_warp_splinter.cpp │ │ │ │ ├── instance_the_botanica.cpp │ │ │ │ └── the_botanica.h │ │ ├── boss_doomlord_kazzak.cpp │ │ ├── boss_doomwalker.cpp │ │ ├── zone_blades_edge_mountains.cpp │ │ ├── zone_hellfire_peninsula.cpp │ │ ├── zone_nagrand.cpp │ │ ├── zone_netherstorm.cpp │ │ ├── zone_shadowmoon_valley.cpp │ │ ├── zone_shattrath_city.cpp │ │ ├── zone_terokkar_forest.cpp │ │ └── zone_zangarmarsh.cpp │ ├── Pet │ │ ├── CMakeLists.txt │ │ ├── pet_dk.cpp │ │ ├── pet_generic.cpp │ │ ├── pet_hunter.cpp │ │ ├── pet_mage.cpp │ │ ├── pet_priest.cpp │ │ └── pet_shaman.cpp │ ├── PrecompiledHeaders │ │ ├── ScriptPCH.cpp │ │ └── ScriptPCH.h │ ├── Spells │ │ ├── CMakeLists.txt │ │ ├── spell_dk.cpp │ │ ├── spell_druid.cpp │ │ ├── spell_generic.cpp │ │ ├── spell_hunter.cpp │ │ ├── spell_item.cpp │ │ ├── spell_mage.cpp │ │ ├── spell_paladin.cpp │ │ ├── spell_priest.cpp │ │ ├── spell_quest.cpp │ │ ├── spell_rogue.cpp │ │ ├── spell_shaman.cpp │ │ ├── spell_warlock.cpp │ │ └── spell_warrior.cpp │ └── World │ │ ├── CMakeLists.txt │ │ ├── achievement_scripts.cpp │ │ ├── areatrigger_scripts.cpp │ │ ├── boss_emerald_dragons.cpp │ │ ├── chat_logger.cpp │ │ ├── go_scripts.cpp │ │ ├── guards.cpp │ │ ├── item_scripts.cpp │ │ ├── mob_generic_creature.cpp │ │ ├── npc_innkeeper.cpp │ │ ├── npc_professions.cpp │ │ ├── npc_taxi.cpp │ │ └── npcs_special.cpp │ ├── shared │ ├── AutoPtr.h │ ├── CMakeLists.txt │ ├── Common.cpp │ ├── Common.h │ ├── CompilerDefs.h │ ├── Configuration │ │ ├── Config.cpp │ │ └── Config.h │ ├── Containers.h │ ├── Cryptography │ │ ├── ARC4.cpp │ │ ├── ARC4.h │ │ ├── Authentication │ │ │ ├── AuthCrypt.cpp │ │ │ └── AuthCrypt.h │ │ ├── BigNumber.cpp │ │ ├── BigNumber.h │ │ ├── HMACSHA1.cpp │ │ ├── HMACSHA1.h │ │ ├── OpenSSLCrypto.cpp │ │ ├── OpenSSLCrypto.h │ │ ├── SHA1.cpp │ │ ├── SHA1.h │ │ ├── SHA256.cpp │ │ ├── SHA256.h │ │ └── WardenKeyGeneration.h │ ├── DataStores │ │ ├── DBCFileLoader.cpp │ │ ├── DBCFileLoader.h │ │ └── DBCStore.h │ ├── Database │ │ ├── AdhocStatement.cpp │ │ ├── AdhocStatement.h │ │ ├── DatabaseEnv.h │ │ ├── DatabaseWorker.cpp │ │ ├── DatabaseWorker.h │ │ ├── DatabaseWorkerPool.h │ │ ├── Field.cpp │ │ ├── Field.h │ │ ├── Implementation │ │ │ ├── APIDatabase.cpp │ │ │ ├── APIDatabase.h │ │ │ ├── CharacterDatabase.cpp │ │ │ ├── CharacterDatabase.h │ │ │ ├── LoginDatabase.cpp │ │ │ ├── LoginDatabase.h │ │ │ ├── WorldDatabase.cpp │ │ │ └── WorldDatabase.h │ │ ├── MySQLConnection.cpp │ │ ├── MySQLConnection.h │ │ ├── MySQLThreading.h │ │ ├── PreparedStatement.cpp │ │ ├── PreparedStatement.h │ │ ├── QueryHolder.cpp │ │ ├── QueryHolder.h │ │ ├── QueryResult.cpp │ │ ├── QueryResult.h │ │ ├── SQLOperation.h │ │ ├── Transaction.cpp │ │ └── Transaction.h │ ├── Debugging │ │ ├── Errors.cpp │ │ ├── Errors.h │ │ ├── WheatyExceptionReport.cpp │ │ └── WheatyExceptionReport.h │ ├── Define.h │ ├── Dynamic │ │ ├── FactoryHolder.h │ │ ├── LinkedList.h │ │ ├── LinkedReference │ │ │ ├── RefManager.h │ │ │ └── Reference.h │ │ ├── ObjectRegistry.h │ │ ├── TypeContainer.h │ │ ├── TypeContainerFunctions.h │ │ ├── TypeContainerFunctionsPtr.h │ │ ├── TypeContainerVisitor.h │ │ └── TypeList.h │ ├── Logging │ │ ├── Log.cpp │ │ └── Log.h │ ├── Packets │ │ ├── ByteBuffer.cpp │ │ ├── ByteBuffer.h │ │ └── WorldPacket.h │ ├── PrecompiledHeaders │ │ ├── sharedPCH.cpp │ │ └── sharedPCH.h │ ├── SystemConfig.h │ ├── Threading │ │ ├── Callback.h │ │ ├── DelayExecutor.cpp │ │ ├── DelayExecutor.h │ │ ├── LockedQueue.h │ │ ├── MPSCQueue.h │ │ ├── ProcessPriority.cpp │ │ ├── ProcessPriority.h │ │ ├── ProducerConsumerQueue.h │ │ ├── Threading.cpp │ │ └── Threading.h │ └── Utilities │ │ ├── ByteConverter.h │ │ ├── EventProcessor.cpp │ │ ├── EventProcessor.h │ │ ├── Optional.h │ │ ├── Optional.hpp │ │ ├── ServiceWin32.cpp │ │ ├── ServiceWin32.h │ │ ├── SignalHandler.h │ │ ├── Timer.h │ │ ├── Util.cpp │ │ └── Util.h │ └── worldserver │ ├── CMakeLists.txt │ ├── CommandLine │ ├── CliRunnable.cpp │ └── CliRunnable.h │ ├── Main.cpp │ ├── Master.cpp │ ├── Master.h │ ├── PrecompiledHeaders │ ├── worldPCH.cpp │ └── worldPCH.h │ ├── RemoteAccess │ ├── RARunnable.cpp │ ├── RARunnable.h │ ├── RASocket.cpp │ └── RASocket.h │ ├── TCSoap │ ├── TCSoap.cpp │ └── TCSoap.h │ ├── WorldThread │ ├── WorldRunnable.cpp │ └── WorldRunnable.h │ ├── resource.h │ ├── worldserver.conf.dist │ ├── worldserver.ico │ └── worldserver.rc ├── voice opcodes.txt └── x.diff /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /PreLoad.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/PreLoad.cmake -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/README -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- 1 | wow: 2 | Vesperon - OS10/25 -------------------------------------------------------------------------------- /TODO_ANTICHEAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/TODO_ANTICHEAT -------------------------------------------------------------------------------- /cmake/genrev.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/cmake/genrev.cmake -------------------------------------------------------------------------------- /cmake/macros/FindACE.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/cmake/macros/FindACE.cmake -------------------------------------------------------------------------------- /cmake/macros/FindMySQL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/cmake/macros/FindMySQL.cmake -------------------------------------------------------------------------------- /cmake/macros/FindOpenSSL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/cmake/macros/FindOpenSSL.cmake -------------------------------------------------------------------------------- /cmake/macros/FindReadline.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/cmake/macros/FindReadline.cmake -------------------------------------------------------------------------------- /cmake/options.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/cmake/options.cmake -------------------------------------------------------------------------------- /cmake/platform/settings.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/cmake/platform/settings.cmake -------------------------------------------------------------------------------- /cmake/showoptions.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/cmake/showoptions.cmake -------------------------------------------------------------------------------- /dep/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/CMakeLists.txt -------------------------------------------------------------------------------- /dep/PackageList.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/PackageList.txt -------------------------------------------------------------------------------- /dep/SFMT/SFMT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/SFMT/SFMT.h -------------------------------------------------------------------------------- /dep/SFMT/randomc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/SFMT/randomc.h -------------------------------------------------------------------------------- /dep/acelite/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/AUTHORS -------------------------------------------------------------------------------- /dep/acelite/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/CMakeLists.txt -------------------------------------------------------------------------------- /dep/acelite/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/COPYING -------------------------------------------------------------------------------- /dep/acelite/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/NEWS -------------------------------------------------------------------------------- /dep/acelite/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/README -------------------------------------------------------------------------------- /dep/acelite/THANKS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/THANKS -------------------------------------------------------------------------------- /dep/acelite/VERSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/VERSION -------------------------------------------------------------------------------- /dep/acelite/ace/ACE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/ACE.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/ACE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/ACE.h -------------------------------------------------------------------------------- /dep/acelite/ace/ACE.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/ACE.inl -------------------------------------------------------------------------------- /dep/acelite/ace/ACE.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/ACE.pc.in -------------------------------------------------------------------------------- /dep/acelite/ace/ACE_crc32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/ACE_crc32.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/ACE_export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/ACE_export.h -------------------------------------------------------------------------------- /dep/acelite/ace/ARGV.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/ARGV.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/ARGV.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/ARGV.h -------------------------------------------------------------------------------- /dep/acelite/ace/ARGV.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/ARGV.inl -------------------------------------------------------------------------------- /dep/acelite/ace/ATM_Acceptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/ATM_Acceptor.h -------------------------------------------------------------------------------- /dep/acelite/ace/ATM_Addr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/ATM_Addr.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/ATM_Addr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/ATM_Addr.h -------------------------------------------------------------------------------- /dep/acelite/ace/ATM_Addr.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/ATM_Addr.inl -------------------------------------------------------------------------------- /dep/acelite/ace/ATM_Connector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/ATM_Connector.h -------------------------------------------------------------------------------- /dep/acelite/ace/ATM_Params.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/ATM_Params.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/ATM_Params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/ATM_Params.h -------------------------------------------------------------------------------- /dep/acelite/ace/ATM_Params.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/ATM_Params.inl -------------------------------------------------------------------------------- /dep/acelite/ace/ATM_QoS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/ATM_QoS.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/ATM_QoS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/ATM_QoS.h -------------------------------------------------------------------------------- /dep/acelite/ace/ATM_QoS.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/ATM_QoS.inl -------------------------------------------------------------------------------- /dep/acelite/ace/ATM_Stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/ATM_Stream.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/ATM_Stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/ATM_Stream.h -------------------------------------------------------------------------------- /dep/acelite/ace/ATM_Stream.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/ATM_Stream.inl -------------------------------------------------------------------------------- /dep/acelite/ace/Acceptor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Acceptor.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/Acceptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Acceptor.h -------------------------------------------------------------------------------- /dep/acelite/ace/Addr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Addr.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/Addr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Addr.h -------------------------------------------------------------------------------- /dep/acelite/ace/Addr.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Addr.inl -------------------------------------------------------------------------------- /dep/acelite/ace/Arg_Shifter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Arg_Shifter.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/Arg_Shifter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Arg_Shifter.h -------------------------------------------------------------------------------- /dep/acelite/ace/Array_Base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Array_Base.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/Array_Base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Array_Base.h -------------------------------------------------------------------------------- /dep/acelite/ace/Array_Base.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Array_Base.inl -------------------------------------------------------------------------------- /dep/acelite/ace/Array_Map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Array_Map.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/Array_Map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Array_Map.h -------------------------------------------------------------------------------- /dep/acelite/ace/Array_Map.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Array_Map.inl -------------------------------------------------------------------------------- /dep/acelite/ace/Assert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Assert.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/Assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Assert.h -------------------------------------------------------------------------------- /dep/acelite/ace/Asynch_IO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Asynch_IO.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/Asynch_IO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Asynch_IO.h -------------------------------------------------------------------------------- /dep/acelite/ace/Atomic_Op.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Atomic_Op.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/Atomic_Op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Atomic_Op.h -------------------------------------------------------------------------------- /dep/acelite/ace/Atomic_Op.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Atomic_Op.inl -------------------------------------------------------------------------------- /dep/acelite/ace/Atomic_Op_T.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Atomic_Op_T.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/Atomic_Op_T.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Atomic_Op_T.h -------------------------------------------------------------------------------- /dep/acelite/ace/Atomic_Op_T.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Atomic_Op_T.inl -------------------------------------------------------------------------------- /dep/acelite/ace/Auto_Event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Auto_Event.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/Auto_Event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Auto_Event.h -------------------------------------------------------------------------------- /dep/acelite/ace/Auto_Event.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Auto_Event.inl -------------------------------------------------------------------------------- /dep/acelite/ace/Auto_Functor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Auto_Functor.h -------------------------------------------------------------------------------- /dep/acelite/ace/Auto_IncDec_T.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Auto_IncDec_T.h -------------------------------------------------------------------------------- /dep/acelite/ace/Auto_Ptr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Auto_Ptr.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/Auto_Ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Auto_Ptr.h -------------------------------------------------------------------------------- /dep/acelite/ace/Auto_Ptr.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Auto_Ptr.inl -------------------------------------------------------------------------------- /dep/acelite/ace/Barrier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Barrier.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/Barrier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Barrier.h -------------------------------------------------------------------------------- /dep/acelite/ace/Barrier.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Barrier.inl -------------------------------------------------------------------------------- /dep/acelite/ace/Basic_Stats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Basic_Stats.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/Basic_Stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Basic_Stats.h -------------------------------------------------------------------------------- /dep/acelite/ace/Basic_Stats.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Basic_Stats.inl -------------------------------------------------------------------------------- /dep/acelite/ace/Basic_Types.cpp: -------------------------------------------------------------------------------- 1 | #include "ace/Basic_Types.h" 2 | -------------------------------------------------------------------------------- /dep/acelite/ace/Basic_Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Basic_Types.h -------------------------------------------------------------------------------- /dep/acelite/ace/Bound_Ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Bound_Ptr.h -------------------------------------------------------------------------------- /dep/acelite/ace/Bound_Ptr.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Bound_Ptr.inl -------------------------------------------------------------------------------- /dep/acelite/ace/CDR_Base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/CDR_Base.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/CDR_Base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/CDR_Base.h -------------------------------------------------------------------------------- /dep/acelite/ace/CDR_Base.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/CDR_Base.inl -------------------------------------------------------------------------------- /dep/acelite/ace/CDR_Size.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/CDR_Size.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/CDR_Size.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/CDR_Size.h -------------------------------------------------------------------------------- /dep/acelite/ace/CDR_Size.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/CDR_Size.inl -------------------------------------------------------------------------------- /dep/acelite/ace/CDR_Stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/CDR_Stream.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/CDR_Stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/CDR_Stream.h -------------------------------------------------------------------------------- /dep/acelite/ace/CDR_Stream.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/CDR_Stream.inl -------------------------------------------------------------------------------- /dep/acelite/ace/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/CMakeLists.txt -------------------------------------------------------------------------------- /dep/acelite/ace/CORBA_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/CORBA_macros.h -------------------------------------------------------------------------------- /dep/acelite/ace/Capabilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Capabilities.h -------------------------------------------------------------------------------- /dep/acelite/ace/Cleanup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Cleanup.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/Cleanup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Cleanup.h -------------------------------------------------------------------------------- /dep/acelite/ace/Cleanup.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Cleanup.inl -------------------------------------------------------------------------------- /dep/acelite/ace/Codecs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Codecs.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/Codecs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Codecs.h -------------------------------------------------------------------------------- /dep/acelite/ace/Condition_T.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Condition_T.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/Condition_T.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Condition_T.h -------------------------------------------------------------------------------- /dep/acelite/ace/Condition_T.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Condition_T.inl -------------------------------------------------------------------------------- /dep/acelite/ace/Configuration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Configuration.h -------------------------------------------------------------------------------- /dep/acelite/ace/Connector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Connector.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/Connector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Connector.h -------------------------------------------------------------------------------- /dep/acelite/ace/Containers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Containers.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/Containers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Containers.h -------------------------------------------------------------------------------- /dep/acelite/ace/Containers.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Containers.inl -------------------------------------------------------------------------------- /dep/acelite/ace/Containers_T.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Containers_T.h -------------------------------------------------------------------------------- /dep/acelite/ace/Copy_Disabled.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Copy_Disabled.h -------------------------------------------------------------------------------- /dep/acelite/ace/DEV.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/DEV.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/DEV.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/DEV.h -------------------------------------------------------------------------------- /dep/acelite/ace/DEV.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/DEV.inl -------------------------------------------------------------------------------- /dep/acelite/ace/DEV_Addr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/DEV_Addr.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/DEV_Addr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/DEV_Addr.h -------------------------------------------------------------------------------- /dep/acelite/ace/DEV_Addr.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/DEV_Addr.inl -------------------------------------------------------------------------------- /dep/acelite/ace/DEV_Connector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/DEV_Connector.h -------------------------------------------------------------------------------- /dep/acelite/ace/DEV_IO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/DEV_IO.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/DEV_IO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/DEV_IO.h -------------------------------------------------------------------------------- /dep/acelite/ace/DEV_IO.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/DEV_IO.inl -------------------------------------------------------------------------------- /dep/acelite/ace/DLL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/DLL.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/DLL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/DLL.h -------------------------------------------------------------------------------- /dep/acelite/ace/DLL_Manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/DLL_Manager.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/DLL_Manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/DLL_Manager.h -------------------------------------------------------------------------------- /dep/acelite/ace/Date_Time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Date_Time.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/Date_Time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Date_Time.h -------------------------------------------------------------------------------- /dep/acelite/ace/Date_Time.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Date_Time.inl -------------------------------------------------------------------------------- /dep/acelite/ace/Dirent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Dirent.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/Dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Dirent.h -------------------------------------------------------------------------------- /dep/acelite/ace/Dirent.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Dirent.inl -------------------------------------------------------------------------------- /dep/acelite/ace/Dump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Dump.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/Dump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Dump.h -------------------------------------------------------------------------------- /dep/acelite/ace/Dump_T.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Dump_T.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/Dump_T.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Dump_T.h -------------------------------------------------------------------------------- /dep/acelite/ace/Dynamic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Dynamic.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/Dynamic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Dynamic.h -------------------------------------------------------------------------------- /dep/acelite/ace/Dynamic.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Dynamic.inl -------------------------------------------------------------------------------- /dep/acelite/ace/ETCL/ETCL.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/ETCL/ETCL.ll -------------------------------------------------------------------------------- /dep/acelite/ace/ETCL/ETCL.mpc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/ETCL/ETCL.mpc -------------------------------------------------------------------------------- /dep/acelite/ace/ETCL/ETCL.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/ETCL/ETCL.yy -------------------------------------------------------------------------------- /dep/acelite/ace/ETCL/ETCL_l.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/ETCL/ETCL_l.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/ETCL/ETCL_y.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/ETCL/ETCL_y.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/ETCL/ETCL_y.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/ETCL/ETCL_y.h -------------------------------------------------------------------------------- /dep/acelite/ace/Env_Value_T.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Env_Value_T.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/Env_Value_T.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Env_Value_T.h -------------------------------------------------------------------------------- /dep/acelite/ace/Env_Value_T.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Env_Value_T.inl -------------------------------------------------------------------------------- /dep/acelite/ace/Event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Event.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/Event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Event.h -------------------------------------------------------------------------------- /dep/acelite/ace/Event.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Event.inl -------------------------------------------------------------------------------- /dep/acelite/ace/Event_Base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Event_Base.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/Event_Base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Event_Base.h -------------------------------------------------------------------------------- /dep/acelite/ace/Event_Base.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Event_Base.inl -------------------------------------------------------------------------------- /dep/acelite/ace/Event_Handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Event_Handler.h -------------------------------------------------------------------------------- /dep/acelite/ace/FIFO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/FIFO.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/FIFO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/FIFO.h -------------------------------------------------------------------------------- /dep/acelite/ace/FIFO.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/FIFO.inl -------------------------------------------------------------------------------- /dep/acelite/ace/FIFO_Recv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/FIFO_Recv.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/FIFO_Recv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/FIFO_Recv.h -------------------------------------------------------------------------------- /dep/acelite/ace/FIFO_Recv.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/FIFO_Recv.inl -------------------------------------------------------------------------------- /dep/acelite/ace/FIFO_Recv_Msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/FIFO_Recv_Msg.h -------------------------------------------------------------------------------- /dep/acelite/ace/FIFO_Send.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/FIFO_Send.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/FIFO_Send.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/FIFO_Send.h -------------------------------------------------------------------------------- /dep/acelite/ace/FIFO_Send.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/FIFO_Send.inl -------------------------------------------------------------------------------- /dep/acelite/ace/FIFO_Send_Msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/FIFO_Send_Msg.h -------------------------------------------------------------------------------- /dep/acelite/ace/FILE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/FILE.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/FILE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/FILE.h -------------------------------------------------------------------------------- /dep/acelite/ace/FILE.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/FILE.inl -------------------------------------------------------------------------------- /dep/acelite/ace/FILE_Addr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/FILE_Addr.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/FILE_Addr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/FILE_Addr.h -------------------------------------------------------------------------------- /dep/acelite/ace/FILE_Addr.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/FILE_Addr.inl -------------------------------------------------------------------------------- /dep/acelite/ace/FILE_IO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/FILE_IO.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/FILE_IO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/FILE_IO.h -------------------------------------------------------------------------------- /dep/acelite/ace/FILE_IO.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/FILE_IO.inl -------------------------------------------------------------------------------- /dep/acelite/ace/File_Lock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/File_Lock.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/File_Lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/File_Lock.h -------------------------------------------------------------------------------- /dep/acelite/ace/File_Lock.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/File_Lock.inl -------------------------------------------------------------------------------- /dep/acelite/ace/Filecache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Filecache.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/Filecache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Filecache.h -------------------------------------------------------------------------------- /dep/acelite/ace/Flag_Manip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Flag_Manip.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/Flag_Manip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Flag_Manip.h -------------------------------------------------------------------------------- /dep/acelite/ace/Flag_Manip.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Flag_Manip.inl -------------------------------------------------------------------------------- /dep/acelite/ace/Free_List.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Free_List.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/Free_List.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Free_List.h -------------------------------------------------------------------------------- /dep/acelite/ace/Functor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Functor.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/Functor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Functor.h -------------------------------------------------------------------------------- /dep/acelite/ace/Functor.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Functor.inl -------------------------------------------------------------------------------- /dep/acelite/ace/Functor_T.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Functor_T.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/Functor_T.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Functor_T.h -------------------------------------------------------------------------------- /dep/acelite/ace/Functor_T.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Functor_T.inl -------------------------------------------------------------------------------- /dep/acelite/ace/Future.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Future.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/Future.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Future.h -------------------------------------------------------------------------------- /dep/acelite/ace/Future_Set.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Future_Set.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/Future_Set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Future_Set.h -------------------------------------------------------------------------------- /dep/acelite/ace/Get_Opt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Get_Opt.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/Get_Opt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Get_Opt.h -------------------------------------------------------------------------------- /dep/acelite/ace/Get_Opt.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Get_Opt.inl -------------------------------------------------------------------------------- /dep/acelite/ace/Global_Macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Global_Macros.h -------------------------------------------------------------------------------- /dep/acelite/ace/Guard_T.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Guard_T.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/Guard_T.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Guard_T.h -------------------------------------------------------------------------------- /dep/acelite/ace/Guard_T.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Guard_T.inl -------------------------------------------------------------------------------- /dep/acelite/ace/Handle_Ops.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Handle_Ops.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/Handle_Ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Handle_Ops.h -------------------------------------------------------------------------------- /dep/acelite/ace/Handle_Set.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Handle_Set.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/Handle_Set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Handle_Set.h -------------------------------------------------------------------------------- /dep/acelite/ace/Handle_Set.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Handle_Set.inl -------------------------------------------------------------------------------- /dep/acelite/ace/Hashable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Hashable.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/Hashable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Hashable.h -------------------------------------------------------------------------------- /dep/acelite/ace/Hashable.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Hashable.inl -------------------------------------------------------------------------------- /dep/acelite/ace/ICMP_Socket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/ICMP_Socket.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/ICMP_Socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/ICMP_Socket.h -------------------------------------------------------------------------------- /dep/acelite/ace/INET_Addr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/INET_Addr.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/INET_Addr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/INET_Addr.h -------------------------------------------------------------------------------- /dep/acelite/ace/INET_Addr.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/INET_Addr.inl -------------------------------------------------------------------------------- /dep/acelite/ace/IOStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/IOStream.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/IOStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/IOStream.h -------------------------------------------------------------------------------- /dep/acelite/ace/IOStream_T.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/IOStream_T.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/IOStream_T.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/IOStream_T.h -------------------------------------------------------------------------------- /dep/acelite/ace/IOStream_T.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/IOStream_T.inl -------------------------------------------------------------------------------- /dep/acelite/ace/IO_Cntl_Msg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/IO_Cntl_Msg.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/IO_Cntl_Msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/IO_Cntl_Msg.h -------------------------------------------------------------------------------- /dep/acelite/ace/IO_Cntl_Msg.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/IO_Cntl_Msg.inl -------------------------------------------------------------------------------- /dep/acelite/ace/IO_SAP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/IO_SAP.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/IO_SAP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/IO_SAP.h -------------------------------------------------------------------------------- /dep/acelite/ace/IO_SAP.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/IO_SAP.inl -------------------------------------------------------------------------------- /dep/acelite/ace/IPC_SAP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/IPC_SAP.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/IPC_SAP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/IPC_SAP.h -------------------------------------------------------------------------------- /dep/acelite/ace/IPC_SAP.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/IPC_SAP.inl -------------------------------------------------------------------------------- /dep/acelite/ace/If_Then_Else.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/If_Then_Else.h -------------------------------------------------------------------------------- /dep/acelite/ace/Init_ACE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Init_ACE.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/Init_ACE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Init_ACE.h -------------------------------------------------------------------------------- /dep/acelite/ace/LSOCK.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/LSOCK.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/LSOCK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/LSOCK.h -------------------------------------------------------------------------------- /dep/acelite/ace/LSOCK.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/LSOCK.inl -------------------------------------------------------------------------------- /dep/acelite/ace/LSOCK_CODgram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/LSOCK_CODgram.h -------------------------------------------------------------------------------- /dep/acelite/ace/LSOCK_Dgram.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/LSOCK_Dgram.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/LSOCK_Dgram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/LSOCK_Dgram.h -------------------------------------------------------------------------------- /dep/acelite/ace/LSOCK_Dgram.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/LSOCK_Dgram.inl -------------------------------------------------------------------------------- /dep/acelite/ace/LSOCK_Stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/LSOCK_Stream.h -------------------------------------------------------------------------------- /dep/acelite/ace/Lib_Find.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Lib_Find.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/Lib_Find.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Lib_Find.h -------------------------------------------------------------------------------- /dep/acelite/ace/Local_Tokens.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Local_Tokens.h -------------------------------------------------------------------------------- /dep/acelite/ace/Lock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Lock.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/Lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Lock.h -------------------------------------------------------------------------------- /dep/acelite/ace/Lock.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Lock.inl -------------------------------------------------------------------------------- /dep/acelite/ace/Log_Category.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Log_Category.h -------------------------------------------------------------------------------- /dep/acelite/ace/Log_Msg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Log_Msg.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/Log_Msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Log_Msg.h -------------------------------------------------------------------------------- /dep/acelite/ace/Log_Msg.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Log_Msg.inl -------------------------------------------------------------------------------- /dep/acelite/ace/Log_Msg_IPC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Log_Msg_IPC.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/Log_Msg_IPC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Log_Msg_IPC.h -------------------------------------------------------------------------------- /dep/acelite/ace/Log_Priority.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Log_Priority.h -------------------------------------------------------------------------------- /dep/acelite/ace/Log_Record.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Log_Record.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/Log_Record.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Log_Record.h -------------------------------------------------------------------------------- /dep/acelite/ace/Log_Record.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Log_Record.inl -------------------------------------------------------------------------------- /dep/acelite/ace/MEM_Acceptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/MEM_Acceptor.h -------------------------------------------------------------------------------- /dep/acelite/ace/MEM_Addr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/MEM_Addr.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/MEM_Addr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/MEM_Addr.h -------------------------------------------------------------------------------- /dep/acelite/ace/MEM_Addr.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/MEM_Addr.inl -------------------------------------------------------------------------------- /dep/acelite/ace/MEM_Connector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/MEM_Connector.h -------------------------------------------------------------------------------- /dep/acelite/ace/MEM_IO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/MEM_IO.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/MEM_IO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/MEM_IO.h -------------------------------------------------------------------------------- /dep/acelite/ace/MEM_IO.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/MEM_IO.inl -------------------------------------------------------------------------------- /dep/acelite/ace/MEM_SAP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/MEM_SAP.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/MEM_SAP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/MEM_SAP.h -------------------------------------------------------------------------------- /dep/acelite/ace/MEM_SAP.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/MEM_SAP.inl -------------------------------------------------------------------------------- /dep/acelite/ace/MEM_Stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/MEM_Stream.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/MEM_Stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/MEM_Stream.h -------------------------------------------------------------------------------- /dep/acelite/ace/MEM_Stream.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/MEM_Stream.inl -------------------------------------------------------------------------------- /dep/acelite/ace/Malloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Malloc.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/Malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Malloc.h -------------------------------------------------------------------------------- /dep/acelite/ace/Malloc.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Malloc.inl -------------------------------------------------------------------------------- /dep/acelite/ace/Malloc_Base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Malloc_Base.h -------------------------------------------------------------------------------- /dep/acelite/ace/Malloc_T.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Malloc_T.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/Malloc_T.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Malloc_T.h -------------------------------------------------------------------------------- /dep/acelite/ace/Malloc_T.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Malloc_T.inl -------------------------------------------------------------------------------- /dep/acelite/ace/Manual_Event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Manual_Event.h -------------------------------------------------------------------------------- /dep/acelite/ace/Map_Manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Map_Manager.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/Map_Manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Map_Manager.h -------------------------------------------------------------------------------- /dep/acelite/ace/Map_Manager.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Map_Manager.inl -------------------------------------------------------------------------------- /dep/acelite/ace/Map_T.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Map_T.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/Map_T.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Map_T.h -------------------------------------------------------------------------------- /dep/acelite/ace/Map_T.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Map_T.inl -------------------------------------------------------------------------------- /dep/acelite/ace/Mem_Map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Mem_Map.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/Mem_Map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Mem_Map.h -------------------------------------------------------------------------------- /dep/acelite/ace/Mem_Map.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Mem_Map.inl -------------------------------------------------------------------------------- /dep/acelite/ace/Memory_Pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Memory_Pool.h -------------------------------------------------------------------------------- /dep/acelite/ace/Message_Block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Message_Block.h -------------------------------------------------------------------------------- /dep/acelite/ace/Message_Queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Message_Queue.h -------------------------------------------------------------------------------- /dep/acelite/ace/Metrics_Cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Metrics_Cache.h -------------------------------------------------------------------------------- /dep/acelite/ace/Min_Max.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Min_Max.h -------------------------------------------------------------------------------- /dep/acelite/ace/Module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Module.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/Module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Module.h -------------------------------------------------------------------------------- /dep/acelite/ace/Module.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Module.inl -------------------------------------------------------------------------------- /dep/acelite/ace/Monitor_Admin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Monitor_Admin.h -------------------------------------------------------------------------------- /dep/acelite/ace/Monitor_Base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Monitor_Base.h -------------------------------------------------------------------------------- /dep/acelite/ace/Monitor_Size.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Monitor_Size.h -------------------------------------------------------------------------------- /dep/acelite/ace/Mutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Mutex.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/Mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Mutex.h -------------------------------------------------------------------------------- /dep/acelite/ace/Mutex.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Mutex.inl -------------------------------------------------------------------------------- /dep/acelite/ace/NT_Service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/NT_Service.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/NT_Service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/NT_Service.h -------------------------------------------------------------------------------- /dep/acelite/ace/NT_Service.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/NT_Service.inl -------------------------------------------------------------------------------- /dep/acelite/ace/Name_Proxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Name_Proxy.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/Name_Proxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Name_Proxy.h -------------------------------------------------------------------------------- /dep/acelite/ace/Name_Space.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Name_Space.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/Name_Space.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Name_Space.h -------------------------------------------------------------------------------- /dep/acelite/ace/Netlink_Addr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Netlink_Addr.h -------------------------------------------------------------------------------- /dep/acelite/ace/Node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Node.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/Node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Node.h -------------------------------------------------------------------------------- /dep/acelite/ace/Null_Barrier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Null_Barrier.h -------------------------------------------------------------------------------- /dep/acelite/ace/Null_Mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Null_Mutex.h -------------------------------------------------------------------------------- /dep/acelite/ace/OS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/OS.h -------------------------------------------------------------------------------- /dep/acelite/ace/OS_Errno.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/OS_Errno.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/OS_Errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/OS_Errno.h -------------------------------------------------------------------------------- /dep/acelite/ace/OS_Errno.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/OS_Errno.inl -------------------------------------------------------------------------------- /dep/acelite/ace/OS_Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/OS_Memory.h -------------------------------------------------------------------------------- /dep/acelite/ace/OS_NS_Thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/OS_NS_Thread.h -------------------------------------------------------------------------------- /dep/acelite/ace/OS_NS_ctype.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/OS_NS_ctype.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/OS_NS_ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/OS_NS_ctype.h -------------------------------------------------------------------------------- /dep/acelite/ace/OS_NS_ctype.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/OS_NS_ctype.inl -------------------------------------------------------------------------------- /dep/acelite/ace/OS_NS_dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/OS_NS_dirent.h -------------------------------------------------------------------------------- /dep/acelite/ace/OS_NS_dlfcn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/OS_NS_dlfcn.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/OS_NS_dlfcn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/OS_NS_dlfcn.h -------------------------------------------------------------------------------- /dep/acelite/ace/OS_NS_dlfcn.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/OS_NS_dlfcn.inl -------------------------------------------------------------------------------- /dep/acelite/ace/OS_NS_errno.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/OS_NS_errno.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/OS_NS_errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/OS_NS_errno.h -------------------------------------------------------------------------------- /dep/acelite/ace/OS_NS_errno.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/OS_NS_errno.inl -------------------------------------------------------------------------------- /dep/acelite/ace/OS_NS_fcntl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/OS_NS_fcntl.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/OS_NS_fcntl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/OS_NS_fcntl.h -------------------------------------------------------------------------------- /dep/acelite/ace/OS_NS_fcntl.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/OS_NS_fcntl.inl -------------------------------------------------------------------------------- /dep/acelite/ace/OS_NS_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/OS_NS_macros.h -------------------------------------------------------------------------------- /dep/acelite/ace/OS_NS_math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/OS_NS_math.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/OS_NS_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/OS_NS_math.h -------------------------------------------------------------------------------- /dep/acelite/ace/OS_NS_math.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/OS_NS_math.inl -------------------------------------------------------------------------------- /dep/acelite/ace/OS_NS_netdb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/OS_NS_netdb.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/OS_NS_netdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/OS_NS_netdb.h -------------------------------------------------------------------------------- /dep/acelite/ace/OS_NS_netdb.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/OS_NS_netdb.inl -------------------------------------------------------------------------------- /dep/acelite/ace/OS_NS_poll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/OS_NS_poll.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/OS_NS_poll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/OS_NS_poll.h -------------------------------------------------------------------------------- /dep/acelite/ace/OS_NS_poll.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/OS_NS_poll.inl -------------------------------------------------------------------------------- /dep/acelite/ace/OS_NS_pwd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/OS_NS_pwd.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/OS_NS_pwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/OS_NS_pwd.h -------------------------------------------------------------------------------- /dep/acelite/ace/OS_NS_pwd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/OS_NS_pwd.inl -------------------------------------------------------------------------------- /dep/acelite/ace/OS_NS_regex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/OS_NS_regex.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/OS_NS_regex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/OS_NS_regex.h -------------------------------------------------------------------------------- /dep/acelite/ace/OS_NS_regex.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/OS_NS_regex.inl -------------------------------------------------------------------------------- /dep/acelite/ace/OS_NS_signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/OS_NS_signal.h -------------------------------------------------------------------------------- /dep/acelite/ace/OS_NS_stdio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/OS_NS_stdio.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/OS_NS_stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/OS_NS_stdio.h -------------------------------------------------------------------------------- /dep/acelite/ace/OS_NS_stdio.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/OS_NS_stdio.inl -------------------------------------------------------------------------------- /dep/acelite/ace/OS_NS_stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/OS_NS_stdlib.h -------------------------------------------------------------------------------- /dep/acelite/ace/OS_NS_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/OS_NS_string.h -------------------------------------------------------------------------------- /dep/acelite/ace/OS_NS_strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/OS_NS_strings.h -------------------------------------------------------------------------------- /dep/acelite/ace/OS_NS_stropts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/OS_NS_stropts.h -------------------------------------------------------------------------------- /dep/acelite/ace/OS_NS_sys_msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/OS_NS_sys_msg.h -------------------------------------------------------------------------------- /dep/acelite/ace/OS_NS_sys_shm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/OS_NS_sys_shm.h -------------------------------------------------------------------------------- /dep/acelite/ace/OS_NS_sys_uio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/OS_NS_sys_uio.h -------------------------------------------------------------------------------- /dep/acelite/ace/OS_NS_time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/OS_NS_time.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/OS_NS_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/OS_NS_time.h -------------------------------------------------------------------------------- /dep/acelite/ace/OS_NS_time.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/OS_NS_time.inl -------------------------------------------------------------------------------- /dep/acelite/ace/OS_NS_unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/OS_NS_unistd.h -------------------------------------------------------------------------------- /dep/acelite/ace/OS_NS_wchar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/OS_NS_wchar.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/OS_NS_wchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/OS_NS_wchar.h -------------------------------------------------------------------------------- /dep/acelite/ace/OS_NS_wchar.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/OS_NS_wchar.inl -------------------------------------------------------------------------------- /dep/acelite/ace/OS_NS_wctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/OS_NS_wctype.h -------------------------------------------------------------------------------- /dep/acelite/ace/OS_QoS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/OS_QoS.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/OS_QoS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/OS_QoS.h -------------------------------------------------------------------------------- /dep/acelite/ace/OS_TLI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/OS_TLI.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/OS_TLI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/OS_TLI.h -------------------------------------------------------------------------------- /dep/acelite/ace/OS_TLI.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/OS_TLI.inl -------------------------------------------------------------------------------- /dep/acelite/ace/OS_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/OS_main.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/OS_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/OS_main.h -------------------------------------------------------------------------------- /dep/acelite/ace/Obchunk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Obchunk.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/Obchunk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Obchunk.h -------------------------------------------------------------------------------- /dep/acelite/ace/Obchunk.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Obchunk.inl -------------------------------------------------------------------------------- /dep/acelite/ace/Obstack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Obstack.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/Obstack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Obstack.h -------------------------------------------------------------------------------- /dep/acelite/ace/Obstack_T.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Obstack_T.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/Obstack_T.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Obstack_T.h -------------------------------------------------------------------------------- /dep/acelite/ace/Obstack_T.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Obstack_T.inl -------------------------------------------------------------------------------- /dep/acelite/ace/PI_Malloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/PI_Malloc.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/PI_Malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/PI_Malloc.h -------------------------------------------------------------------------------- /dep/acelite/ace/PI_Malloc.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/PI_Malloc.inl -------------------------------------------------------------------------------- /dep/acelite/ace/Pair_T.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Pair_T.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/Pair_T.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Pair_T.h -------------------------------------------------------------------------------- /dep/acelite/ace/Pair_T.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Pair_T.inl -------------------------------------------------------------------------------- /dep/acelite/ace/Parse_Node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Parse_Node.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/Parse_Node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Parse_Node.h -------------------------------------------------------------------------------- /dep/acelite/ace/Ping_Socket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Ping_Socket.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/Ping_Socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Ping_Socket.h -------------------------------------------------------------------------------- /dep/acelite/ace/Ping_Socket.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Ping_Socket.inl -------------------------------------------------------------------------------- /dep/acelite/ace/Pipe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Pipe.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/Pipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Pipe.h -------------------------------------------------------------------------------- /dep/acelite/ace/Pipe.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Pipe.inl -------------------------------------------------------------------------------- /dep/acelite/ace/PrecompiledHeaders/WinAcePCH.cpp: -------------------------------------------------------------------------------- 1 | #include "WinAcePCH.h" 2 | 3 | 4 | -------------------------------------------------------------------------------- /dep/acelite/ace/Proactor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Proactor.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/Proactor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Proactor.h -------------------------------------------------------------------------------- /dep/acelite/ace/Proactor.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Proactor.inl -------------------------------------------------------------------------------- /dep/acelite/ace/Proactor_Impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Proactor_Impl.h -------------------------------------------------------------------------------- /dep/acelite/ace/Process.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Process.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/Process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Process.h -------------------------------------------------------------------------------- /dep/acelite/ace/Process.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Process.inl -------------------------------------------------------------------------------- /dep/acelite/ace/Process_Mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Process_Mutex.h -------------------------------------------------------------------------------- /dep/acelite/ace/Profile_Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Profile_Timer.h -------------------------------------------------------------------------------- /dep/acelite/ace/QoS/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/QoS/README -------------------------------------------------------------------------------- /dep/acelite/ace/QoS/qos.mpc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/QoS/qos.mpc -------------------------------------------------------------------------------- /dep/acelite/ace/QtReactor/.gitignore: -------------------------------------------------------------------------------- 1 | /QtReactor_moc.cpp 2 | -------------------------------------------------------------------------------- /dep/acelite/ace/RB_Tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/RB_Tree.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/RB_Tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/RB_Tree.h -------------------------------------------------------------------------------- /dep/acelite/ace/RB_Tree.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/RB_Tree.inl -------------------------------------------------------------------------------- /dep/acelite/ace/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/README -------------------------------------------------------------------------------- /dep/acelite/ace/RW_Mutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/RW_Mutex.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/RW_Mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/RW_Mutex.h -------------------------------------------------------------------------------- /dep/acelite/ace/RW_Mutex.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/RW_Mutex.inl -------------------------------------------------------------------------------- /dep/acelite/ace/Reactor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Reactor.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/Reactor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Reactor.h -------------------------------------------------------------------------------- /dep/acelite/ace/Reactor.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Reactor.inl -------------------------------------------------------------------------------- /dep/acelite/ace/Reactor_Impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Reactor_Impl.h -------------------------------------------------------------------------------- /dep/acelite/ace/Read_Buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Read_Buffer.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/Read_Buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Read_Buffer.h -------------------------------------------------------------------------------- /dep/acelite/ace/Read_Buffer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Read_Buffer.inl -------------------------------------------------------------------------------- /dep/acelite/ace/Recyclable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Recyclable.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/Recyclable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Recyclable.h -------------------------------------------------------------------------------- /dep/acelite/ace/Recyclable.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Recyclable.inl -------------------------------------------------------------------------------- /dep/acelite/ace/Registry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Registry.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/Registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Registry.h -------------------------------------------------------------------------------- /dep/acelite/ace/Remote_Tokens.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Remote_Tokens.h -------------------------------------------------------------------------------- /dep/acelite/ace/Rtems_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Rtems_init.c -------------------------------------------------------------------------------- /dep/acelite/ace/SOCK.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/SOCK.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/SOCK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/SOCK.h -------------------------------------------------------------------------------- /dep/acelite/ace/SOCK.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/SOCK.inl -------------------------------------------------------------------------------- /dep/acelite/ace/SOCK_Acceptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/SOCK_Acceptor.h -------------------------------------------------------------------------------- /dep/acelite/ace/SOCK_CODgram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/SOCK_CODgram.h -------------------------------------------------------------------------------- /dep/acelite/ace/SOCK_Dgram.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/SOCK_Dgram.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/SOCK_Dgram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/SOCK_Dgram.h -------------------------------------------------------------------------------- /dep/acelite/ace/SOCK_Dgram.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/SOCK_Dgram.inl -------------------------------------------------------------------------------- /dep/acelite/ace/SOCK_IO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/SOCK_IO.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/SOCK_IO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/SOCK_IO.h -------------------------------------------------------------------------------- /dep/acelite/ace/SOCK_IO.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/SOCK_IO.inl -------------------------------------------------------------------------------- /dep/acelite/ace/SOCK_Netlink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/SOCK_Netlink.h -------------------------------------------------------------------------------- /dep/acelite/ace/SOCK_Stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/SOCK_Stream.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/SOCK_Stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/SOCK_Stream.h -------------------------------------------------------------------------------- /dep/acelite/ace/SOCK_Stream.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/SOCK_Stream.inl -------------------------------------------------------------------------------- /dep/acelite/ace/SPIPE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/SPIPE.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/SPIPE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/SPIPE.h -------------------------------------------------------------------------------- /dep/acelite/ace/SPIPE.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/SPIPE.inl -------------------------------------------------------------------------------- /dep/acelite/ace/SPIPE_Addr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/SPIPE_Addr.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/SPIPE_Addr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/SPIPE_Addr.h -------------------------------------------------------------------------------- /dep/acelite/ace/SPIPE_Addr.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/SPIPE_Addr.inl -------------------------------------------------------------------------------- /dep/acelite/ace/SPIPE_Stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/SPIPE_Stream.h -------------------------------------------------------------------------------- /dep/acelite/ace/SSL/SSL_SOCK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/SSL/SSL_SOCK.h -------------------------------------------------------------------------------- /dep/acelite/ace/SSL/ssl.mpc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/SSL/ssl.mpc -------------------------------------------------------------------------------- /dep/acelite/ace/SSL/sslconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/SSL/sslconf.h -------------------------------------------------------------------------------- /dep/acelite/ace/SString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/SString.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/SString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/SString.h -------------------------------------------------------------------------------- /dep/acelite/ace/SString.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/SString.inl -------------------------------------------------------------------------------- /dep/acelite/ace/SStringfwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/SStringfwd.h -------------------------------------------------------------------------------- /dep/acelite/ace/SUN_Proactor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/SUN_Proactor.h -------------------------------------------------------------------------------- /dep/acelite/ace/SV_Message.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/SV_Message.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/SV_Message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/SV_Message.h -------------------------------------------------------------------------------- /dep/acelite/ace/SV_Message.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/SV_Message.inl -------------------------------------------------------------------------------- /dep/acelite/ace/Sched_Params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Sched_Params.h -------------------------------------------------------------------------------- /dep/acelite/ace/Semaphore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Semaphore.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/Semaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Semaphore.h -------------------------------------------------------------------------------- /dep/acelite/ace/Semaphore.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Semaphore.inl -------------------------------------------------------------------------------- /dep/acelite/ace/Service_Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Service_Types.h -------------------------------------------------------------------------------- /dep/acelite/ace/Shared_Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Shared_Memory.h -------------------------------------------------------------------------------- /dep/acelite/ace/Shared_Object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Shared_Object.h -------------------------------------------------------------------------------- /dep/acelite/ace/Sig_Adapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Sig_Adapter.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/Sig_Adapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Sig_Adapter.h -------------------------------------------------------------------------------- /dep/acelite/ace/Sig_Handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Sig_Handler.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/Sig_Handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Sig_Handler.h -------------------------------------------------------------------------------- /dep/acelite/ace/Sig_Handler.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Sig_Handler.inl -------------------------------------------------------------------------------- /dep/acelite/ace/Signal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Signal.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/Signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Signal.h -------------------------------------------------------------------------------- /dep/acelite/ace/Signal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Signal.inl -------------------------------------------------------------------------------- /dep/acelite/ace/Singleton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Singleton.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/Singleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Singleton.h -------------------------------------------------------------------------------- /dep/acelite/ace/Singleton.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Singleton.inl -------------------------------------------------------------------------------- /dep/acelite/ace/Sock_Connect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Sock_Connect.h -------------------------------------------------------------------------------- /dep/acelite/ace/Stack_Trace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Stack_Trace.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/Stack_Trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Stack_Trace.h -------------------------------------------------------------------------------- /dep/acelite/ace/Stats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Stats.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/Stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Stats.h -------------------------------------------------------------------------------- /dep/acelite/ace/Stats.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Stats.inl -------------------------------------------------------------------------------- /dep/acelite/ace/Strategies_T.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Strategies_T.h -------------------------------------------------------------------------------- /dep/acelite/ace/Stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Stream.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/Stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Stream.h -------------------------------------------------------------------------------- /dep/acelite/ace/Stream.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Stream.inl -------------------------------------------------------------------------------- /dep/acelite/ace/String_Base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/String_Base.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/String_Base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/String_Base.h -------------------------------------------------------------------------------- /dep/acelite/ace/String_Base.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/String_Base.inl -------------------------------------------------------------------------------- /dep/acelite/ace/Svc_Conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Svc_Conf.h -------------------------------------------------------------------------------- /dep/acelite/ace/Svc_Conf.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Svc_Conf.y -------------------------------------------------------------------------------- /dep/acelite/ace/Svc_Conf_y.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Svc_Conf_y.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/Svc_Handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Svc_Handler.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/Svc_Handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Svc_Handler.h -------------------------------------------------------------------------------- /dep/acelite/ace/Synch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Synch.h -------------------------------------------------------------------------------- /dep/acelite/ace/Synch_Options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Synch_Options.h -------------------------------------------------------------------------------- /dep/acelite/ace/Synch_Traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Synch_Traits.h -------------------------------------------------------------------------------- /dep/acelite/ace/System_Time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/System_Time.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/System_Time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/System_Time.h -------------------------------------------------------------------------------- /dep/acelite/ace/TLI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/TLI.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/TLI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/TLI.h -------------------------------------------------------------------------------- /dep/acelite/ace/TLI.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/TLI.inl -------------------------------------------------------------------------------- /dep/acelite/ace/TLI_Acceptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/TLI_Acceptor.h -------------------------------------------------------------------------------- /dep/acelite/ace/TLI_Connector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/TLI_Connector.h -------------------------------------------------------------------------------- /dep/acelite/ace/TLI_Stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/TLI_Stream.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/TLI_Stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/TLI_Stream.h -------------------------------------------------------------------------------- /dep/acelite/ace/TLI_Stream.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/TLI_Stream.inl -------------------------------------------------------------------------------- /dep/acelite/ace/TP_Reactor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/TP_Reactor.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/TP_Reactor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/TP_Reactor.h -------------------------------------------------------------------------------- /dep/acelite/ace/TP_Reactor.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/TP_Reactor.inl -------------------------------------------------------------------------------- /dep/acelite/ace/TSS_Adapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/TSS_Adapter.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/TSS_Adapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/TSS_Adapter.h -------------------------------------------------------------------------------- /dep/acelite/ace/TSS_T.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/TSS_T.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/TSS_T.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/TSS_T.h -------------------------------------------------------------------------------- /dep/acelite/ace/TSS_T.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/TSS_T.inl -------------------------------------------------------------------------------- /dep/acelite/ace/TTY_IO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/TTY_IO.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/TTY_IO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/TTY_IO.h -------------------------------------------------------------------------------- /dep/acelite/ace/Task.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Task.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/Task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Task.h -------------------------------------------------------------------------------- /dep/acelite/ace/Task.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Task.inl -------------------------------------------------------------------------------- /dep/acelite/ace/Task_Ex_T.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Task_Ex_T.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/Task_Ex_T.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Task_Ex_T.h -------------------------------------------------------------------------------- /dep/acelite/ace/Task_Ex_T.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Task_Ex_T.inl -------------------------------------------------------------------------------- /dep/acelite/ace/Task_T.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Task_T.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/Task_T.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Task_T.h -------------------------------------------------------------------------------- /dep/acelite/ace/Task_T.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Task_T.inl -------------------------------------------------------------------------------- /dep/acelite/ace/Test_and_Set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Test_and_Set.h -------------------------------------------------------------------------------- /dep/acelite/ace/Thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Thread.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/Thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Thread.h -------------------------------------------------------------------------------- /dep/acelite/ace/Thread.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Thread.inl -------------------------------------------------------------------------------- /dep/acelite/ace/Thread_Exit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Thread_Exit.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/Thread_Exit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Thread_Exit.h -------------------------------------------------------------------------------- /dep/acelite/ace/Thread_Hook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Thread_Hook.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/Thread_Hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Thread_Hook.h -------------------------------------------------------------------------------- /dep/acelite/ace/Thread_Mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Thread_Mutex.h -------------------------------------------------------------------------------- /dep/acelite/ace/Time_Policy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Time_Policy.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/Time_Policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Time_Policy.h -------------------------------------------------------------------------------- /dep/acelite/ace/Time_Policy.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Time_Policy.inl -------------------------------------------------------------------------------- /dep/acelite/ace/Time_Policy_T.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Time_Policy_T.h -------------------------------------------------------------------------------- /dep/acelite/ace/Time_Value.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Time_Value.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/Time_Value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Time_Value.h -------------------------------------------------------------------------------- /dep/acelite/ace/Time_Value.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Time_Value.inl -------------------------------------------------------------------------------- /dep/acelite/ace/Time_Value_T.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Time_Value_T.h -------------------------------------------------------------------------------- /dep/acelite/ace/Timeprobe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Timeprobe.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/Timeprobe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Timeprobe.h -------------------------------------------------------------------------------- /dep/acelite/ace/Timeprobe.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Timeprobe.inl -------------------------------------------------------------------------------- /dep/acelite/ace/Timeprobe_T.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Timeprobe_T.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/Timeprobe_T.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Timeprobe_T.h -------------------------------------------------------------------------------- /dep/acelite/ace/Timer_Hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Timer_Hash.h -------------------------------------------------------------------------------- /dep/acelite/ace/Timer_Hash_T.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Timer_Hash_T.h -------------------------------------------------------------------------------- /dep/acelite/ace/Timer_Heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Timer_Heap.h -------------------------------------------------------------------------------- /dep/acelite/ace/Timer_Heap_T.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Timer_Heap_T.h -------------------------------------------------------------------------------- /dep/acelite/ace/Timer_List.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Timer_List.h -------------------------------------------------------------------------------- /dep/acelite/ace/Timer_List_T.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Timer_List_T.h -------------------------------------------------------------------------------- /dep/acelite/ace/Timer_Queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Timer_Queue.h -------------------------------------------------------------------------------- /dep/acelite/ace/Timer_Queue_T.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Timer_Queue_T.h -------------------------------------------------------------------------------- /dep/acelite/ace/Timer_Wheel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Timer_Wheel.h -------------------------------------------------------------------------------- /dep/acelite/ace/Timer_Wheel_T.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Timer_Wheel_T.h -------------------------------------------------------------------------------- /dep/acelite/ace/Token.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Token.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/Token.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Token.h -------------------------------------------------------------------------------- /dep/acelite/ace/Token.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Token.inl -------------------------------------------------------------------------------- /dep/acelite/ace/Token_Manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Token_Manager.h -------------------------------------------------------------------------------- /dep/acelite/ace/Tokenizer_T.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Tokenizer_T.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/Tokenizer_T.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Tokenizer_T.h -------------------------------------------------------------------------------- /dep/acelite/ace/Trace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Trace.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/Trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Trace.h -------------------------------------------------------------------------------- /dep/acelite/ace/Truncate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Truncate.h -------------------------------------------------------------------------------- /dep/acelite/ace/UNIX_Addr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/UNIX_Addr.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/UNIX_Addr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/UNIX_Addr.h -------------------------------------------------------------------------------- /dep/acelite/ace/UNIX_Addr.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/UNIX_Addr.inl -------------------------------------------------------------------------------- /dep/acelite/ace/UPIPE_Addr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/UPIPE_Addr.h -------------------------------------------------------------------------------- /dep/acelite/ace/UPIPE_Stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/UPIPE_Stream.h -------------------------------------------------------------------------------- /dep/acelite/ace/UUID.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/UUID.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/UUID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/UUID.h -------------------------------------------------------------------------------- /dep/acelite/ace/UUID.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/UUID.inl -------------------------------------------------------------------------------- /dep/acelite/ace/Unbounded_Set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Unbounded_Set.h -------------------------------------------------------------------------------- /dep/acelite/ace/Value_Ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Value_Ptr.h -------------------------------------------------------------------------------- /dep/acelite/ace/Vector_T.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Vector_T.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/Vector_T.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Vector_T.h -------------------------------------------------------------------------------- /dep/acelite/ace/Vector_T.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Vector_T.inl -------------------------------------------------------------------------------- /dep/acelite/ace/Version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/Version.h -------------------------------------------------------------------------------- /dep/acelite/ace/WFMO_Reactor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/WFMO_Reactor.h -------------------------------------------------------------------------------- /dep/acelite/ace/XML_Svc_Conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/XML_Svc_Conf.h -------------------------------------------------------------------------------- /dep/acelite/ace/XTI_ATM_Mcast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/XTI_ATM_Mcast.h -------------------------------------------------------------------------------- /dep/acelite/ace/ace.mpc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/ace.mpc -------------------------------------------------------------------------------- /dep/acelite/ace/ace.mwc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/ace.mwc -------------------------------------------------------------------------------- /dep/acelite/ace/ace.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/ace.rc -------------------------------------------------------------------------------- /dep/acelite/ace/ace_for_tao.mpc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/ace_for_tao.mpc -------------------------------------------------------------------------------- /dep/acelite/ace/ace_wchar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/ace_wchar.cpp -------------------------------------------------------------------------------- /dep/acelite/ace/ace_wchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/ace_wchar.h -------------------------------------------------------------------------------- /dep/acelite/ace/ace_wchar.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/ace_wchar.inl -------------------------------------------------------------------------------- /dep/acelite/ace/codecs.mpb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/codecs.mpb -------------------------------------------------------------------------------- /dep/acelite/ace/config-WinCE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/config-WinCE.h -------------------------------------------------------------------------------- /dep/acelite/ace/config-aix-7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/config-aix-7.h -------------------------------------------------------------------------------- /dep/acelite/ace/config-all.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/config-all.h -------------------------------------------------------------------------------- /dep/acelite/ace/config-linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/config-linux.h -------------------------------------------------------------------------------- /dep/acelite/ace/config-lite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/config-lite.h -------------------------------------------------------------------------------- /dep/acelite/ace/config-lynxos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/config-lynxos.h -------------------------------------------------------------------------------- /dep/acelite/ace/config-macosx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/config-macosx.h -------------------------------------------------------------------------------- /dep/acelite/ace/config-macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/config-macros.h -------------------------------------------------------------------------------- /dep/acelite/ace/config-netbsd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/config-netbsd.h -------------------------------------------------------------------------------- /dep/acelite/ace/config-posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/config-posix.h -------------------------------------------------------------------------------- /dep/acelite/ace/config-qnx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/config-qnx.h -------------------------------------------------------------------------------- /dep/acelite/ace/config-rtems.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/config-rtems.h -------------------------------------------------------------------------------- /dep/acelite/ace/config-win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/config-win32.h -------------------------------------------------------------------------------- /dep/acelite/ace/filecache.mpb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/filecache.mpb -------------------------------------------------------------------------------- /dep/acelite/ace/iosfwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/iosfwd.h -------------------------------------------------------------------------------- /dep/acelite/ace/other.mpb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/other.mpb -------------------------------------------------------------------------------- /dep/acelite/ace/post.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/post.h -------------------------------------------------------------------------------- /dep/acelite/ace/pre.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/pre.h -------------------------------------------------------------------------------- /dep/acelite/ace/streams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/streams.h -------------------------------------------------------------------------------- /dep/acelite/ace/svc_export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/svc_export.h -------------------------------------------------------------------------------- /dep/acelite/ace/svcconf.mpb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/svcconf.mpb -------------------------------------------------------------------------------- /dep/acelite/ace/svcconfgen.mpc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/svcconfgen.mpc -------------------------------------------------------------------------------- /dep/acelite/ace/token.mpb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/token.mpb -------------------------------------------------------------------------------- /dep/acelite/ace/uuid.mpb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/acelite/ace/uuid.mpb -------------------------------------------------------------------------------- /dep/bzip2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/bzip2/CMakeLists.txt -------------------------------------------------------------------------------- /dep/bzip2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/bzip2/LICENSE -------------------------------------------------------------------------------- /dep/bzip2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/bzip2/README -------------------------------------------------------------------------------- /dep/bzip2/blocksort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/bzip2/blocksort.c -------------------------------------------------------------------------------- /dep/bzip2/bzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/bzip2/bzlib.c -------------------------------------------------------------------------------- /dep/bzip2/bzlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/bzip2/bzlib.h -------------------------------------------------------------------------------- /dep/bzip2/bzlib_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/bzip2/bzlib_private.h -------------------------------------------------------------------------------- /dep/bzip2/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/bzip2/compress.c -------------------------------------------------------------------------------- /dep/bzip2/crctable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/bzip2/crctable.c -------------------------------------------------------------------------------- /dep/bzip2/decompress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/bzip2/decompress.c -------------------------------------------------------------------------------- /dep/bzip2/huffman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/bzip2/huffman.c -------------------------------------------------------------------------------- /dep/bzip2/randtable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/bzip2/randtable.c -------------------------------------------------------------------------------- /dep/g3dlite/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/g3dlite/CMakeLists.txt -------------------------------------------------------------------------------- /dep/g3dlite/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/g3dlite/Readme.txt -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/AABox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/g3dlite/include/G3D/AABox.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/Any.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/g3dlite/include/G3D/Any.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/Array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/g3dlite/include/G3D/Array.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/Box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/g3dlite/include/G3D/Box.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/Box2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/g3dlite/include/G3D/Box2D.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/Cone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/g3dlite/include/G3D/Cone.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/G3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/g3dlite/include/G3D/G3D.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/Line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/g3dlite/include/G3D/Line.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/Log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/g3dlite/include/G3D/Log.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/Map2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/g3dlite/include/G3D/Map2D.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/Plane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/g3dlite/include/G3D/Plane.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/Quat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/g3dlite/include/G3D/Quat.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/Queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/g3dlite/include/G3D/Queue.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/Ray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/g3dlite/include/G3D/Ray.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/Set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/g3dlite/include/G3D/Set.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/Table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/g3dlite/include/G3D/Table.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/XML.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/g3dlite/include/G3D/XML.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/g3dlite/include/G3D/debug.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/units.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/g3dlite/include/G3D/units.h -------------------------------------------------------------------------------- /dep/g3dlite/source/AABox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/g3dlite/source/AABox.cpp -------------------------------------------------------------------------------- /dep/g3dlite/source/Any.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/g3dlite/source/Any.cpp -------------------------------------------------------------------------------- /dep/g3dlite/source/AnyVal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/g3dlite/source/AnyVal.cpp -------------------------------------------------------------------------------- /dep/g3dlite/source/Box.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/g3dlite/source/Box.cpp -------------------------------------------------------------------------------- /dep/g3dlite/source/Box2D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/g3dlite/source/Box2D.cpp -------------------------------------------------------------------------------- /dep/g3dlite/source/Capsule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/g3dlite/source/Capsule.cpp -------------------------------------------------------------------------------- /dep/g3dlite/source/Color1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/g3dlite/source/Color1.cpp -------------------------------------------------------------------------------- /dep/g3dlite/source/Color3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/g3dlite/source/Color3.cpp -------------------------------------------------------------------------------- /dep/g3dlite/source/Color4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/g3dlite/source/Color4.cpp -------------------------------------------------------------------------------- /dep/g3dlite/source/Cone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/g3dlite/source/Cone.cpp -------------------------------------------------------------------------------- /dep/g3dlite/source/Crypto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/g3dlite/source/Crypto.cpp -------------------------------------------------------------------------------- /dep/g3dlite/source/Cylinder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/g3dlite/source/Cylinder.cpp -------------------------------------------------------------------------------- /dep/g3dlite/source/GCamera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/g3dlite/source/GCamera.cpp -------------------------------------------------------------------------------- /dep/g3dlite/source/GImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/g3dlite/source/GImage.cpp -------------------------------------------------------------------------------- /dep/g3dlite/source/GLight.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/g3dlite/source/GLight.cpp -------------------------------------------------------------------------------- /dep/g3dlite/source/GThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/g3dlite/source/GThread.cpp -------------------------------------------------------------------------------- /dep/g3dlite/source/Image1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/g3dlite/source/Image1.cpp -------------------------------------------------------------------------------- /dep/g3dlite/source/Image3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/g3dlite/source/Image3.cpp -------------------------------------------------------------------------------- /dep/g3dlite/source/Image4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/g3dlite/source/Image4.cpp -------------------------------------------------------------------------------- /dep/g3dlite/source/Line.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/g3dlite/source/Line.cpp -------------------------------------------------------------------------------- /dep/g3dlite/source/Log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/g3dlite/source/Log.cpp -------------------------------------------------------------------------------- /dep/g3dlite/source/Matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/g3dlite/source/Matrix.cpp -------------------------------------------------------------------------------- /dep/g3dlite/source/Plane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/g3dlite/source/Plane.cpp -------------------------------------------------------------------------------- /dep/g3dlite/source/Quat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/g3dlite/source/Quat.cpp -------------------------------------------------------------------------------- /dep/g3dlite/source/Ray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/g3dlite/source/Ray.cpp -------------------------------------------------------------------------------- /dep/g3dlite/source/XML.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/g3dlite/source/XML.cpp -------------------------------------------------------------------------------- /dep/gsoap/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/gsoap/CMakeLists.txt -------------------------------------------------------------------------------- /dep/gsoap/gsoap.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/gsoap/gsoap.stub -------------------------------------------------------------------------------- /dep/gsoap/soapC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/gsoap/soapC.cpp -------------------------------------------------------------------------------- /dep/gsoap/soapH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/gsoap/soapH.h -------------------------------------------------------------------------------- /dep/gsoap/soapServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/gsoap/soapServer.cpp -------------------------------------------------------------------------------- /dep/gsoap/soapStub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/gsoap/soapStub.h -------------------------------------------------------------------------------- /dep/gsoap/stdsoap2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/gsoap/stdsoap2.cpp -------------------------------------------------------------------------------- /dep/gsoap/stdsoap2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/gsoap/stdsoap2.h -------------------------------------------------------------------------------- /dep/gsoap/tc_changes.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/gsoap/tc_changes.diff -------------------------------------------------------------------------------- /dep/gsoap/tc_upgrades.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/gsoap/tc_upgrades.txt -------------------------------------------------------------------------------- /dep/jemalloc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/jemalloc/CMakeLists.txt -------------------------------------------------------------------------------- /dep/jemalloc/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/jemalloc/COPYING -------------------------------------------------------------------------------- /dep/jemalloc/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/jemalloc/ChangeLog -------------------------------------------------------------------------------- /dep/jemalloc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/jemalloc/README -------------------------------------------------------------------------------- /dep/jemalloc/TC_NOTE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/jemalloc/TC_NOTE.txt -------------------------------------------------------------------------------- /dep/jemalloc/VERSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/jemalloc/VERSION -------------------------------------------------------------------------------- /dep/jemalloc/src/arena.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/jemalloc/src/arena.c -------------------------------------------------------------------------------- /dep/jemalloc/src/atomic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/jemalloc/src/atomic.c -------------------------------------------------------------------------------- /dep/jemalloc/src/base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/jemalloc/src/base.c -------------------------------------------------------------------------------- /dep/jemalloc/src/bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/jemalloc/src/bitmap.c -------------------------------------------------------------------------------- /dep/jemalloc/src/chunk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/jemalloc/src/chunk.c -------------------------------------------------------------------------------- /dep/jemalloc/src/chunk_dss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/jemalloc/src/chunk_dss.c -------------------------------------------------------------------------------- /dep/jemalloc/src/ckh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/jemalloc/src/ckh.c -------------------------------------------------------------------------------- /dep/jemalloc/src/ctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/jemalloc/src/ctl.c -------------------------------------------------------------------------------- /dep/jemalloc/src/extent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/jemalloc/src/extent.c -------------------------------------------------------------------------------- /dep/jemalloc/src/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/jemalloc/src/hash.c -------------------------------------------------------------------------------- /dep/jemalloc/src/huge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/jemalloc/src/huge.c -------------------------------------------------------------------------------- /dep/jemalloc/src/jemalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/jemalloc/src/jemalloc.c -------------------------------------------------------------------------------- /dep/jemalloc/src/mb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/jemalloc/src/mb.c -------------------------------------------------------------------------------- /dep/jemalloc/src/mutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/jemalloc/src/mutex.c -------------------------------------------------------------------------------- /dep/jemalloc/src/prof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/jemalloc/src/prof.c -------------------------------------------------------------------------------- /dep/jemalloc/src/rtree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/jemalloc/src/rtree.c -------------------------------------------------------------------------------- /dep/jemalloc/src/stats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/jemalloc/src/stats.c -------------------------------------------------------------------------------- /dep/jemalloc/src/tcache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/jemalloc/src/tcache.c -------------------------------------------------------------------------------- /dep/jemalloc/src/tsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/jemalloc/src/tsd.c -------------------------------------------------------------------------------- /dep/jemalloc/src/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/jemalloc/src/util.c -------------------------------------------------------------------------------- /dep/jemalloc/src/zone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/jemalloc/src/zone.c -------------------------------------------------------------------------------- /dep/lualib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/lualib/CMakeLists.txt -------------------------------------------------------------------------------- /dep/lualib/lapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/lualib/lapi.c -------------------------------------------------------------------------------- /dep/lualib/lapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/lualib/lapi.h -------------------------------------------------------------------------------- /dep/lualib/lauxlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/lualib/lauxlib.c -------------------------------------------------------------------------------- /dep/lualib/lauxlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/lualib/lauxlib.h -------------------------------------------------------------------------------- /dep/lualib/lbaselib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/lualib/lbaselib.c -------------------------------------------------------------------------------- /dep/lualib/lbitlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/lualib/lbitlib.c -------------------------------------------------------------------------------- /dep/lualib/lcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/lualib/lcode.c -------------------------------------------------------------------------------- /dep/lualib/lcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/lualib/lcode.h -------------------------------------------------------------------------------- /dep/lualib/lcorolib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/lualib/lcorolib.c -------------------------------------------------------------------------------- /dep/lualib/lctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/lualib/lctype.c -------------------------------------------------------------------------------- /dep/lualib/lctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/lualib/lctype.h -------------------------------------------------------------------------------- /dep/lualib/ldblib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/lualib/ldblib.c -------------------------------------------------------------------------------- /dep/lualib/ldebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/lualib/ldebug.c -------------------------------------------------------------------------------- /dep/lualib/ldebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/lualib/ldebug.h -------------------------------------------------------------------------------- /dep/lualib/ldo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/lualib/ldo.c -------------------------------------------------------------------------------- /dep/lualib/ldo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/lualib/ldo.h -------------------------------------------------------------------------------- /dep/lualib/ldump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/lualib/ldump.c -------------------------------------------------------------------------------- /dep/lualib/lfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/lualib/lfunc.c -------------------------------------------------------------------------------- /dep/lualib/lfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/lualib/lfunc.h -------------------------------------------------------------------------------- /dep/lualib/lgc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/lualib/lgc.c -------------------------------------------------------------------------------- /dep/lualib/lgc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/lualib/lgc.h -------------------------------------------------------------------------------- /dep/lualib/linit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/lualib/linit.c -------------------------------------------------------------------------------- /dep/lualib/liolib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/lualib/liolib.c -------------------------------------------------------------------------------- /dep/lualib/llex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/lualib/llex.c -------------------------------------------------------------------------------- /dep/lualib/llex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/lualib/llex.h -------------------------------------------------------------------------------- /dep/lualib/llimits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/lualib/llimits.h -------------------------------------------------------------------------------- /dep/lualib/lmathlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/lualib/lmathlib.c -------------------------------------------------------------------------------- /dep/lualib/lmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/lualib/lmem.c -------------------------------------------------------------------------------- /dep/lualib/lmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/lualib/lmem.h -------------------------------------------------------------------------------- /dep/lualib/loadlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/lualib/loadlib.c -------------------------------------------------------------------------------- /dep/lualib/lobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/lualib/lobject.c -------------------------------------------------------------------------------- /dep/lualib/lobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/lualib/lobject.h -------------------------------------------------------------------------------- /dep/lualib/lopcodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/lualib/lopcodes.c -------------------------------------------------------------------------------- /dep/lualib/lopcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/lualib/lopcodes.h -------------------------------------------------------------------------------- /dep/lualib/loslib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/lualib/loslib.c -------------------------------------------------------------------------------- /dep/lualib/lparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/lualib/lparser.c -------------------------------------------------------------------------------- /dep/lualib/lparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/lualib/lparser.h -------------------------------------------------------------------------------- /dep/lualib/lstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/lualib/lstate.c -------------------------------------------------------------------------------- /dep/lualib/lstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/lualib/lstate.h -------------------------------------------------------------------------------- /dep/lualib/lstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/lualib/lstring.c -------------------------------------------------------------------------------- /dep/lualib/lstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/lualib/lstring.h -------------------------------------------------------------------------------- /dep/lualib/lstrlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/lualib/lstrlib.c -------------------------------------------------------------------------------- /dep/lualib/ltable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/lualib/ltable.c -------------------------------------------------------------------------------- /dep/lualib/ltable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/lualib/ltable.h -------------------------------------------------------------------------------- /dep/lualib/ltablib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/lualib/ltablib.c -------------------------------------------------------------------------------- /dep/lualib/ltm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/lualib/ltm.c -------------------------------------------------------------------------------- /dep/lualib/ltm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/lualib/ltm.h -------------------------------------------------------------------------------- /dep/lualib/lua.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/lualib/lua.c -------------------------------------------------------------------------------- /dep/lualib/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/lualib/lua.h -------------------------------------------------------------------------------- /dep/lualib/lua.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/lualib/lua.hpp -------------------------------------------------------------------------------- /dep/lualib/luaconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/lualib/luaconf.h -------------------------------------------------------------------------------- /dep/lualib/lualib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/lualib/lualib.h -------------------------------------------------------------------------------- /dep/lualib/lundump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/lualib/lundump.c -------------------------------------------------------------------------------- /dep/lualib/lundump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/lualib/lundump.h -------------------------------------------------------------------------------- /dep/lualib/lvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/lualib/lvm.c -------------------------------------------------------------------------------- /dep/lualib/lvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/lualib/lvm.h -------------------------------------------------------------------------------- /dep/lualib/lzio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/lualib/lzio.c -------------------------------------------------------------------------------- /dep/lualib/lzio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/lualib/lzio.h -------------------------------------------------------------------------------- /dep/mysqllite/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/mysqllite/CMakeLists.txt -------------------------------------------------------------------------------- /dep/mysqllite/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/mysqllite/COPYING -------------------------------------------------------------------------------- /dep/mysqllite/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/mysqllite/README -------------------------------------------------------------------------------- /dep/mysqllite/VERSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/mysqllite/VERSION -------------------------------------------------------------------------------- /dep/mysqllite/config.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/mysqllite/config.h.cmake -------------------------------------------------------------------------------- /dep/mysqllite/dbug/dbug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/mysqllite/dbug/dbug.c -------------------------------------------------------------------------------- /dep/mysqllite/dbug/monty.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/mysqllite/dbug/monty.doc -------------------------------------------------------------------------------- /dep/mysqllite/dbug/user.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/mysqllite/dbug/user.r -------------------------------------------------------------------------------- /dep/mysqllite/mysys/array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/mysqllite/mysys/array.c -------------------------------------------------------------------------------- /dep/mysqllite/mysys/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/mysqllite/mysys/base64.c -------------------------------------------------------------------------------- /dep/mysqllite/mysys/errors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/mysqllite/mysys/errors.c -------------------------------------------------------------------------------- /dep/mysqllite/mysys/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/mysqllite/mysys/hash.c -------------------------------------------------------------------------------- /dep/mysqllite/mysys/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/mysqllite/mysys/list.c -------------------------------------------------------------------------------- /dep/mysqllite/mysys/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/mysqllite/mysys/md5.c -------------------------------------------------------------------------------- /dep/mysqllite/mysys/my_aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/mysqllite/mysys/my_aes.c -------------------------------------------------------------------------------- /dep/mysqllite/mysys/my_bit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/mysqllite/mysys/my_bit.c -------------------------------------------------------------------------------- /dep/mysqllite/mysys/my_div.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/mysqllite/mysys/my_div.c -------------------------------------------------------------------------------- /dep/mysqllite/mysys/my_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/mysqllite/mysys/my_lib.c -------------------------------------------------------------------------------- /dep/mysqllite/mysys/queues.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/mysqllite/mysys/queues.c -------------------------------------------------------------------------------- /dep/mysqllite/mysys/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/mysqllite/mysys/sha1.c -------------------------------------------------------------------------------- /dep/mysqllite/mysys/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/mysqllite/mysys/string.c -------------------------------------------------------------------------------- /dep/mysqllite/mysys/tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/mysqllite/mysys/tree.c -------------------------------------------------------------------------------- /dep/mysqllite/sql/password.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/mysqllite/sql/password.c -------------------------------------------------------------------------------- /dep/mysqllite/strings/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/mysqllite/strings/README -------------------------------------------------------------------------------- /dep/mysqllite/strings/dtoa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/mysqllite/strings/dtoa.c -------------------------------------------------------------------------------- /dep/mysqllite/strings/xml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/mysqllite/strings/xml.c -------------------------------------------------------------------------------- /dep/mysqllite/vio/vio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/mysqllite/vio/vio.c -------------------------------------------------------------------------------- /dep/mysqllite/vio/vio_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/mysqllite/vio/vio_priv.h -------------------------------------------------------------------------------- /dep/mysqllite/vio/viossl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/mysqllite/vio/viossl.c -------------------------------------------------------------------------------- /dep/utf8cpp/utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/utf8cpp/utf8.h -------------------------------------------------------------------------------- /dep/utf8cpp/utf8/checked.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/utf8cpp/utf8/checked.h -------------------------------------------------------------------------------- /dep/utf8cpp/utf8/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/utf8cpp/utf8/core.h -------------------------------------------------------------------------------- /dep/utf8cpp/utf8/unchecked.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/utf8cpp/utf8/unchecked.h -------------------------------------------------------------------------------- /dep/zlib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/zlib/CMakeLists.txt -------------------------------------------------------------------------------- /dep/zlib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/zlib/adler32.c -------------------------------------------------------------------------------- /dep/zlib/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/zlib/compress.c -------------------------------------------------------------------------------- /dep/zlib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/zlib/crc32.c -------------------------------------------------------------------------------- /dep/zlib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/zlib/crc32.h -------------------------------------------------------------------------------- /dep/zlib/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/zlib/deflate.c -------------------------------------------------------------------------------- /dep/zlib/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/zlib/deflate.h -------------------------------------------------------------------------------- /dep/zlib/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/zlib/example.c -------------------------------------------------------------------------------- /dep/zlib/gzclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/zlib/gzclose.c -------------------------------------------------------------------------------- /dep/zlib/gzguts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/zlib/gzguts.h -------------------------------------------------------------------------------- /dep/zlib/gzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/zlib/gzlib.c -------------------------------------------------------------------------------- /dep/zlib/gzread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/zlib/gzread.c -------------------------------------------------------------------------------- /dep/zlib/gzwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/zlib/gzwrite.c -------------------------------------------------------------------------------- /dep/zlib/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/zlib/infback.c -------------------------------------------------------------------------------- /dep/zlib/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/zlib/inffast.c -------------------------------------------------------------------------------- /dep/zlib/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/zlib/inffast.h -------------------------------------------------------------------------------- /dep/zlib/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/zlib/inffixed.h -------------------------------------------------------------------------------- /dep/zlib/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/zlib/inflate.c -------------------------------------------------------------------------------- /dep/zlib/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/zlib/inflate.h -------------------------------------------------------------------------------- /dep/zlib/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/zlib/inftrees.c -------------------------------------------------------------------------------- /dep/zlib/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/zlib/inftrees.h -------------------------------------------------------------------------------- /dep/zlib/minigzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/zlib/minigzip.c -------------------------------------------------------------------------------- /dep/zlib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/zlib/trees.c -------------------------------------------------------------------------------- /dep/zlib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/zlib/trees.h -------------------------------------------------------------------------------- /dep/zlib/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/zlib/uncompr.c -------------------------------------------------------------------------------- /dep/zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/zlib/zconf.h -------------------------------------------------------------------------------- /dep/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/zlib/zlib.h -------------------------------------------------------------------------------- /dep/zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/zlib/zutil.c -------------------------------------------------------------------------------- /dep/zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/dep/zlib/zutil.h -------------------------------------------------------------------------------- /resources/API/api.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /revision.h.in.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/revision.h.in.cmake -------------------------------------------------------------------------------- /sql/battle for undercity alliance.sql: -------------------------------------------------------------------------------- 1 | -- Battle for the Undercity - Horde -------------------------------------------------------------------------------- /sql/dump/dump.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/sql/dump/dump.zip -------------------------------------------------------------------------------- /sql/misc.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/sql/misc.sql -------------------------------------------------------------------------------- /sql/updates/auth/YYYY_MM_DD_XX_placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sql/updates/characters/YYYY_MM_DD_XX_placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sql/updates/world/_YYYY_MM_DD_XX_placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/LuaEngine/AuraMethods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/src/LuaEngine/AuraMethods.h -------------------------------------------------------------------------------- /src/LuaEngine/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/src/LuaEngine/CMakeLists.txt -------------------------------------------------------------------------------- /src/LuaEngine/GroupMethods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/src/LuaEngine/GroupMethods.h -------------------------------------------------------------------------------- /src/LuaEngine/GuildMethods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/src/LuaEngine/GuildMethods.h -------------------------------------------------------------------------------- /src/LuaEngine/HookMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/src/LuaEngine/HookMgr.cpp -------------------------------------------------------------------------------- /src/LuaEngine/HookMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/src/LuaEngine/HookMgr.h -------------------------------------------------------------------------------- /src/LuaEngine/Includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/src/LuaEngine/Includes.h -------------------------------------------------------------------------------- /src/LuaEngine/ItemMethods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/src/LuaEngine/ItemMethods.h -------------------------------------------------------------------------------- /src/LuaEngine/LuaEngine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/src/LuaEngine/LuaEngine.cpp -------------------------------------------------------------------------------- /src/LuaEngine/LuaEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/src/LuaEngine/LuaEngine.h -------------------------------------------------------------------------------- /src/LuaEngine/LuaHooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/src/LuaEngine/LuaHooks.cpp -------------------------------------------------------------------------------- /src/LuaEngine/MapMethods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/src/LuaEngine/MapMethods.h -------------------------------------------------------------------------------- /src/LuaEngine/QueryMethods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/src/LuaEngine/QueryMethods.h -------------------------------------------------------------------------------- /src/LuaEngine/QuestMethods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/src/LuaEngine/QuestMethods.h -------------------------------------------------------------------------------- /src/LuaEngine/SpellMethods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/src/LuaEngine/SpellMethods.h -------------------------------------------------------------------------------- /src/LuaEngine/UnitMethods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/src/LuaEngine/UnitMethods.h -------------------------------------------------------------------------------- /src/genrev/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/src/genrev/CMakeLists.txt -------------------------------------------------------------------------------- /src/server/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/src/server/CMakeLists.txt -------------------------------------------------------------------------------- /src/server/authserver/PrecompiledHeaders/authPCH.cpp: -------------------------------------------------------------------------------- 1 | #include "authPCH.h" 2 | -------------------------------------------------------------------------------- /src/server/collision/PrecompiledHeaders/collisionPCH.cpp: -------------------------------------------------------------------------------- 1 | #include "collisionPCH.h" 2 | -------------------------------------------------------------------------------- /src/server/game/Character/CharacterMgr.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/server/game/Character/CharacterMgr.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/server/game/Chat/Chat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/src/server/game/Chat/Chat.h -------------------------------------------------------------------------------- /src/server/game/Grids/Grid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/src/server/game/Grids/Grid.h -------------------------------------------------------------------------------- /src/server/game/Mails/Mail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/src/server/game/Mails/Mail.h -------------------------------------------------------------------------------- /src/server/game/Maps/Map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/src/server/game/Maps/Map.cpp -------------------------------------------------------------------------------- /src/server/game/Maps/Map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/src/server/game/Maps/Map.h -------------------------------------------------------------------------------- /src/server/game/PrecompiledHeaders/gamePCH.cpp: -------------------------------------------------------------------------------- 1 | #include "gamePCH.h" 2 | -------------------------------------------------------------------------------- /src/server/shared/AutoPtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/src/server/shared/AutoPtr.h -------------------------------------------------------------------------------- /src/server/shared/Common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/src/server/shared/Common.cpp -------------------------------------------------------------------------------- /src/server/shared/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/src/server/shared/Common.h -------------------------------------------------------------------------------- /src/server/shared/Define.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/src/server/shared/Define.h -------------------------------------------------------------------------------- /src/server/shared/PrecompiledHeaders/sharedPCH.cpp: -------------------------------------------------------------------------------- 1 | #include "sharedPCH.h" 2 | -------------------------------------------------------------------------------- /src/server/worldserver/PrecompiledHeaders/worldPCH.cpp: -------------------------------------------------------------------------------- 1 | #include "worldPCH.h" 2 | -------------------------------------------------------------------------------- /voice opcodes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FALL1N1/HysteriaCore/HEAD/voice opcodes.txt -------------------------------------------------------------------------------- /x.diff: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------