├── .gitattributes ├── .gitignore ├── CMakeLists.txt ├── Config ├── UniverseLAN.ini ├── UniverseLANData │ ├── Achievements.ini │ ├── Avatars │ │ └── files │ │ │ └── me.png │ ├── Cloud │ │ └── .gitkeep │ ├── Config.ini │ ├── DLC.ini │ ├── Local │ │ └── .gitkeep │ ├── Logging │ │ └── .gitkeep │ ├── Shared │ │ └── .gitkeep │ ├── Stats.ini │ ├── Telemetry │ │ └── .gitkeep │ ├── Tracing │ │ └── .gitkeep │ └── UserData.ini └── UniverseLANServerData │ ├── Avatars │ └── me.png │ ├── Cloud │ └── .gitkeep │ ├── Config.ini │ ├── Local │ └── .gitkeep │ ├── Logging │ └── .gitkeep │ ├── Shared │ └── .gitkeep │ ├── Telemetry │ └── .gitkeep │ └── Tracing │ └── .gitkeep ├── ConfigDebug ├── UniverseLAN.ini ├── UniverseLANData │ ├── Achievements.ini │ ├── Avatars │ │ └── files │ │ │ └── me.png │ ├── Cloud │ │ └── .gitkeep │ ├── Config.ini │ ├── DLC.ini │ ├── Local │ │ └── .gitkeep │ ├── Logging │ │ └── .gitkeep │ ├── Shared │ │ └── .gitkeep │ ├── Stats.ini │ ├── Telemetry │ │ └── .gitkeep │ ├── Tracing │ │ └── .gitkeep │ └── UserData.ini └── UniverseLANServerData │ ├── Avatars │ └── me.png │ ├── Cloud │ └── .gitkeep │ ├── Config.ini │ ├── Local │ └── .gitkeep │ ├── Logging │ └── .gitkeep │ ├── Shared │ └── .gitkeep │ ├── Telemetry │ └── .gitkeep │ └── Tracing │ └── .gitkeep ├── LICENSE ├── README.MD ├── Source ├── CMakeLists.txt ├── Client │ ├── CMakeLists.txt │ ├── Client.cxx │ ├── Client.hxx │ ├── ClientNetworkHandlers.cxx │ ├── Factory.cxx │ ├── GalaxyApi.cxx │ ├── GalaxyApiFactory.cxx │ ├── GalaxyDLL.cxx │ ├── GalaxyDLL.hxx │ ├── GalaxyGameServerApi.cxx │ ├── Impl │ │ ├── Apps.cxx │ │ ├── Apps.hxx │ │ ├── Chat.cxx │ │ ├── Chat.hxx │ │ ├── CloudStorage.cxx │ │ ├── CloudStorage.hxx │ │ ├── CustomNetworking.cxx │ │ ├── CustomNetworking.hxx │ │ ├── DelayRunner.cxx │ │ ├── DelayRunner.hxx │ │ ├── Errors.cxx │ │ ├── Errors.hxx │ │ ├── Friends.cxx │ │ ├── Friends.hxx │ │ ├── GalaxyThread.cxx │ │ ├── GalaxyThread.hxx │ │ ├── InitOptionsFactory.hxx │ │ ├── InitOptionsModern.cxx │ │ ├── InitOptionsModern.hxx │ │ ├── ListenerRegistrar.cxx │ │ ├── ListenerRegistrar.hxx │ │ ├── Logger.cxx │ │ ├── Logger.hxx │ │ ├── Matchmaking.cxx │ │ ├── Matchmaking.hxx │ │ ├── Networking.cxx │ │ ├── Networking.hxx │ │ ├── NotificationParamScopeExtender.cxx │ │ ├── NotificationParamScopeExtender.hxx │ │ ├── Stats.cxx │ │ ├── Stats.hxx │ │ ├── Storage.cxx │ │ ├── Storage.hxx │ │ ├── Telemetry.cxx │ │ ├── Telemetry.hxx │ │ ├── User.cxx │ │ ├── User.hxx │ │ ├── Utils.cxx │ │ └── Utils.hxx │ ├── UniverseGameServer.cxx │ ├── UniverseGameServer.hxx │ ├── UniverseLAN.cxx │ └── UniverseLAN.hxx ├── DLLs │ ├── .gitignore │ ├── 1.100.2 │ │ ├── Factory.cxx │ │ ├── compat_list.txt │ │ ├── galaxy │ │ │ ├── Errors.h │ │ │ ├── GalaxyApi.h │ │ │ ├── GalaxyExport.h │ │ │ ├── GalaxyFactory.h │ │ │ ├── GalaxyID.h │ │ │ ├── IApps.h │ │ │ ├── ICustomNetworking.h │ │ │ ├── IFriends.h │ │ │ ├── IGalaxy.h │ │ │ ├── IListenerRegistrar.h │ │ │ ├── ILogger.h │ │ │ ├── IMatchmaking.h │ │ │ ├── INetworking.h │ │ │ ├── IStats.h │ │ │ ├── IStorage.h │ │ │ ├── IUser.h │ │ │ └── IUtils.h │ │ ├── gog │ │ │ └── README.MD │ │ ├── x64 │ │ │ ├── CMakeLists.txt │ │ │ ├── UniverseLAN.def │ │ │ └── interceptor_versioninfo.rc │ │ └── x86 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ ├── 1.104.2 │ │ ├── Factory.cxx │ │ ├── compat_list.txt │ │ ├── galaxy │ │ │ ├── Errors.h │ │ │ ├── GalaxyApi.h │ │ │ ├── GalaxyExport.h │ │ │ ├── GalaxyFactory.h │ │ │ ├── GalaxyID.h │ │ │ ├── IApps.h │ │ │ ├── ICustomNetworking.h │ │ │ ├── IFriends.h │ │ │ ├── IGalaxy.h │ │ │ ├── IListenerRegistrar.h │ │ │ ├── ILogger.h │ │ │ ├── IMatchmaking.h │ │ │ ├── INetworking.h │ │ │ ├── IStats.h │ │ │ ├── IStorage.h │ │ │ ├── IUser.h │ │ │ └── IUtils.h │ │ ├── gog │ │ │ └── README.MD │ │ ├── x64 │ │ │ ├── CMakeLists.txt │ │ │ ├── UniverseLAN.def │ │ │ └── interceptor_versioninfo.rc │ │ └── x86 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ ├── 1.104.3 │ │ ├── Factory.cxx │ │ ├── galaxy │ │ │ ├── Errors.h │ │ │ ├── GalaxyApi.h │ │ │ ├── GalaxyExport.h │ │ │ ├── GalaxyFactory.h │ │ │ ├── GalaxyID.h │ │ │ ├── IApps.h │ │ │ ├── IChat.h │ │ │ ├── ICustomNetworking.h │ │ │ ├── IFriends.h │ │ │ ├── IGalaxy.h │ │ │ ├── IListenerRegistrar.h │ │ │ ├── ILogger.h │ │ │ ├── IMatchmaking.h │ │ │ ├── INetworking.h │ │ │ ├── IStats.h │ │ │ ├── IStorage.h │ │ │ ├── IUser.h │ │ │ └── IUtils.h │ │ ├── gog │ │ │ └── README.MD │ │ ├── x64 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ │ └── x86 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ ├── 1.104.4 │ │ ├── Factory.cxx │ │ ├── compat_list.txt │ │ ├── galaxy │ │ │ ├── Errors.h │ │ │ ├── GalaxyApi.h │ │ │ ├── GalaxyExport.h │ │ │ ├── GalaxyFactory.h │ │ │ ├── GalaxyID.h │ │ │ ├── IApps.h │ │ │ ├── IChat.h │ │ │ ├── ICustomNetworking.h │ │ │ ├── IFriends.h │ │ │ ├── IGalaxy.h │ │ │ ├── IListenerRegistrar.h │ │ │ ├── ILogger.h │ │ │ ├── IMatchmaking.h │ │ │ ├── INetworking.h │ │ │ ├── IStats.h │ │ │ ├── IStorage.h │ │ │ ├── IUser.h │ │ │ └── IUtils.h │ │ ├── gog │ │ │ └── README.MD │ │ ├── x64 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ │ └── x86 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ ├── 1.106.0 │ │ ├── Factory.cxx │ │ ├── compat_list.txt │ │ ├── galaxy │ │ │ ├── Errors.h │ │ │ ├── GalaxyApi.h │ │ │ ├── GalaxyExport.h │ │ │ ├── GalaxyFactory.h │ │ │ ├── GalaxyID.h │ │ │ ├── IApps.h │ │ │ ├── IChat.h │ │ │ ├── ICustomNetworking.h │ │ │ ├── IFriends.h │ │ │ ├── IGalaxy.h │ │ │ ├── IListenerRegistrar.h │ │ │ ├── ILogger.h │ │ │ ├── IMatchmaking.h │ │ │ ├── INetworking.h │ │ │ ├── IStats.h │ │ │ ├── IStorage.h │ │ │ ├── IUser.h │ │ │ └── IUtils.h │ │ ├── gog │ │ │ └── README.MD │ │ ├── x64 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ │ └── x86 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ ├── 1.109.0 │ │ ├── Factory.cxx │ │ ├── galaxy │ │ │ ├── Errors.h │ │ │ ├── GalaxyApi.h │ │ │ ├── GalaxyExport.h │ │ │ ├── GalaxyFactory.h │ │ │ ├── GalaxyID.h │ │ │ ├── IApps.h │ │ │ ├── IChat.h │ │ │ ├── ICustomNetworking.h │ │ │ ├── IFriends.h │ │ │ ├── IGalaxy.h │ │ │ ├── IListenerRegistrar.h │ │ │ ├── ILogger.h │ │ │ ├── IMatchmaking.h │ │ │ ├── INetworking.h │ │ │ ├── IStats.h │ │ │ ├── IStorage.h │ │ │ ├── IUser.h │ │ │ └── IUtils.h │ │ ├── gog │ │ │ └── README.MD │ │ ├── x64 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ │ └── x86 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ ├── 1.112.2 │ │ ├── Factory.cxx │ │ ├── compat_list.txt │ │ ├── galaxy │ │ │ ├── Errors.h │ │ │ ├── GalaxyApi.h │ │ │ ├── GalaxyExport.h │ │ │ ├── GalaxyFactory.h │ │ │ ├── GalaxyID.h │ │ │ ├── IApps.h │ │ │ ├── IChat.h │ │ │ ├── ICustomNetworking.h │ │ │ ├── IFriends.h │ │ │ ├── IGalaxy.h │ │ │ ├── IListenerRegistrar.h │ │ │ ├── ILogger.h │ │ │ ├── IMatchmaking.h │ │ │ ├── INetworking.h │ │ │ ├── IStats.h │ │ │ ├── IStorage.h │ │ │ ├── IUser.h │ │ │ └── IUtils.h │ │ ├── gog │ │ │ └── README.MD │ │ ├── x64 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ │ └── x86 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ ├── 1.113.1 │ │ ├── Factory.cxx │ │ ├── compat_list.txt │ │ ├── galaxy │ │ │ ├── Errors.h │ │ │ ├── GalaxyApi.h │ │ │ ├── GalaxyExport.h │ │ │ ├── GalaxyFactory.h │ │ │ ├── GalaxyID.h │ │ │ ├── IApps.h │ │ │ ├── IChat.h │ │ │ ├── ICustomNetworking.h │ │ │ ├── IFriends.h │ │ │ ├── IGalaxy.h │ │ │ ├── IListenerRegistrar.h │ │ │ ├── ILogger.h │ │ │ ├── IMatchmaking.h │ │ │ ├── INetworking.h │ │ │ ├── IStats.h │ │ │ ├── IStorage.h │ │ │ ├── IUser.h │ │ │ └── IUtils.h │ │ ├── gog │ │ │ └── README.MD │ │ ├── x64 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ │ └── x86 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ ├── 1.113.3 │ │ ├── Factory.cxx │ │ ├── compat_list.txt │ │ ├── galaxy │ │ │ ├── Errors.h │ │ │ ├── GalaxyApi.h │ │ │ ├── GalaxyExport.h │ │ │ ├── GalaxyFactory.h │ │ │ ├── GalaxyID.h │ │ │ ├── IApps.h │ │ │ ├── IChat.h │ │ │ ├── ICustomNetworking.h │ │ │ ├── IFriends.h │ │ │ ├── IGalaxy.h │ │ │ ├── IListenerRegistrar.h │ │ │ ├── ILogger.h │ │ │ ├── IMatchmaking.h │ │ │ ├── INetworking.h │ │ │ ├── IStats.h │ │ │ ├── IStorage.h │ │ │ ├── IUser.h │ │ │ └── IUtils.h │ │ ├── gog │ │ │ └── README.MD │ │ ├── x64 │ │ │ ├── CMakeLists.txt │ │ │ ├── UniverseLAN.def │ │ │ └── interceptor_versioninfo.rc │ │ └── x86 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ ├── 1.114.9 │ │ ├── Factory.cxx │ │ ├── compat_list.txt │ │ ├── galaxy │ │ │ ├── Errors.h │ │ │ ├── GalaxyApi.h │ │ │ ├── GalaxyExport.h │ │ │ ├── GalaxyFactory.h │ │ │ ├── GalaxyID.h │ │ │ ├── IApps.h │ │ │ ├── IChat.h │ │ │ ├── ICustomNetworking.h │ │ │ ├── IFriends.h │ │ │ ├── IGalaxy.h │ │ │ ├── IListenerRegistrar.h │ │ │ ├── ILogger.h │ │ │ ├── IMatchmaking.h │ │ │ ├── INetworking.h │ │ │ ├── IStats.h │ │ │ ├── IStorage.h │ │ │ ├── IUser.h │ │ │ └── IUtils.h │ │ ├── gog │ │ │ └── README.MD │ │ ├── x64 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ │ └── x86 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ ├── 1.121.2 │ │ ├── Dll.cxx │ │ ├── compat_list.txt │ │ ├── galaxy │ │ │ ├── Errors.h │ │ │ ├── GalaxyAllocator.h │ │ │ ├── GalaxyApi.h │ │ │ ├── GalaxyExceptionHelper.h │ │ │ ├── GalaxyExport.h │ │ │ ├── GalaxyGameServerApi.h │ │ │ ├── GalaxyID.h │ │ │ ├── IApps.h │ │ │ ├── IChat.h │ │ │ ├── ICustomNetworking.h │ │ │ ├── IFriends.h │ │ │ ├── IListenerRegistrar.h │ │ │ ├── ILogger.h │ │ │ ├── IMatchmaking.h │ │ │ ├── INetworking.h │ │ │ ├── IStats.h │ │ │ ├── IStorage.h │ │ │ ├── IUser.h │ │ │ ├── IUtils.h │ │ │ └── InitOptions.h │ │ ├── gog │ │ │ └── README.MD │ │ ├── x64 │ │ │ ├── CMakeLists.txt │ │ │ ├── UniverseLAN.def │ │ │ └── interceptor_versioninfo.rc │ │ └── x86 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ ├── 1.124.0 │ │ ├── Dll.cxx │ │ ├── compat_list.txt │ │ ├── galaxy │ │ │ ├── Errors.h │ │ │ ├── GalaxyAllocator.h │ │ │ ├── GalaxyApi.h │ │ │ ├── GalaxyExceptionHelper.h │ │ │ ├── GalaxyExport.h │ │ │ ├── GalaxyGameServerApi.h │ │ │ ├── GalaxyID.h │ │ │ ├── IApps.h │ │ │ ├── IChat.h │ │ │ ├── ICustomNetworking.h │ │ │ ├── IFriends.h │ │ │ ├── IListenerRegistrar.h │ │ │ ├── ILogger.h │ │ │ ├── IMatchmaking.h │ │ │ ├── INetworking.h │ │ │ ├── IStats.h │ │ │ ├── IStorage.h │ │ │ ├── IUser.h │ │ │ ├── IUtils.h │ │ │ └── InitOptions.h │ │ ├── gog │ │ │ └── README.MD │ │ ├── x64 │ │ │ ├── CMakeLists.txt │ │ │ ├── UniverseLAN.def │ │ │ └── interceptor_versioninfo.rc │ │ └── x86 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ ├── 1.125.2 │ │ ├── Dll.cxx │ │ ├── compat_list.txt │ │ ├── galaxy │ │ │ ├── Errors.h │ │ │ ├── GalaxyAllocator.h │ │ │ ├── GalaxyApi.h │ │ │ ├── GalaxyExceptionHelper.h │ │ │ ├── GalaxyExport.h │ │ │ ├── GalaxyGameServerApi.h │ │ │ ├── GalaxyID.h │ │ │ ├── IApps.h │ │ │ ├── IChat.h │ │ │ ├── ICustomNetworking.h │ │ │ ├── IFriends.h │ │ │ ├── IListenerRegistrar.h │ │ │ ├── ILogger.h │ │ │ ├── IMatchmaking.h │ │ │ ├── INetworking.h │ │ │ ├── IStats.h │ │ │ ├── IStorage.h │ │ │ ├── IUser.h │ │ │ ├── IUtils.h │ │ │ └── InitOptions.h │ │ ├── gog │ │ │ └── README.MD │ │ ├── x64 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ │ └── x86 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ ├── 1.126.1 │ │ ├── Dll.cxx │ │ ├── compat_list.txt │ │ ├── galaxy │ │ │ ├── Errors.h │ │ │ ├── GalaxyAllocator.h │ │ │ ├── GalaxyApi.h │ │ │ ├── GalaxyExceptionHelper.h │ │ │ ├── GalaxyExport.h │ │ │ ├── GalaxyGameServerApi.h │ │ │ ├── GalaxyID.h │ │ │ ├── IApps.h │ │ │ ├── IChat.h │ │ │ ├── ICustomNetworking.h │ │ │ ├── IFriends.h │ │ │ ├── IListenerRegistrar.h │ │ │ ├── ILogger.h │ │ │ ├── IMatchmaking.h │ │ │ ├── INetworking.h │ │ │ ├── IStats.h │ │ │ ├── IStorage.h │ │ │ ├── IUser.h │ │ │ ├── IUtils.h │ │ │ └── InitOptions.h │ │ ├── gog │ │ │ └── README.MD │ │ ├── x64 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ │ └── x86 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ ├── 1.127.0 │ │ ├── Dll.cxx │ │ ├── galaxy │ │ │ ├── Errors.h │ │ │ ├── GalaxyAllocator.h │ │ │ ├── GalaxyApi.h │ │ │ ├── GalaxyExceptionHelper.h │ │ │ ├── GalaxyExport.h │ │ │ ├── GalaxyGameServerApi.h │ │ │ ├── GalaxyID.h │ │ │ ├── IApps.h │ │ │ ├── IChat.h │ │ │ ├── ICustomNetworking.h │ │ │ ├── IFriends.h │ │ │ ├── IListenerRegistrar.h │ │ │ ├── ILogger.h │ │ │ ├── IMatchmaking.h │ │ │ ├── INetworking.h │ │ │ ├── IStats.h │ │ │ ├── IStorage.h │ │ │ ├── IUser.h │ │ │ ├── IUtils.h │ │ │ └── InitOptions.h │ │ ├── gog │ │ │ └── README.MD │ │ ├── x64 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ │ └── x86 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ ├── 1.128.3 │ │ ├── Dll.cxx │ │ ├── compat_list.txt │ │ ├── galaxy │ │ │ ├── Errors.h │ │ │ ├── GalaxyAllocator.h │ │ │ ├── GalaxyApi.h │ │ │ ├── GalaxyExceptionHelper.h │ │ │ ├── GalaxyExport.h │ │ │ ├── GalaxyGameServerApi.h │ │ │ ├── GalaxyID.h │ │ │ ├── IApps.h │ │ │ ├── IChat.h │ │ │ ├── ICustomNetworking.h │ │ │ ├── IFriends.h │ │ │ ├── IListenerRegistrar.h │ │ │ ├── ILogger.h │ │ │ ├── IMatchmaking.h │ │ │ ├── INetworking.h │ │ │ ├── IStats.h │ │ │ ├── IStorage.h │ │ │ ├── IUser.h │ │ │ ├── IUtils.h │ │ │ └── InitOptions.h │ │ ├── gog │ │ │ └── README.MD │ │ ├── x64 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ │ └── x86 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ ├── 1.130.0 │ │ ├── Dll.cxx │ │ ├── compat_list.txt │ │ ├── galaxy │ │ │ ├── Errors.h │ │ │ ├── GalaxyAllocator.h │ │ │ ├── GalaxyApi.h │ │ │ ├── GalaxyExceptionHelper.h │ │ │ ├── GalaxyExport.h │ │ │ ├── GalaxyGameServerApi.h │ │ │ ├── GalaxyID.h │ │ │ ├── IApps.h │ │ │ ├── IChat.h │ │ │ ├── ICustomNetworking.h │ │ │ ├── IFriends.h │ │ │ ├── IListenerRegistrar.h │ │ │ ├── ILogger.h │ │ │ ├── IMatchmaking.h │ │ │ ├── INetworking.h │ │ │ ├── IStats.h │ │ │ ├── IStorage.h │ │ │ ├── IUser.h │ │ │ ├── IUtils.h │ │ │ └── InitOptions.h │ │ ├── gog │ │ │ └── README.MD │ │ ├── x64 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ │ └── x86 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ ├── 1.131.3 │ │ ├── Dll.cxx │ │ ├── compat_list.txt │ │ ├── galaxy │ │ │ ├── Errors.h │ │ │ ├── GalaxyAllocator.h │ │ │ ├── GalaxyApi.h │ │ │ ├── GalaxyExceptionHelper.h │ │ │ ├── GalaxyExport.h │ │ │ ├── GalaxyGameServerApi.h │ │ │ ├── GalaxyID.h │ │ │ ├── IApps.h │ │ │ ├── IChat.h │ │ │ ├── ICustomNetworking.h │ │ │ ├── IFriends.h │ │ │ ├── IListenerRegistrar.h │ │ │ ├── ILogger.h │ │ │ ├── IMatchmaking.h │ │ │ ├── INetworking.h │ │ │ ├── IStats.h │ │ │ ├── IStorage.h │ │ │ ├── IUser.h │ │ │ ├── IUtils.h │ │ │ └── InitOptions.h │ │ ├── gog │ │ │ └── README.MD │ │ ├── x64 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ │ └── x86 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ ├── 1.132.1 │ │ ├── Dll.cxx │ │ ├── compat_list.txt │ │ ├── galaxy │ │ │ ├── Errors.h │ │ │ ├── GalaxyAllocator.h │ │ │ ├── GalaxyApi.h │ │ │ ├── GalaxyExceptionHelper.h │ │ │ ├── GalaxyExport.h │ │ │ ├── GalaxyGameServerApi.h │ │ │ ├── GalaxyID.h │ │ │ ├── IApps.h │ │ │ ├── IChat.h │ │ │ ├── ICustomNetworking.h │ │ │ ├── IFriends.h │ │ │ ├── IListenerRegistrar.h │ │ │ ├── ILogger.h │ │ │ ├── IMatchmaking.h │ │ │ ├── INetworking.h │ │ │ ├── IStats.h │ │ │ ├── IStorage.h │ │ │ ├── IUser.h │ │ │ ├── IUtils.h │ │ │ └── InitOptions.h │ │ ├── gog │ │ │ └── README.MD │ │ ├── x64 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ │ └── x86 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ ├── 1.133.0 │ │ ├── Dll.cxx │ │ ├── galaxy │ │ │ ├── Errors.h │ │ │ ├── GalaxyAllocator.h │ │ │ ├── GalaxyApi.h │ │ │ ├── GalaxyExceptionHelper.h │ │ │ ├── GalaxyExport.h │ │ │ ├── GalaxyGameServerApi.h │ │ │ ├── GalaxyID.h │ │ │ ├── IApps.h │ │ │ ├── IChat.h │ │ │ ├── ICustomNetworking.h │ │ │ ├── IFriends.h │ │ │ ├── IListenerRegistrar.h │ │ │ ├── ILogger.h │ │ │ ├── IMatchmaking.h │ │ │ ├── INetworking.h │ │ │ ├── IStats.h │ │ │ ├── IStorage.h │ │ │ ├── IUser.h │ │ │ ├── IUtils.h │ │ │ └── InitOptions.h │ │ ├── gog │ │ │ └── README.MD │ │ ├── x64 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ │ └── x86 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ ├── 1.133.6 │ │ ├── Dll.cxx │ │ ├── compat_list.txt │ │ ├── galaxy │ │ │ ├── Errors.h │ │ │ ├── GalaxyAllocator.h │ │ │ ├── GalaxyApi.h │ │ │ ├── GalaxyExceptionHelper.h │ │ │ ├── GalaxyExport.h │ │ │ ├── GalaxyGameServerApi.h │ │ │ ├── GalaxyID.h │ │ │ ├── IApps.h │ │ │ ├── IChat.h │ │ │ ├── ICustomNetworking.h │ │ │ ├── IFriends.h │ │ │ ├── IListenerRegistrar.h │ │ │ ├── ILogger.h │ │ │ ├── IMatchmaking.h │ │ │ ├── INetworking.h │ │ │ ├── IStats.h │ │ │ ├── IStorage.h │ │ │ ├── IUser.h │ │ │ ├── IUtils.h │ │ │ └── InitOptions.h │ │ ├── gog │ │ │ └── README.MD │ │ ├── x64 │ │ │ ├── CMakeLists.txt │ │ │ ├── UniverseLAN.def │ │ │ └── interceptor_versioninfo.rc │ │ └── x86 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ ├── 1.134.10 │ │ ├── Dll.cxx │ │ ├── galaxy │ │ │ ├── Errors.h │ │ │ ├── GalaxyAllocator.h │ │ │ ├── GalaxyApi.h │ │ │ ├── GalaxyExceptionHelper.h │ │ │ ├── GalaxyExport.h │ │ │ ├── GalaxyGameServerApi.h │ │ │ ├── GalaxyID.h │ │ │ ├── IApps.h │ │ │ ├── IChat.h │ │ │ ├── ICustomNetworking.h │ │ │ ├── IFriends.h │ │ │ ├── IListenerRegistrar.h │ │ │ ├── ILogger.h │ │ │ ├── IMatchmaking.h │ │ │ ├── INetworking.h │ │ │ ├── IStats.h │ │ │ ├── IStorage.h │ │ │ ├── ITelemetry.h │ │ │ ├── IUser.h │ │ │ ├── IUtils.h │ │ │ └── InitOptions.h │ │ ├── gog │ │ │ └── README.MD │ │ ├── x64 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ │ └── x86 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ ├── 1.134.8 │ │ ├── Dll.cxx │ │ ├── compat_list.txt │ │ ├── galaxy │ │ │ ├── Errors.h │ │ │ ├── GalaxyAllocator.h │ │ │ ├── GalaxyApi.h │ │ │ ├── GalaxyExceptionHelper.h │ │ │ ├── GalaxyExport.h │ │ │ ├── GalaxyGameServerApi.h │ │ │ ├── GalaxyID.h │ │ │ ├── IApps.h │ │ │ ├── IChat.h │ │ │ ├── ICustomNetworking.h │ │ │ ├── IFriends.h │ │ │ ├── IListenerRegistrar.h │ │ │ ├── ILogger.h │ │ │ ├── IMatchmaking.h │ │ │ ├── INetworking.h │ │ │ ├── IStats.h │ │ │ ├── IStorage.h │ │ │ ├── ITelemetry.h │ │ │ ├── IUser.h │ │ │ ├── IUtils.h │ │ │ └── InitOptions.h │ │ ├── gog │ │ │ └── README.MD │ │ ├── x64 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ │ └── x86 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ ├── 1.134.9 │ │ ├── Dll.cxx │ │ ├── galaxy │ │ │ ├── Errors.h │ │ │ ├── GalaxyAllocator.h │ │ │ ├── GalaxyApi.h │ │ │ ├── GalaxyExceptionHelper.h │ │ │ ├── GalaxyExport.h │ │ │ ├── GalaxyGameServerApi.h │ │ │ ├── GalaxyID.h │ │ │ ├── IApps.h │ │ │ ├── IChat.h │ │ │ ├── ICustomNetworking.h │ │ │ ├── IFriends.h │ │ │ ├── IListenerRegistrar.h │ │ │ ├── ILogger.h │ │ │ ├── IMatchmaking.h │ │ │ ├── INetworking.h │ │ │ ├── IStats.h │ │ │ ├── IStorage.h │ │ │ ├── ITelemetry.h │ │ │ ├── IUser.h │ │ │ ├── IUtils.h │ │ │ └── InitOptions.h │ │ ├── gog │ │ │ └── README.MD │ │ ├── x64 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ │ └── x86 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ ├── 1.135.0 │ │ ├── Dll.cxx │ │ ├── galaxy │ │ │ ├── Errors.h │ │ │ ├── GalaxyAllocator.h │ │ │ ├── GalaxyApi.h │ │ │ ├── GalaxyExceptionHelper.h │ │ │ ├── GalaxyExport.h │ │ │ ├── GalaxyGameServerApi.h │ │ │ ├── GalaxyID.h │ │ │ ├── IApps.h │ │ │ ├── IChat.h │ │ │ ├── ICustomNetworking.h │ │ │ ├── IFriends.h │ │ │ ├── IListenerRegistrar.h │ │ │ ├── ILogger.h │ │ │ ├── IMatchmaking.h │ │ │ ├── INetworking.h │ │ │ ├── IStats.h │ │ │ ├── IStorage.h │ │ │ ├── ITelemetry.h │ │ │ ├── IUser.h │ │ │ ├── IUtils.h │ │ │ └── InitOptions.h │ │ ├── gog │ │ │ └── README.MD │ │ ├── x64 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ │ └── x86 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ ├── 1.138.0 │ │ ├── Dll.cxx │ │ ├── compat_list.txt │ │ ├── galaxy │ │ │ ├── Errors.h │ │ │ ├── GalaxyAllocator.h │ │ │ ├── GalaxyApi.h │ │ │ ├── GalaxyExceptionHelper.h │ │ │ ├── GalaxyExport.h │ │ │ ├── GalaxyGameServerApi.h │ │ │ ├── GalaxyID.h │ │ │ ├── IApps.h │ │ │ ├── IChat.h │ │ │ ├── ICustomNetworking.h │ │ │ ├── IFriends.h │ │ │ ├── IListenerRegistrar.h │ │ │ ├── ILogger.h │ │ │ ├── IMatchmaking.h │ │ │ ├── INetworking.h │ │ │ ├── IStats.h │ │ │ ├── IStorage.h │ │ │ ├── ITelemetry.h │ │ │ ├── IUser.h │ │ │ ├── IUtils.h │ │ │ └── InitOptions.h │ │ ├── gog │ │ │ └── README.MD │ │ ├── x64 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ │ └── x86 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ ├── 1.139.2 │ │ ├── Dll.cxx │ │ ├── compat_list.txt │ │ ├── galaxy │ │ │ ├── Errors.h │ │ │ ├── GalaxyAllocator.h │ │ │ ├── GalaxyApi.h │ │ │ ├── GalaxyExceptionHelper.h │ │ │ ├── GalaxyExport.h │ │ │ ├── GalaxyGameServerApi.h │ │ │ ├── GalaxyID.h │ │ │ ├── IApps.h │ │ │ ├── IChat.h │ │ │ ├── ICustomNetworking.h │ │ │ ├── IFriends.h │ │ │ ├── IListenerRegistrar.h │ │ │ ├── ILogger.h │ │ │ ├── IMatchmaking.h │ │ │ ├── INetworking.h │ │ │ ├── IStats.h │ │ │ ├── IStorage.h │ │ │ ├── ITelemetry.h │ │ │ ├── IUser.h │ │ │ ├── IUtils.h │ │ │ └── InitOptions.h │ │ ├── gog │ │ │ └── README.MD │ │ ├── x64 │ │ │ ├── CMakeLists.txt │ │ │ ├── UniverseLAN.def │ │ │ └── interceptor_versioninfo.rc │ │ └── x86 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ ├── 1.139.5 │ │ ├── Dll.cxx │ │ ├── compat_list.txt │ │ ├── galaxy │ │ │ ├── Errors.h │ │ │ ├── GalaxyAllocator.h │ │ │ ├── GalaxyApi.h │ │ │ ├── GalaxyExceptionHelper.h │ │ │ ├── GalaxyExport.h │ │ │ ├── GalaxyGameServerApi.h │ │ │ ├── GalaxyID.h │ │ │ ├── IApps.h │ │ │ ├── IChat.h │ │ │ ├── ICustomNetworking.h │ │ │ ├── IFriends.h │ │ │ ├── IListenerRegistrar.h │ │ │ ├── ILogger.h │ │ │ ├── IMatchmaking.h │ │ │ ├── INetworking.h │ │ │ ├── IStats.h │ │ │ ├── IStorage.h │ │ │ ├── ITelemetry.h │ │ │ ├── IUser.h │ │ │ ├── IUtils.h │ │ │ └── InitOptions.h │ │ ├── gog │ │ │ └── README.MD │ │ ├── x64 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ │ └── x86 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ ├── 1.139.6 │ │ ├── Dll.cxx │ │ ├── galaxy │ │ │ ├── Errors.h │ │ │ ├── GalaxyAllocator.h │ │ │ ├── GalaxyApi.h │ │ │ ├── GalaxyExceptionHelper.h │ │ │ ├── GalaxyExport.h │ │ │ ├── GalaxyGameServerApi.h │ │ │ ├── GalaxyID.h │ │ │ ├── IApps.h │ │ │ ├── IChat.h │ │ │ ├── ICustomNetworking.h │ │ │ ├── IFriends.h │ │ │ ├── IListenerRegistrar.h │ │ │ ├── ILogger.h │ │ │ ├── IMatchmaking.h │ │ │ ├── INetworking.h │ │ │ ├── IStats.h │ │ │ ├── IStorage.h │ │ │ ├── ITelemetry.h │ │ │ ├── IUser.h │ │ │ ├── IUtils.h │ │ │ └── InitOptions.h │ │ ├── gog │ │ │ └── README.MD │ │ ├── x64 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ │ └── x86 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ ├── 1.139.9 │ │ ├── Dll.cxx │ │ ├── compat_list.txt │ │ ├── galaxy │ │ │ ├── Errors.h │ │ │ ├── GalaxyAllocator.h │ │ │ ├── GalaxyApi.h │ │ │ ├── GalaxyExceptionHelper.h │ │ │ ├── GalaxyExport.h │ │ │ ├── GalaxyGameServerApi.h │ │ │ ├── GalaxyID.h │ │ │ ├── IApps.h │ │ │ ├── IChat.h │ │ │ ├── ICustomNetworking.h │ │ │ ├── IFriends.h │ │ │ ├── IListenerRegistrar.h │ │ │ ├── ILogger.h │ │ │ ├── IMatchmaking.h │ │ │ ├── INetworking.h │ │ │ ├── IStats.h │ │ │ ├── IStorage.h │ │ │ ├── ITelemetry.h │ │ │ ├── IUser.h │ │ │ ├── IUtils.h │ │ │ └── InitOptions.h │ │ ├── gog │ │ │ └── README.MD │ │ ├── x64 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ │ └── x86 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ ├── 1.140.0 │ │ ├── Dll.cxx │ │ ├── galaxy │ │ │ ├── Errors.h │ │ │ ├── GalaxyAllocator.h │ │ │ ├── GalaxyApi.h │ │ │ ├── GalaxyExceptionHelper.h │ │ │ ├── GalaxyExport.h │ │ │ ├── GalaxyGameServerApi.h │ │ │ ├── GalaxyID.h │ │ │ ├── GalaxyThread.h │ │ │ ├── IApps.h │ │ │ ├── IChat.h │ │ │ ├── ICustomNetworking.h │ │ │ ├── IFriends.h │ │ │ ├── IListenerRegistrar.h │ │ │ ├── ILogger.h │ │ │ ├── IMatchmaking.h │ │ │ ├── INetworking.h │ │ │ ├── IStats.h │ │ │ ├── IStorage.h │ │ │ ├── ITelemetry.h │ │ │ ├── IUser.h │ │ │ ├── IUtils.h │ │ │ └── InitOptions.h │ │ ├── gog │ │ │ └── README.MD │ │ ├── x64 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ │ └── x86 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ ├── 1.142.0 │ │ ├── Dll.cxx │ │ ├── compat_list.txt │ │ ├── galaxy │ │ │ ├── Errors.h │ │ │ ├── GalaxyAllocator.h │ │ │ ├── GalaxyApi.h │ │ │ ├── GalaxyExceptionHelper.h │ │ │ ├── GalaxyExport.h │ │ │ ├── GalaxyGameServerApi.h │ │ │ ├── GalaxyID.h │ │ │ ├── GalaxyThread.h │ │ │ ├── IApps.h │ │ │ ├── IChat.h │ │ │ ├── ICustomNetworking.h │ │ │ ├── IFriends.h │ │ │ ├── IListenerRegistrar.h │ │ │ ├── ILogger.h │ │ │ ├── IMatchmaking.h │ │ │ ├── INetworking.h │ │ │ ├── IStats.h │ │ │ ├── IStorage.h │ │ │ ├── ITelemetry.h │ │ │ ├── IUser.h │ │ │ ├── IUtils.h │ │ │ └── InitOptions.h │ │ ├── gog │ │ │ └── README.MD │ │ ├── x64 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ │ └── x86 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ ├── 1.144.1 │ │ ├── Dll.cxx │ │ ├── compat_list.txt │ │ ├── galaxy │ │ │ ├── Errors.h │ │ │ ├── GalaxyAllocator.h │ │ │ ├── GalaxyApi.h │ │ │ ├── GalaxyExceptionHelper.h │ │ │ ├── GalaxyExport.h │ │ │ ├── GalaxyGameServerApi.h │ │ │ ├── GalaxyID.h │ │ │ ├── GalaxyThread.h │ │ │ ├── IApps.h │ │ │ ├── IChat.h │ │ │ ├── ICustomNetworking.h │ │ │ ├── IFriends.h │ │ │ ├── IListenerRegistrar.h │ │ │ ├── ILogger.h │ │ │ ├── IMatchmaking.h │ │ │ ├── INetworking.h │ │ │ ├── IStats.h │ │ │ ├── IStorage.h │ │ │ ├── ITelemetry.h │ │ │ ├── IUser.h │ │ │ ├── IUtils.h │ │ │ └── InitOptions.h │ │ ├── gog │ │ │ └── README.MD │ │ ├── x64 │ │ │ ├── CMakeLists.txt │ │ │ ├── UniverseLAN.def │ │ │ └── interceptor_versioninfo.rc │ │ └── x86 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ ├── 1.148.1 │ │ ├── Dll.cxx │ │ ├── compat_list.txt │ │ ├── galaxy │ │ │ ├── Errors.h │ │ │ ├── GalaxyAllocator.h │ │ │ ├── GalaxyApi.h │ │ │ ├── GalaxyExceptionHelper.h │ │ │ ├── GalaxyExport.h │ │ │ ├── GalaxyGameServerApi.h │ │ │ ├── GalaxyID.h │ │ │ ├── GalaxyThread.h │ │ │ ├── IApps.h │ │ │ ├── IChat.h │ │ │ ├── ICustomNetworking.h │ │ │ ├── IFriends.h │ │ │ ├── IListenerRegistrar.h │ │ │ ├── ILogger.h │ │ │ ├── IMatchmaking.h │ │ │ ├── INetworking.h │ │ │ ├── IStats.h │ │ │ ├── IStorage.h │ │ │ ├── ITelemetry.h │ │ │ ├── IUser.h │ │ │ ├── IUtils.h │ │ │ └── InitOptions.h │ │ ├── gog │ │ │ └── README.MD │ │ ├── x64 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ │ └── x86 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ ├── 1.148.11 │ │ ├── Dll.cxx │ │ ├── compat_list.txt │ │ ├── galaxy │ │ │ ├── Errors.h │ │ │ ├── GalaxyAllocator.h │ │ │ ├── GalaxyApi.h │ │ │ ├── GalaxyExceptionHelper.h │ │ │ ├── GalaxyExport.h │ │ │ ├── GalaxyGameServerApi.h │ │ │ ├── GalaxyID.h │ │ │ ├── GalaxyThread.h │ │ │ ├── IApps.h │ │ │ ├── IChat.h │ │ │ ├── ICloudStorage.h │ │ │ ├── ICustomNetworking.h │ │ │ ├── IFriends.h │ │ │ ├── IListenerRegistrar.h │ │ │ ├── ILogger.h │ │ │ ├── IMatchmaking.h │ │ │ ├── INetworking.h │ │ │ ├── IStats.h │ │ │ ├── IStorage.h │ │ │ ├── ITelemetry.h │ │ │ ├── IUser.h │ │ │ ├── IUtils.h │ │ │ └── InitOptions.h │ │ ├── gog │ │ │ └── README.MD │ │ ├── x64 │ │ │ ├── CMakeLists.txt │ │ │ ├── UniverseLAN.def │ │ │ └── interceptor_versioninfo.rc │ │ └── x86 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ ├── 1.148.14 │ │ ├── Dll.cxx │ │ ├── galaxy │ │ │ ├── Errors.h │ │ │ ├── GalaxyAllocator.h │ │ │ ├── GalaxyApi.h │ │ │ ├── GalaxyExceptionHelper.h │ │ │ ├── GalaxyExport.h │ │ │ ├── GalaxyGameServerApi.h │ │ │ ├── GalaxyID.h │ │ │ ├── GalaxyThread.h │ │ │ ├── IApps.h │ │ │ ├── IChat.h │ │ │ ├── ICloudStorage.h │ │ │ ├── ICustomNetworking.h │ │ │ ├── IFriends.h │ │ │ ├── IListenerRegistrar.h │ │ │ ├── ILogger.h │ │ │ ├── IMatchmaking.h │ │ │ ├── INetworking.h │ │ │ ├── IStats.h │ │ │ ├── IStorage.h │ │ │ ├── ITelemetry.h │ │ │ ├── IUser.h │ │ │ ├── IUtils.h │ │ │ └── InitOptions.h │ │ ├── gog │ │ │ └── README.MD │ │ ├── x64 │ │ │ ├── CMakeLists.txt │ │ │ ├── UniverseLAN.def │ │ │ └── interceptor_versioninfo.rc │ │ └── x86 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ ├── 1.148.2 │ │ ├── Dll.cxx │ │ ├── galaxy │ │ │ ├── Errors.h │ │ │ ├── GalaxyAllocator.h │ │ │ ├── GalaxyApi.h │ │ │ ├── GalaxyExceptionHelper.h │ │ │ ├── GalaxyExport.h │ │ │ ├── GalaxyGameServerApi.h │ │ │ ├── GalaxyID.h │ │ │ ├── GalaxyThread.h │ │ │ ├── IApps.h │ │ │ ├── IChat.h │ │ │ ├── ICustomNetworking.h │ │ │ ├── IFriends.h │ │ │ ├── IListenerRegistrar.h │ │ │ ├── ILogger.h │ │ │ ├── IMatchmaking.h │ │ │ ├── INetworking.h │ │ │ ├── IStats.h │ │ │ ├── IStorage.h │ │ │ ├── ITelemetry.h │ │ │ ├── IUser.h │ │ │ ├── IUtils.h │ │ │ └── InitOptions.h │ │ ├── gog │ │ │ └── README.MD │ │ ├── x64 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ │ └── x86 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ ├── 1.148.3 │ │ ├── Dll.cxx │ │ ├── compat_list.txt │ │ ├── galaxy │ │ │ ├── Errors.h │ │ │ ├── GalaxyAllocator.h │ │ │ ├── GalaxyApi.h │ │ │ ├── GalaxyExceptionHelper.h │ │ │ ├── GalaxyExport.h │ │ │ ├── GalaxyGameServerApi.h │ │ │ ├── GalaxyID.h │ │ │ ├── GalaxyThread.h │ │ │ ├── IApps.h │ │ │ ├── IChat.h │ │ │ ├── ICustomNetworking.h │ │ │ ├── IFriends.h │ │ │ ├── IListenerRegistrar.h │ │ │ ├── ILogger.h │ │ │ ├── IMatchmaking.h │ │ │ ├── INetworking.h │ │ │ ├── IStats.h │ │ │ ├── IStorage.h │ │ │ ├── ITelemetry.h │ │ │ ├── IUser.h │ │ │ ├── IUtils.h │ │ │ └── InitOptions.h │ │ ├── gog │ │ │ └── README.MD │ │ ├── x64 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ │ └── x86 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ ├── 1.148.5 │ │ ├── Dll.cxx │ │ ├── galaxy │ │ │ ├── Errors.h │ │ │ ├── GalaxyAllocator.h │ │ │ ├── GalaxyApi.h │ │ │ ├── GalaxyExceptionHelper.h │ │ │ ├── GalaxyExport.h │ │ │ ├── GalaxyGameServerApi.h │ │ │ ├── GalaxyID.h │ │ │ ├── GalaxyThread.h │ │ │ ├── IApps.h │ │ │ ├── IChat.h │ │ │ ├── ICustomNetworking.h │ │ │ ├── IFriends.h │ │ │ ├── IListenerRegistrar.h │ │ │ ├── ILogger.h │ │ │ ├── IMatchmaking.h │ │ │ ├── INetworking.h │ │ │ ├── IStats.h │ │ │ ├── IStorage.h │ │ │ ├── ITelemetry.h │ │ │ ├── IUser.h │ │ │ ├── IUtils.h │ │ │ └── InitOptions.h │ │ ├── gog │ │ │ └── README.MD │ │ ├── x64 │ │ │ ├── CMakeLists.txt │ │ │ ├── UniverseLAN.def │ │ │ └── interceptor_versioninfo.rc │ │ └── x86 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ ├── 1.148.6 │ │ ├── Dll.cxx │ │ ├── galaxy │ │ │ ├── Errors.h │ │ │ ├── GalaxyAllocator.h │ │ │ ├── GalaxyApi.h │ │ │ ├── GalaxyExceptionHelper.h │ │ │ ├── GalaxyExport.h │ │ │ ├── GalaxyGameServerApi.h │ │ │ ├── GalaxyID.h │ │ │ ├── GalaxyThread.h │ │ │ ├── IApps.h │ │ │ ├── IChat.h │ │ │ ├── ICloudStorage.h │ │ │ ├── ICustomNetworking.h │ │ │ ├── IFriends.h │ │ │ ├── IListenerRegistrar.h │ │ │ ├── ILogger.h │ │ │ ├── IMatchmaking.h │ │ │ ├── INetworking.h │ │ │ ├── IStats.h │ │ │ ├── IStorage.h │ │ │ ├── ITelemetry.h │ │ │ ├── IUser.h │ │ │ ├── IUtils.h │ │ │ └── InitOptions.h │ │ ├── gog │ │ │ └── README.MD │ │ ├── x64 │ │ │ ├── CMakeLists.txt │ │ │ ├── UniverseLAN.def │ │ │ └── interceptor_versioninfo.rc │ │ └── x86 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ ├── 1.148.7 │ │ ├── Dll.cxx │ │ ├── compat_list.txt │ │ ├── galaxy │ │ │ ├── Errors.h │ │ │ ├── GalaxyAllocator.h │ │ │ ├── GalaxyApi.h │ │ │ ├── GalaxyExceptionHelper.h │ │ │ ├── GalaxyExport.h │ │ │ ├── GalaxyGameServerApi.h │ │ │ ├── GalaxyID.h │ │ │ ├── GalaxyThread.h │ │ │ ├── IApps.h │ │ │ ├── IChat.h │ │ │ ├── ICloudStorage.h │ │ │ ├── ICustomNetworking.h │ │ │ ├── IFriends.h │ │ │ ├── IListenerRegistrar.h │ │ │ ├── ILogger.h │ │ │ ├── IMatchmaking.h │ │ │ ├── INetworking.h │ │ │ ├── IStats.h │ │ │ ├── IStorage.h │ │ │ ├── ITelemetry.h │ │ │ ├── IUser.h │ │ │ ├── IUtils.h │ │ │ └── InitOptions.h │ │ ├── gog │ │ │ └── README.MD │ │ ├── x64 │ │ │ ├── CMakeLists.txt │ │ │ ├── UniverseLAN.def │ │ │ └── interceptor_versioninfo.rc │ │ └── x86 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ ├── 1.149.0 │ │ ├── Dll.cxx │ │ ├── compat_list.txt │ │ ├── galaxy │ │ │ ├── Errors.h │ │ │ ├── GalaxyAllocator.h │ │ │ ├── GalaxyApi.h │ │ │ ├── GalaxyExceptionHelper.h │ │ │ ├── GalaxyExport.h │ │ │ ├── GalaxyGameServerApi.h │ │ │ ├── GalaxyID.h │ │ │ ├── GalaxyThread.h │ │ │ ├── IApps.h │ │ │ ├── IChat.h │ │ │ ├── ICloudStorage.h │ │ │ ├── ICustomNetworking.h │ │ │ ├── IFriends.h │ │ │ ├── IListenerRegistrar.h │ │ │ ├── ILogger.h │ │ │ ├── IMatchmaking.h │ │ │ ├── INetworking.h │ │ │ ├── IStats.h │ │ │ ├── IStorage.h │ │ │ ├── ITelemetry.h │ │ │ ├── IUser.h │ │ │ ├── IUtils.h │ │ │ └── InitOptions.h │ │ ├── gog │ │ │ └── README.MD │ │ ├── x64 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ │ └── x86 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ ├── 1.150.0 │ │ ├── Dll.cxx │ │ ├── galaxy │ │ │ ├── Errors.h │ │ │ ├── GalaxyAllocator.h │ │ │ ├── GalaxyApi.h │ │ │ ├── GalaxyExceptionHelper.h │ │ │ ├── GalaxyExport.h │ │ │ ├── GalaxyGameServerApi.h │ │ │ ├── GalaxyID.h │ │ │ ├── GalaxyThread.h │ │ │ ├── IApps.h │ │ │ ├── IChat.h │ │ │ ├── ICloudStorage.h │ │ │ ├── ICustomNetworking.h │ │ │ ├── IFriends.h │ │ │ ├── IListenerRegistrar.h │ │ │ ├── ILogger.h │ │ │ ├── IMatchmaking.h │ │ │ ├── INetworking.h │ │ │ ├── IStats.h │ │ │ ├── IStorage.h │ │ │ ├── ITelemetry.h │ │ │ ├── IUser.h │ │ │ ├── IUtils.h │ │ │ └── InitOptions.h │ │ ├── gog │ │ │ └── README.MD │ │ ├── x64 │ │ │ ├── CMakeLists.txt │ │ │ ├── UniverseLAN.def │ │ │ └── interceptor_versioninfo.rc │ │ └── x86 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ ├── 1.151.0 │ │ ├── Dll.cxx │ │ ├── galaxy │ │ │ ├── Errors.h │ │ │ ├── GalaxyAllocator.h │ │ │ ├── GalaxyApi.h │ │ │ ├── GalaxyExceptionHelper.h │ │ │ ├── GalaxyExport.h │ │ │ ├── GalaxyGameServerApi.h │ │ │ ├── GalaxyID.h │ │ │ ├── GalaxyThread.h │ │ │ ├── IApps.h │ │ │ ├── IChat.h │ │ │ ├── ICloudStorage.h │ │ │ ├── ICustomNetworking.h │ │ │ ├── IFriends.h │ │ │ ├── IListenerRegistrar.h │ │ │ ├── ILogger.h │ │ │ ├── IMatchmaking.h │ │ │ ├── INetworking.h │ │ │ ├── IStats.h │ │ │ ├── IStorage.h │ │ │ ├── ITelemetry.h │ │ │ ├── IUser.h │ │ │ ├── IUtils.h │ │ │ ├── InitOptions.h │ │ │ └── ShutdownOptions.h │ │ ├── gog │ │ │ └── README.MD │ │ ├── x64 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ │ └── x86 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ ├── 1.152.1 │ │ ├── Dll.cxx │ │ ├── galaxy │ │ │ ├── Errors.h │ │ │ ├── GalaxyAllocator.h │ │ │ ├── GalaxyApi.h │ │ │ ├── GalaxyExceptionHelper.h │ │ │ ├── GalaxyExport.h │ │ │ ├── GalaxyGameServerApi.h │ │ │ ├── GalaxyID.h │ │ │ ├── GalaxyThread.h │ │ │ ├── IApps.h │ │ │ ├── IChat.h │ │ │ ├── ICloudStorage.h │ │ │ ├── ICustomNetworking.h │ │ │ ├── IFriends.h │ │ │ ├── IListenerRegistrar.h │ │ │ ├── ILogger.h │ │ │ ├── IMatchmaking.h │ │ │ ├── INetworking.h │ │ │ ├── IStats.h │ │ │ ├── IStorage.h │ │ │ ├── ITelemetry.h │ │ │ ├── IUser.h │ │ │ ├── IUtils.h │ │ │ ├── InitOptions.h │ │ │ └── ShutdownOptions.h │ │ ├── gog │ │ │ └── README.MD │ │ ├── x64 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ │ └── x86 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ ├── 1.152.11 │ │ ├── Dll.cxx │ │ ├── galaxy │ │ │ ├── Errors.h │ │ │ ├── GalaxyAllocator.h │ │ │ ├── GalaxyApi.h │ │ │ ├── GalaxyExceptionHelper.h │ │ │ ├── GalaxyExport.h │ │ │ ├── GalaxyGameServerApi.h │ │ │ ├── GalaxyID.h │ │ │ ├── GalaxyThread.h │ │ │ ├── IApps.h │ │ │ ├── IChat.h │ │ │ ├── ICloudStorage.h │ │ │ ├── ICustomNetworking.h │ │ │ ├── IFriends.h │ │ │ ├── IListenerRegistrar.h │ │ │ ├── ILogger.h │ │ │ ├── IMatchmaking.h │ │ │ ├── INetworking.h │ │ │ ├── IStats.h │ │ │ ├── IStorage.h │ │ │ ├── ITelemetry.h │ │ │ ├── IUser.h │ │ │ ├── IUtils.h │ │ │ ├── InitOptions.h │ │ │ └── ShutdownOptions.h │ │ ├── gog │ │ │ └── README.MD │ │ ├── x64 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ │ └── x86 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ ├── 1.152.2 │ │ ├── Dll.cxx │ │ ├── galaxy │ │ │ ├── Errors.h │ │ │ ├── GalaxyAllocator.h │ │ │ ├── GalaxyApi.h │ │ │ ├── GalaxyExceptionHelper.h │ │ │ ├── GalaxyExport.h │ │ │ ├── GalaxyGameServerApi.h │ │ │ ├── GalaxyID.h │ │ │ ├── GalaxyThread.h │ │ │ ├── IApps.h │ │ │ ├── IChat.h │ │ │ ├── ICloudStorage.h │ │ │ ├── ICustomNetworking.h │ │ │ ├── IFriends.h │ │ │ ├── IListenerRegistrar.h │ │ │ ├── ILogger.h │ │ │ ├── IMatchmaking.h │ │ │ ├── INetworking.h │ │ │ ├── IStats.h │ │ │ ├── IStorage.h │ │ │ ├── ITelemetry.h │ │ │ ├── IUser.h │ │ │ ├── IUtils.h │ │ │ ├── InitOptions.h │ │ │ └── ShutdownOptions.h │ │ ├── gog │ │ │ └── README.MD │ │ ├── x64 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ │ └── x86 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ ├── 1.152.6 │ │ ├── Dll.cxx │ │ ├── galaxy │ │ │ ├── Errors.h │ │ │ ├── GalaxyAllocator.h │ │ │ ├── GalaxyApi.h │ │ │ ├── GalaxyExceptionHelper.h │ │ │ ├── GalaxyExport.h │ │ │ ├── GalaxyGameServerApi.h │ │ │ ├── GalaxyID.h │ │ │ ├── GalaxyThread.h │ │ │ ├── IApps.h │ │ │ ├── IChat.h │ │ │ ├── ICloudStorage.h │ │ │ ├── ICustomNetworking.h │ │ │ ├── IFriends.h │ │ │ ├── IListenerRegistrar.h │ │ │ ├── ILogger.h │ │ │ ├── IMatchmaking.h │ │ │ ├── INetworking.h │ │ │ ├── IStats.h │ │ │ ├── IStorage.h │ │ │ ├── ITelemetry.h │ │ │ ├── IUser.h │ │ │ ├── IUtils.h │ │ │ ├── InitOptions.h │ │ │ └── ShutdownOptions.h │ │ ├── gog │ │ │ └── README.MD │ │ ├── x64 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ │ └── x86 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ ├── 1.152.9 │ │ ├── Dll.cxx │ │ ├── galaxy │ │ │ ├── Errors.h │ │ │ ├── GalaxyAllocator.h │ │ │ ├── GalaxyApi.h │ │ │ ├── GalaxyExceptionHelper.h │ │ │ ├── GalaxyExport.h │ │ │ ├── GalaxyGameServerApi.h │ │ │ ├── GalaxyID.h │ │ │ ├── GalaxyThread.h │ │ │ ├── IApps.h │ │ │ ├── IChat.h │ │ │ ├── ICloudStorage.h │ │ │ ├── ICustomNetworking.h │ │ │ ├── IFriends.h │ │ │ ├── IListenerRegistrar.h │ │ │ ├── ILogger.h │ │ │ ├── IMatchmaking.h │ │ │ ├── INetworking.h │ │ │ ├── IStats.h │ │ │ ├── IStorage.h │ │ │ ├── ITelemetry.h │ │ │ ├── IUser.h │ │ │ ├── IUtils.h │ │ │ ├── InitOptions.h │ │ │ └── ShutdownOptions.h │ │ ├── gog │ │ │ └── README.MD │ │ ├── x64 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ │ └── x86 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ ├── 1.57.0 │ │ ├── Factory.cxx │ │ ├── galaxy │ │ │ ├── Errors.h │ │ │ ├── GalaxyApi.h │ │ │ ├── GalaxyExport.h │ │ │ ├── GalaxyFactory.h │ │ │ ├── GalaxyID.h │ │ │ ├── IFriends.h │ │ │ ├── IGalaxy.h │ │ │ ├── IListenerRegistrar.h │ │ │ ├── ILogger.h │ │ │ ├── IMatchmaking.h │ │ │ ├── INetworking.h │ │ │ ├── IStats.h │ │ │ └── IUser.h │ │ ├── gog │ │ │ └── README.MD │ │ ├── x64 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ │ └── x86 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ ├── 1.60.0 │ │ ├── Factory.cxx │ │ ├── compat_list.txt │ │ ├── galaxy │ │ │ ├── Errors.h │ │ │ ├── GalaxyApi.h │ │ │ ├── GalaxyExport.h │ │ │ ├── GalaxyFactory.h │ │ │ ├── GalaxyID.h │ │ │ ├── IFriends.h │ │ │ ├── IGalaxy.h │ │ │ ├── IListenerRegistrar.h │ │ │ ├── ILogger.h │ │ │ ├── IMatchmaking.h │ │ │ ├── INetworking.h │ │ │ ├── IStats.h │ │ │ └── IUser.h │ │ ├── gog │ │ │ └── README.MD │ │ ├── x64 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ │ └── x86 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ ├── 1.61.0 │ │ ├── Factory.cxx │ │ ├── galaxy │ │ │ ├── Errors.h │ │ │ ├── GalaxyApi.h │ │ │ ├── GalaxyExport.h │ │ │ ├── GalaxyFactory.h │ │ │ ├── GalaxyID.h │ │ │ ├── IFriends.h │ │ │ ├── IGalaxy.h │ │ │ ├── IListenerRegistrar.h │ │ │ ├── ILogger.h │ │ │ ├── IMatchmaking.h │ │ │ ├── INetworking.h │ │ │ ├── IStats.h │ │ │ └── IUser.h │ │ ├── gog │ │ │ └── README.MD │ │ ├── x64 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ │ └── x86 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ ├── 1.64.0 │ │ ├── Factory.cxx │ │ ├── compat_list.txt │ │ ├── galaxy │ │ │ ├── Errors.h │ │ │ ├── GalaxyApi.h │ │ │ ├── GalaxyExport.h │ │ │ ├── GalaxyFactory.h │ │ │ ├── GalaxyID.h │ │ │ ├── IFriends.h │ │ │ ├── IGalaxy.h │ │ │ ├── IListenerRegistrar.h │ │ │ ├── ILogger.h │ │ │ ├── IMatchmaking.h │ │ │ ├── INetworking.h │ │ │ ├── IStats.h │ │ │ └── IUser.h │ │ ├── gog │ │ │ └── README.MD │ │ ├── x64 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ │ └── x86 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ ├── 1.66.0 │ │ ├── Factory.cxx │ │ ├── compat_list.txt │ │ ├── galaxy │ │ │ ├── Errors.h │ │ │ ├── GalaxyApi.h │ │ │ ├── GalaxyExport.h │ │ │ ├── GalaxyFactory.h │ │ │ ├── GalaxyID.h │ │ │ ├── IFriends.h │ │ │ ├── IGalaxy.h │ │ │ ├── IListenerRegistrar.h │ │ │ ├── ILogger.h │ │ │ ├── IMatchmaking.h │ │ │ ├── INetworking.h │ │ │ ├── IStats.h │ │ │ └── IUser.h │ │ ├── gog │ │ │ └── README.MD │ │ ├── x64 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ │ └── x86 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ ├── 1.67.0 │ │ ├── Factory.cxx │ │ ├── galaxy │ │ │ ├── Errors.h │ │ │ ├── GalaxyApi.h │ │ │ ├── GalaxyExport.h │ │ │ ├── GalaxyFactory.h │ │ │ ├── GalaxyID.h │ │ │ ├── IFriends.h │ │ │ ├── IGalaxy.h │ │ │ ├── IListenerRegistrar.h │ │ │ ├── ILogger.h │ │ │ ├── IMatchmaking.h │ │ │ ├── INetworking.h │ │ │ ├── IStats.h │ │ │ ├── IUser.h │ │ │ └── IUtils.h │ │ ├── gog │ │ │ └── README.MD │ │ ├── x64 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ │ └── x86 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ ├── 1.68.0 │ │ ├── Factory.cxx │ │ ├── galaxy │ │ │ ├── Errors.h │ │ │ ├── GalaxyApi.h │ │ │ ├── GalaxyExport.h │ │ │ ├── GalaxyFactory.h │ │ │ ├── GalaxyID.h │ │ │ ├── IFriends.h │ │ │ ├── IGalaxy.h │ │ │ ├── IListenerRegistrar.h │ │ │ ├── ILogger.h │ │ │ ├── IMatchmaking.h │ │ │ ├── INetworking.h │ │ │ ├── IStats.h │ │ │ ├── IUser.h │ │ │ └── IUtils.h │ │ ├── gog │ │ │ ├── GalaxyPeer.dll │ │ │ ├── GalaxyPeer64.dll │ │ │ └── README.MD │ │ ├── x64 │ │ │ ├── CMakeLists.txt │ │ │ ├── UniverseLAN.def │ │ │ └── interceptor_versioninfo.rc │ │ └── x86 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ ├── 1.69.0 │ │ ├── Factory.cxx │ │ ├── galaxy │ │ │ ├── Errors.h │ │ │ ├── GalaxyApi.h │ │ │ ├── GalaxyExport.h │ │ │ ├── GalaxyFactory.h │ │ │ ├── GalaxyID.h │ │ │ ├── IFriends.h │ │ │ ├── IGalaxy.h │ │ │ ├── IListenerRegistrar.h │ │ │ ├── ILogger.h │ │ │ ├── IMatchmaking.h │ │ │ ├── INetworking.h │ │ │ ├── IStats.h │ │ │ ├── IUser.h │ │ │ └── IUtils.h │ │ ├── gog │ │ │ └── README.MD │ │ ├── x64 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ │ └── x86 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ ├── 1.70.0 │ │ ├── Factory.cxx │ │ ├── galaxy │ │ │ ├── Errors.h │ │ │ ├── GalaxyApi.h │ │ │ ├── GalaxyExport.h │ │ │ ├── GalaxyFactory.h │ │ │ ├── GalaxyID.h │ │ │ ├── IFriends.h │ │ │ ├── IGalaxy.h │ │ │ ├── IListenerRegistrar.h │ │ │ ├── ILogger.h │ │ │ ├── IMatchmaking.h │ │ │ ├── INetworking.h │ │ │ ├── IStats.h │ │ │ ├── IUser.h │ │ │ └── IUtils.h │ │ ├── gog │ │ │ └── README.MD │ │ ├── x64 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ │ └── x86 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ ├── 1.72.0 │ │ ├── Factory.cxx │ │ ├── compat_list.txt │ │ ├── galaxy │ │ │ ├── Errors.h │ │ │ ├── GalaxyApi.h │ │ │ ├── GalaxyExport.h │ │ │ ├── GalaxyFactory.h │ │ │ ├── GalaxyID.h │ │ │ ├── IFriends.h │ │ │ ├── IGalaxy.h │ │ │ ├── IListenerRegistrar.h │ │ │ ├── ILogger.h │ │ │ ├── IMatchmaking.h │ │ │ ├── INetworking.h │ │ │ ├── IStats.h │ │ │ ├── IUser.h │ │ │ └── IUtils.h │ │ ├── gog │ │ │ └── README.MD │ │ ├── x64 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ │ └── x86 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ ├── 1.73.0 │ │ ├── Factory.cxx │ │ ├── galaxy │ │ │ ├── Errors.h │ │ │ ├── GalaxyApi.h │ │ │ ├── GalaxyExport.h │ │ │ ├── GalaxyFactory.h │ │ │ ├── GalaxyID.h │ │ │ ├── IApps.h │ │ │ ├── IFriends.h │ │ │ ├── IGalaxy.h │ │ │ ├── IListenerRegistrar.h │ │ │ ├── ILogger.h │ │ │ ├── IMatchmaking.h │ │ │ ├── INetworking.h │ │ │ ├── IStats.h │ │ │ ├── IUser.h │ │ │ └── IUtils.h │ │ ├── gog │ │ │ └── README.MD │ │ ├── x64 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ │ └── x86 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ ├── 1.74.0 │ │ ├── Factory.cxx │ │ ├── galaxy │ │ │ ├── Errors.h │ │ │ ├── GalaxyApi.h │ │ │ ├── GalaxyExport.h │ │ │ ├── GalaxyFactory.h │ │ │ ├── GalaxyID.h │ │ │ ├── IApps.h │ │ │ ├── IFriends.h │ │ │ ├── IGalaxy.h │ │ │ ├── IListenerRegistrar.h │ │ │ ├── ILogger.h │ │ │ ├── IMatchmaking.h │ │ │ ├── INetworking.h │ │ │ ├── IStats.h │ │ │ ├── IUser.h │ │ │ └── IUtils.h │ │ ├── gog │ │ │ └── README.MD │ │ ├── x64 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ │ └── x86 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ ├── 1.75.0 │ │ ├── Factory.cxx │ │ ├── galaxy │ │ │ ├── Errors.h │ │ │ ├── GalaxyApi.h │ │ │ ├── GalaxyExport.h │ │ │ ├── GalaxyFactory.h │ │ │ ├── GalaxyID.h │ │ │ ├── IApps.h │ │ │ ├── IFriends.h │ │ │ ├── IGalaxy.h │ │ │ ├── IListenerRegistrar.h │ │ │ ├── ILogger.h │ │ │ ├── IMatchmaking.h │ │ │ ├── INetworking.h │ │ │ ├── IStats.h │ │ │ ├── IUser.h │ │ │ └── IUtils.h │ │ ├── gog │ │ │ └── README.MD │ │ ├── x64 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ │ └── x86 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ ├── 1.76.0 │ │ ├── Factory.cxx │ │ ├── galaxy │ │ │ ├── Errors.h │ │ │ ├── GalaxyApi.h │ │ │ ├── GalaxyExport.h │ │ │ ├── GalaxyFactory.h │ │ │ ├── GalaxyID.h │ │ │ ├── IApps.h │ │ │ ├── IFriends.h │ │ │ ├── IGalaxy.h │ │ │ ├── IListenerRegistrar.h │ │ │ ├── ILogger.h │ │ │ ├── IMatchmaking.h │ │ │ ├── INetworking.h │ │ │ ├── IStats.h │ │ │ ├── IUser.h │ │ │ └── IUtils.h │ │ ├── gog │ │ │ └── README.MD │ │ ├── x64 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ │ └── x86 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ ├── 1.77.0 │ │ ├── Factory.cxx │ │ ├── galaxy │ │ │ ├── Errors.h │ │ │ ├── GalaxyApi.h │ │ │ ├── GalaxyExport.h │ │ │ ├── GalaxyFactory.h │ │ │ ├── GalaxyID.h │ │ │ ├── IApps.h │ │ │ ├── IFriends.h │ │ │ ├── IGalaxy.h │ │ │ ├── IListenerRegistrar.h │ │ │ ├── ILogger.h │ │ │ ├── IMatchmaking.h │ │ │ ├── INetworking.h │ │ │ ├── IStats.h │ │ │ ├── IUser.h │ │ │ └── IUtils.h │ │ ├── gog │ │ │ └── README.MD │ │ ├── x64 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ │ └── x86 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ ├── 1.80.0 │ │ ├── Factory.cxx │ │ ├── compat_list.txt │ │ ├── galaxy │ │ │ ├── Errors.h │ │ │ ├── GalaxyApi.h │ │ │ ├── GalaxyExport.h │ │ │ ├── GalaxyFactory.h │ │ │ ├── GalaxyID.h │ │ │ ├── IApps.h │ │ │ ├── IFriends.h │ │ │ ├── IGalaxy.h │ │ │ ├── IListenerRegistrar.h │ │ │ ├── ILogger.h │ │ │ ├── IMatchmaking.h │ │ │ ├── INetworking.h │ │ │ ├── IStats.h │ │ │ ├── IUser.h │ │ │ └── IUtils.h │ │ ├── gog │ │ │ └── README.MD │ │ ├── x64 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ │ └── x86 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ ├── 1.87.0 │ │ ├── Factory.cxx │ │ ├── compat_list.txt │ │ ├── galaxy │ │ │ ├── Errors.h │ │ │ ├── GalaxyApi.h │ │ │ ├── GalaxyExport.h │ │ │ ├── GalaxyFactory.h │ │ │ ├── GalaxyID.h │ │ │ ├── IApps.h │ │ │ ├── IFriends.h │ │ │ ├── IGalaxy.h │ │ │ ├── IListenerRegistrar.h │ │ │ ├── ILogger.h │ │ │ ├── IMatchmaking.h │ │ │ ├── INetworking.h │ │ │ ├── IStats.h │ │ │ ├── IUser.h │ │ │ └── IUtils.h │ │ ├── gog │ │ │ └── README.MD │ │ ├── x64 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ │ └── x86 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ ├── 1.92.0 │ │ ├── Factory.cxx │ │ ├── compat_list.txt │ │ ├── galaxy │ │ │ ├── Errors.h │ │ │ ├── GalaxyApi.h │ │ │ ├── GalaxyExport.h │ │ │ ├── GalaxyFactory.h │ │ │ ├── GalaxyID.h │ │ │ ├── IApps.h │ │ │ ├── IFriends.h │ │ │ ├── IGalaxy.h │ │ │ ├── IListenerRegistrar.h │ │ │ ├── ILogger.h │ │ │ ├── IMatchmaking.h │ │ │ ├── INetworking.h │ │ │ ├── IStats.h │ │ │ ├── IStorage.h │ │ │ ├── IUser.h │ │ │ └── IUtils.h │ │ ├── gog │ │ │ └── README.MD │ │ ├── x64 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ │ └── x86 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ ├── 1.95.0 │ │ ├── Factory.cxx │ │ ├── compat_list.txt │ │ ├── galaxy │ │ │ ├── Errors.h │ │ │ ├── GalaxyApi.h │ │ │ ├── GalaxyExport.h │ │ │ ├── GalaxyFactory.h │ │ │ ├── GalaxyID.h │ │ │ ├── IApps.h │ │ │ ├── IFriends.h │ │ │ ├── IGalaxy.h │ │ │ ├── IListenerRegistrar.h │ │ │ ├── ILogger.h │ │ │ ├── IMatchmaking.h │ │ │ ├── INetworking.h │ │ │ ├── IStats.h │ │ │ ├── IStorage.h │ │ │ ├── IUser.h │ │ │ └── IUtils.h │ │ ├── gog │ │ │ └── README.MD │ │ ├── x64 │ │ │ ├── CMakeLists.txt │ │ │ ├── UniverseLAN.def │ │ │ └── interceptor_versioninfo.rc │ │ └── x86 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ ├── 1.99.0 │ │ ├── Factory.cxx │ │ ├── galaxy │ │ │ ├── Errors.h │ │ │ ├── GalaxyApi.h │ │ │ ├── GalaxyExport.h │ │ │ ├── GalaxyFactory.h │ │ │ ├── GalaxyID.h │ │ │ ├── IApps.h │ │ │ ├── ICustomNetworking.h │ │ │ ├── IFriends.h │ │ │ ├── IGalaxy.h │ │ │ ├── IListenerRegistrar.h │ │ │ ├── ILogger.h │ │ │ ├── IMatchmaking.h │ │ │ ├── INetworking.h │ │ │ ├── IStats.h │ │ │ ├── IStorage.h │ │ │ ├── IUser.h │ │ │ └── IUtils.h │ │ ├── gog │ │ │ └── README.MD │ │ ├── x64 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ │ └── x86 │ │ │ ├── CMakeLists.txt │ │ │ └── UniverseLAN.def │ ├── CMakeLists.txt │ ├── determine_galaxy_version_feature_definitions.cmake │ └── versioninfo.rc.cmake.in ├── InterceptionLogger │ ├── CMakeLists.txt │ ├── GalaxyApi.cxx │ ├── GalaxyApiFactory.cxx │ ├── GalaxyDLL.cxx │ ├── GalaxyDLL.hxx │ ├── GalaxyFunctional.hxx │ ├── GalaxyGameServerApi.cxx │ ├── IGalaxyFix.cxx │ ├── Impl │ │ ├── Apps.cxx │ │ ├── Apps.hxx │ │ ├── Chat.cxx │ │ ├── Chat.hxx │ │ ├── CloudStorage.cxx │ │ ├── CloudStorage.hxx │ │ ├── CustomNetworking.cxx │ │ ├── CustomNetworking.hxx │ │ ├── Errors.cxx │ │ ├── Errors.hxx │ │ ├── Friends.cxx │ │ ├── Friends.hxx │ │ ├── InitOptionsFactory.hxx │ │ ├── InitOptionsModern.cxx │ │ ├── InitOptionsModern.hxx │ │ ├── ListenerRegistrar.cxx │ │ ├── ListenerRegistrar.hxx │ │ ├── Listeners │ │ │ ├── AppsListener.cxx │ │ │ ├── AppsListener.hxx │ │ │ ├── ChatListener.cxx │ │ │ ├── ChatListener.hxx │ │ │ ├── CloudStorageListener.cxx │ │ │ ├── CloudStorageListener.hxx │ │ │ ├── CustomNetworkingListener.cxx │ │ │ ├── CustomNetworkingListener.hxx │ │ │ ├── FriendsListener.cxx │ │ │ ├── FriendsListener.hxx │ │ │ ├── MatchmakingListener.cxx │ │ │ ├── MatchmakingListener.hxx │ │ │ ├── NetworkingListener.cxx │ │ │ ├── NetworkingListener.hxx │ │ │ ├── ProxifySingleShotListener.cxx │ │ │ ├── ProxifySingleShotListener.hxx │ │ │ ├── StatsListener.cxx │ │ │ ├── StatsListener.hxx │ │ │ ├── StorageListener.cxx │ │ │ ├── StorageListener.hxx │ │ │ ├── TelemetryListener.cxx │ │ │ ├── TelemetryListener.hxx │ │ │ ├── UserListener.cxx │ │ │ ├── UserListener.hxx │ │ │ ├── UtilsListener.cxx │ │ │ └── UtilsListener.hxx │ │ ├── Logger.cxx │ │ ├── Logger.hxx │ │ ├── Matchmaking.cxx │ │ ├── Matchmaking.hxx │ │ ├── Networking.cxx │ │ ├── Networking.hxx │ │ ├── Stats.cxx │ │ ├── Stats.hxx │ │ ├── Storage.cxx │ │ ├── Storage.hxx │ │ ├── Telemetry.cxx │ │ ├── Telemetry.hxx │ │ ├── User.cxx │ │ ├── User.hxx │ │ ├── Utils.cxx │ │ └── Utils.hxx │ ├── ListenersContainer.cxx │ ├── ListenersContainer.hxx │ ├── README.MD │ ├── UniverseGameServer.cxx │ ├── UniverseGameServer.hxx │ ├── UniverseLANInterceptor.cxx │ └── UniverseLANInterceptor.hxx ├── Server │ ├── CMakeLists.txt │ ├── Challenge.cxx │ ├── Challenge.hxx │ ├── GalaxyApiFactory.cxx │ ├── Main.cxx │ ├── Peer.cxx │ ├── Peer.hxx │ ├── Server.cxx │ ├── Server.hxx │ └── ServerHandlers.cxx ├── Shared │ ├── AchievementData.cxx │ ├── AchievementData.hxx │ ├── AchievementsAndStatsContainer.cxx │ ├── AchievementsAndStatsContainer.hxx │ ├── CMakeLists.txt │ ├── CerealRawPtrWrapper.hxx │ ├── ChatMessage.cxx │ ├── ChatMessage.hxx │ ├── ChatRoom.cxx │ ├── ChatRoom.hxx │ ├── ChatRoomManager.cxx │ ├── ChatRoomManager.hxx │ ├── ConcurrentQueue.hxx │ ├── ConsoleCoutRedirector.cxx │ ├── ConsoleCoutRedirector.hxx │ ├── ConstHash.hxx │ ├── ContainerGetByIndex.hxx │ ├── CustomConsole.cxx │ ├── CustomConsole.hxx │ ├── DynamicReturn.hxx │ ├── EnvUtils.cxx │ ├── EnvUtils.hxx │ ├── GalaxyID.hxx │ ├── GalaxyIDSerialization.hxx │ ├── GalaxyUserData.cxx │ ├── GalaxyUserData.hxx │ ├── GalaxyVersionedTypes.hxx │ ├── GlobalUniqueID.cxx │ ├── GlobalUniqueID.hxx │ ├── IniData.cxx │ ├── IniData.hxx │ ├── Lobby.cxx │ ├── Lobby.hxx │ ├── LobbyManager.cxx │ ├── LobbyManager.hxx │ ├── MachineInfo.cxx │ ├── MachineInfo.hxx │ ├── Networking │ │ ├── MessageHandlersDeclareOverride.hxx │ │ ├── MessageHandlersDeclarePureVirtual.hxx │ │ ├── MessageUniqueID.cxx │ │ ├── MessageUniqueID.hxx │ │ ├── Messages.hxx │ │ ├── Messages │ │ │ ├── ConnectionAcceptedMessage.hxx │ │ │ ├── CreateLobbyMessage.hxx │ │ │ ├── CreateLobbyResponseMessage.hxx │ │ │ ├── EventConnect.hxx │ │ │ ├── EventDisconnect.hxx │ │ │ ├── FileRequestMessage.hxx │ │ │ ├── FileShareMessage.hxx │ │ │ ├── FileShareResponseMessage.hxx │ │ │ ├── InvitationMessage.hxx │ │ │ ├── JoinLobbyMessage.hxx │ │ │ ├── KeyChallengeMessage.hxx │ │ │ ├── LeaveLobbyMessage.hxx │ │ │ ├── LobbyMemberStateChangeMessage.hxx │ │ │ ├── LobbyOwnerChangeMessage.hxx │ │ │ ├── OnlineStatusChangeMessage.hxx │ │ │ ├── P2PNetworkPacketMessage.hxx │ │ │ ├── P2PServerNetworkPacketMessage.hxx │ │ │ ├── RequestChatRoomMessagesMessage.hxx │ │ │ ├── RequestChatRoomWithUserMessage.hxx │ │ │ ├── RequestLobbyDataMessage.hxx │ │ │ ├── RequestLobbyListMessage.hxx │ │ │ ├── RequestSpecificUserDataMessage.hxx │ │ │ ├── RichPresenceChangeMessage.hxx │ │ │ ├── SendToChatRoomMessage.hxx │ │ │ ├── SendToLobbyMessage.hxx │ │ │ ├── SetLobbyDataMessage.hxx │ │ │ ├── SetLobbyJoinableMessage.hxx │ │ │ ├── SetLobbyMaxMembersMessage.hxx │ │ │ ├── SetLobbyMemberDataMessage.hxx │ │ │ ├── SetLobbyTypeMessage.hxx │ │ │ ├── SetUserDataMessage.hxx │ │ │ └── UserHelloDataMessage.hxx │ │ ├── Networking.cxx │ │ ├── Networking.hxx │ │ └── SendableEventMessage.hxx │ ├── SafeStringCopy.hxx │ ├── SharedFileUtils.cxx │ ├── SharedFileUtils.hxx │ ├── SharedLibUtils.cxx │ ├── SharedLibUtils.hxx │ └── filesystem_container │ │ ├── filesystem_container.cxx │ │ ├── filesystem_container.hxx │ │ ├── filesystem_container_entry.cxx │ │ ├── filesystem_container_entry.hxx │ │ ├── filesystem_container_metadata.cxx │ │ ├── filesystem_container_metadata.hxx │ │ ├── filesystem_container_utils.cxx │ │ └── filesystem_container_utils.hxx ├── TestCases │ ├── .gitignore │ ├── CMakeLists.txt │ ├── Include │ │ ├── TestCaseAccessTokenListener.hxx │ │ ├── TestCaseAchievementChangeListener.hxx │ │ ├── TestCaseAuthListener.hxx │ │ ├── TestCaseChatRoomMessageSendListener.hxx │ │ ├── TestCaseChatRoomMessagesListener.hxx │ │ ├── TestCaseChatRoomMessagesRetrieveListener.hxx │ │ ├── TestCaseChatRoomWithUserRetrieveListener.hxx │ │ ├── TestCaseClientDetails.hxx │ │ ├── TestCaseConcurrentQueue.hxx │ │ ├── TestCaseConnectionCloseListener.hxx │ │ ├── TestCaseConnectionDataListener.hxx │ │ ├── TestCaseConnectionOpenListener.hxx │ │ ├── TestCaseDelayRunner.hxx │ │ ├── TestCaseEncryptedAppTicketListener.hxx │ │ ├── TestCaseFileShareListener.hxx │ │ ├── TestCaseFriendAddListener.hxx │ │ ├── TestCaseFriendDeleteListener.hxx │ │ ├── TestCaseFriendInvitationListRetrieveListener.hxx │ │ ├── TestCaseFriendInvitationListener.hxx │ │ ├── TestCaseFriendInvitationRespondToListener.hxx │ │ ├── TestCaseFriendInvitationSendListener.hxx │ │ ├── TestCaseFriendListListener.hxx │ │ ├── TestCaseGameInvitationReceivedListener.hxx │ │ ├── TestCaseGameJoinRequestedListener.hxx │ │ ├── TestCaseGogServicesConnectionStateListener.hxx │ │ ├── TestCaseInitListener.hxx │ │ ├── TestCaseLeaderboardEntriesRetrieveListener.hxx │ │ ├── TestCaseLeaderboardRetrieveListener.hxx │ │ ├── TestCaseLeaderboardScoreUpdateListener.hxx │ │ ├── TestCaseLeaderboardsRetrieveListener.hxx │ │ ├── TestCaseLobbyCreatedListener.hxx │ │ ├── TestCaseLobbyDataListener.hxx │ │ ├── TestCaseLobbyDataRetrieveListener.hxx │ │ ├── TestCaseLobbyEnteredListener.hxx │ │ ├── TestCaseLobbyLeftListener.hxx │ │ ├── TestCaseLobbyListListener.hxx │ │ ├── TestCaseLobbyMemberStateListener.hxx │ │ ├── TestCaseLobbyMessageListener.hxx │ │ ├── TestCaseLobbyOwnerChangeListener.hxx │ │ ├── TestCaseNatTypeDetectionListener.hxx │ │ ├── TestCaseNetworkingListener.hxx │ │ ├── TestCaseNotificationListener.hxx │ │ ├── TestCaseOperationalStateChangeListener.hxx │ │ ├── TestCaseOtherSessionStartListener.hxx │ │ ├── TestCaseOverlayInitializationStateChangeListener.hxx │ │ ├── TestCaseOverlayStateChangeListener.hxx │ │ ├── TestCaseOverlayVisibilityChangeListener.hxx │ │ ├── TestCasePersonaDataChangedListener.hxx │ │ ├── TestCaseRichPresenceChangeListener.hxx │ │ ├── TestCaseRichPresenceListener.hxx │ │ ├── TestCaseRichPresenceRetrieveListener.hxx │ │ ├── TestCaseSendInvitationListener.hxx │ │ ├── TestCaseSentFriendInvitationListRetrieveListener.hxx │ │ ├── TestCaseServerNetworkingListener.hxx │ │ ├── TestCaseSharedFileDownloadListener.hxx │ │ ├── TestCaseSpecificUserDataListener.hxx │ │ ├── TestCaseStatsAndAchievementsStoreListener.hxx │ │ ├── TestCaseTelemetryEventSendListener.hxx │ │ ├── TestCaseUserDataListener.hxx │ │ ├── TestCaseUserFindListener.hxx │ │ ├── TestCaseUserInformationRetrieveListener.hxx │ │ ├── TestCaseUserStatsAndAchievementsRetrieveListener.hxx │ │ └── TestCaseUserTimePlayedRetrieveListener.hxx │ ├── Listeners-2023-09-18.txt │ ├── README.MD │ ├── Source-unet │ │ ├── TestCase_unet_cli_a.cxx │ │ ├── TestCase_unet_cli_b.cxx │ │ ├── s2string.h │ │ └── termcolor.hpp │ ├── Source │ │ ├── TestCase_CreateLobby.cxx │ │ ├── TestCase_CreateLobbyWithData.cxx │ │ ├── TestCase_CreateLobbyWithMessages.cxx │ │ ├── TestCase_ExtendedClient.cxx │ │ ├── TestCase_ExtendedHost.cxx │ │ ├── TestCase_IStorageLocal.cxx │ │ ├── TestCase_IUserFunctions.cxx │ │ ├── TestCase_JoinLobby.cxx │ │ ├── TestCase_JoinLobbyShowData.cxx │ │ ├── TestCase_JoinLobbyShowMessages.cxx │ │ ├── TestCase_ListLobbiesAndLobbyData.cxx │ │ ├── TestCase_SignInGalaxy.cxx │ │ └── TestCase_SignInUsernameAndPassword.cxx │ ├── batch │ │ ├── test_gog_user1.bat.in │ │ └── test_gog_user2.bat.in │ └── credentials.cmake.example ├── Tracer │ ├── CMakeLists.txt │ ├── MiniDump.cxx │ ├── MiniDump.hxx │ ├── Stacker.cxx │ ├── Stacker.hxx │ ├── Tracer.cxx │ └── Tracer.hxx ├── Vendor │ ├── CMakeLists.txt │ ├── Detours │ │ ├── .editorconfig │ │ ├── .github │ │ │ ├── ISSUE_TEMPLATE │ │ │ │ ├── bug-report.md │ │ │ │ └── question.md │ │ │ ├── PULL_REQUEST_TEMPLATE │ │ │ │ └── pull_request_template.md │ │ │ ├── codeql │ │ │ │ └── codeql-config.yml │ │ │ ├── dependabot.yml │ │ │ ├── fabricbot.json │ │ │ └── workflows │ │ │ │ └── main.yml │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── CREDITS.md │ │ ├── LICENSE.md │ │ ├── Makefile │ │ ├── README.md │ │ ├── samples │ │ │ ├── Makefile │ │ │ ├── README.TXT │ │ │ ├── comeasy │ │ │ │ ├── Makefile │ │ │ │ ├── comeasy.cpp │ │ │ │ ├── wrotei.cpp │ │ │ │ └── wrotei.rc │ │ │ ├── commem │ │ │ │ ├── Makefile │ │ │ │ └── commem.cpp │ │ │ ├── common.mak │ │ │ ├── cping │ │ │ │ ├── Makefile │ │ │ │ ├── ReadMe.Txt │ │ │ │ ├── cping.cpp │ │ │ │ ├── cping.dat │ │ │ │ └── iping.idl │ │ │ ├── disas │ │ │ │ ├── Makefile │ │ │ │ ├── arm.asm │ │ │ │ ├── disas.cpp │ │ │ │ ├── ia64.asm │ │ │ │ ├── unk.cpp │ │ │ │ ├── x64.asm │ │ │ │ └── x86.cpp │ │ │ ├── dtest │ │ │ │ ├── Makefile │ │ │ │ ├── NORMAL_IA64.TXT │ │ │ │ ├── NORMAL_X64.TXT │ │ │ │ ├── NORMAL_X86.TXT │ │ │ │ ├── dtarge.cpp │ │ │ │ ├── dtarge.h │ │ │ │ ├── dtarge.rc │ │ │ │ └── dtest.cpp │ │ │ ├── dumpe │ │ │ │ ├── Makefile │ │ │ │ └── dumpe.cpp │ │ │ ├── dumpi │ │ │ │ ├── Makefile │ │ │ │ └── dumpi.cpp │ │ │ ├── dynamic_alloc │ │ │ │ ├── Makefile │ │ │ │ ├── main.cpp │ │ │ │ ├── x64.asm │ │ │ │ └── x86.asm │ │ │ ├── echo │ │ │ │ ├── Makefile │ │ │ │ ├── echofx.cpp │ │ │ │ ├── echofx.rc │ │ │ │ ├── echonul.cpp │ │ │ │ └── main.cpp │ │ │ ├── einst │ │ │ │ ├── Makefile │ │ │ │ ├── edll1x.cpp │ │ │ │ ├── edll2x.cpp │ │ │ │ ├── edll3x.cpp │ │ │ │ └── einst.cpp │ │ │ ├── excep │ │ │ │ ├── Makefile │ │ │ │ ├── excep.cpp │ │ │ │ ├── firstexc.cpp │ │ │ │ └── firstexc.h │ │ │ ├── findfunc │ │ │ │ ├── Makefile │ │ │ │ ├── extend.cpp │ │ │ │ ├── extend.rc │ │ │ │ ├── findfunc.cpp │ │ │ │ ├── symtest.cpp │ │ │ │ ├── target.cpp │ │ │ │ ├── target.h │ │ │ │ └── target.rc │ │ │ ├── impmunge │ │ │ │ ├── Makefile │ │ │ │ └── impmunge.cpp │ │ │ ├── member │ │ │ │ ├── Makefile │ │ │ │ └── member.cpp │ │ │ ├── opengl │ │ │ │ ├── Makefile │ │ │ │ ├── ogldet.cpp │ │ │ │ ├── ogldet.rc │ │ │ │ └── testogl.cpp │ │ │ ├── payload │ │ │ │ ├── Makefile │ │ │ │ ├── payload.cpp │ │ │ │ ├── payloadguid.hpp │ │ │ │ └── payloadtarget.cpp │ │ │ ├── region │ │ │ │ ├── Makefile │ │ │ │ └── region.cpp │ │ │ ├── setdll │ │ │ │ ├── Makefile │ │ │ │ └── setdll.cpp │ │ │ ├── simple │ │ │ │ ├── Makefile │ │ │ │ ├── simple.cpp │ │ │ │ ├── simple.rc │ │ │ │ └── sleep5.cpp │ │ │ ├── simple_safe │ │ │ │ ├── Makefile │ │ │ │ ├── simple_safe.cpp │ │ │ │ ├── simple_safe.rc │ │ │ │ └── sleep5.cpp │ │ │ ├── slept │ │ │ │ ├── Makefile │ │ │ │ ├── NORMAL_IA64.TXT │ │ │ │ ├── NORMAL_X64.TXT │ │ │ │ ├── NORMAL_X86.TXT │ │ │ │ ├── dslept.cpp │ │ │ │ ├── dslept.rc │ │ │ │ ├── sleepbed.cpp │ │ │ │ ├── sleepnew.cpp │ │ │ │ ├── sleepold.cpp │ │ │ │ ├── slept.cpp │ │ │ │ ├── slept.h │ │ │ │ ├── slept.rc │ │ │ │ └── verify.cpp │ │ │ ├── syelog │ │ │ │ ├── Makefile │ │ │ │ ├── sltest.cpp │ │ │ │ ├── sltestp.cpp │ │ │ │ ├── syelog.cpp │ │ │ │ ├── syelog.h │ │ │ │ └── syelogd.cpp │ │ │ ├── talloc │ │ │ │ ├── Makefile │ │ │ │ ├── NORMAL_IA64.TXT │ │ │ │ ├── NORMAL_X64.TXT │ │ │ │ ├── talloc.cpp │ │ │ │ ├── tdll1x.cpp │ │ │ │ ├── tdll2x.cpp │ │ │ │ ├── tdll3x.cpp │ │ │ │ ├── tdll4x.cpp │ │ │ │ ├── tdll5x.cpp │ │ │ │ ├── tdll6x.cpp │ │ │ │ ├── tdll7x.cpp │ │ │ │ ├── tdll8x.cpp │ │ │ │ └── tdll9x.cpp │ │ │ ├── traceapi │ │ │ │ ├── Makefile │ │ │ │ ├── _win32.cpp │ │ │ │ ├── testapi.cpp │ │ │ │ ├── trcapi.cpp │ │ │ │ └── trcapi.rc │ │ │ ├── tracebld │ │ │ │ ├── Makefile │ │ │ │ ├── tracebld.cpp │ │ │ │ ├── tracebld.h │ │ │ │ ├── trcbld.cpp │ │ │ │ └── trcbld.rc │ │ │ ├── tracelnk │ │ │ │ ├── Makefile │ │ │ │ ├── trclnk.cpp │ │ │ │ └── trclnk.rc │ │ │ ├── tracemem │ │ │ │ ├── Makefile │ │ │ │ ├── trcmem.cpp │ │ │ │ └── trcmem.rc │ │ │ ├── tracereg │ │ │ │ ├── Makefile │ │ │ │ ├── trcreg.cpp │ │ │ │ └── trcreg.rc │ │ │ ├── traceser │ │ │ │ ├── Makefile │ │ │ │ ├── trcser.cpp │ │ │ │ └── trcser.rc │ │ │ ├── tracessl │ │ │ │ ├── Makefile │ │ │ │ ├── trcssl.cpp │ │ │ │ └── trcssl.rc │ │ │ ├── tracetcp │ │ │ │ ├── Makefile │ │ │ │ ├── trctcp.cpp │ │ │ │ └── trctcp.rc │ │ │ ├── tryman │ │ │ │ ├── Makefile │ │ │ │ ├── managed.cs │ │ │ │ ├── size.cpp │ │ │ │ ├── tryman.cpp │ │ │ │ ├── tstman.cpp │ │ │ │ └── tstman.rc │ │ │ └── withdll │ │ │ │ ├── Makefile │ │ │ │ └── withdll.cpp │ │ ├── src │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ ├── creatwth.cpp │ │ │ ├── detours.cpp │ │ │ ├── detours.h │ │ │ ├── detver.h │ │ │ ├── disasm.hpp │ │ │ ├── image.cpp │ │ │ ├── modules.cpp │ │ │ └── uimports.cpp │ │ ├── system.mak │ │ ├── tests │ │ │ ├── Makefile │ │ │ ├── catch.hpp │ │ │ ├── corruptor.cpp │ │ │ ├── corruptor.h │ │ │ ├── main.cpp │ │ │ ├── payload.cpp │ │ │ ├── payload.h │ │ │ ├── process_helpers.cpp │ │ │ ├── process_helpers.h │ │ │ ├── test_image_api.cpp │ │ │ └── test_module_api.cpp │ │ └── vc │ │ │ ├── Detours.sln │ │ │ ├── Detours.vcxproj │ │ │ └── Detours.vcxproj.filters │ ├── Enet │ │ ├── CMakeLists.txt │ │ ├── LICENSE │ │ └── Source │ │ │ ├── callbacks.c │ │ │ ├── compress.c │ │ │ ├── enetpp.cxx │ │ │ ├── host.c │ │ │ ├── include │ │ │ └── enet │ │ │ │ ├── callbacks.h │ │ │ │ ├── enet.h │ │ │ │ ├── enetpp.hxx │ │ │ │ ├── list.h │ │ │ │ ├── protocol.h │ │ │ │ ├── time.h │ │ │ │ ├── types.h │ │ │ │ ├── unix.h │ │ │ │ ├── utility.h │ │ │ │ └── win32.h │ │ │ ├── list.c │ │ │ ├── packet.c │ │ │ ├── peer.c │ │ │ ├── protocol.c │ │ │ ├── unix.c │ │ │ └── win32.c │ ├── StackWalker │ │ ├── .clang-format │ │ ├── CMakeLists.txt │ │ ├── CODE_OF_CONDUCT.md │ │ ├── LICENSE │ │ ├── Main │ │ │ └── StackWalker │ │ │ │ ├── .gitignore │ │ │ │ ├── StackWalker.cpp │ │ │ │ ├── StackWalker.h │ │ │ │ ├── StackWalker_VC2010.sln │ │ │ │ ├── StackWalker_VC2010.vcxproj │ │ │ │ ├── StackWalker_VC2010.vcxproj.filters │ │ │ │ ├── StackWalker_VC2010.vcxproj.vspscc │ │ │ │ ├── StackWalker_VC2015.sln │ │ │ │ ├── StackWalker_VC2015.vcxproj │ │ │ │ ├── StackWalker_VC2015.vcxproj.filters │ │ │ │ ├── StackWalker_VC2015.vcxproj.vspscc │ │ │ │ ├── StackWalker_VC2017.sln │ │ │ │ ├── StackWalker_VC2017.vcxproj │ │ │ │ ├── StackWalker_VC2017.vcxproj.filters │ │ │ │ ├── StackWalker_VC2017.vcxproj.vspscc │ │ │ │ ├── StackWalker_VC2022.sln │ │ │ │ ├── StackWalker_VC2022.vcxproj │ │ │ │ ├── StackWalker_VC2022.vcxproj.filters │ │ │ │ ├── StackWalker_VC2022.vcxproj.vspscc │ │ │ │ ├── StackWalker_VC5.dsp │ │ │ │ ├── StackWalker_VC5.dsw │ │ │ │ ├── StackWalker_VC6.dsp │ │ │ │ ├── StackWalker_VC6.dsw │ │ │ │ ├── StackWalker_VC70.sln │ │ │ │ ├── StackWalker_VC70.vcproj │ │ │ │ ├── StackWalker_VC71.sln │ │ │ │ ├── StackWalker_VC71.vcproj │ │ │ │ ├── StackWalker_VC8.sln │ │ │ │ ├── StackWalker_VC8.vcproj │ │ │ │ ├── StackWalker_VC9.sln │ │ │ │ ├── StackWalker_VC9.vcproj │ │ │ │ ├── StackWalker_VC9.vcproj.vspscc │ │ │ │ ├── StackWalker_VC9.vssscc │ │ │ │ ├── main.cpp │ │ │ │ └── makefile │ │ ├── README.md │ │ └── appveyor.yml │ ├── boost │ │ ├── CMakeLists.txt │ │ ├── Jamroot │ │ ├── boost │ │ │ ├── align │ │ │ │ ├── align.hpp │ │ │ │ ├── aligned_alloc.hpp │ │ │ │ ├── alignment_of.hpp │ │ │ │ ├── alignment_of_forward.hpp │ │ │ │ └── detail │ │ │ │ │ ├── align.hpp │ │ │ │ │ ├── align_cxx11.hpp │ │ │ │ │ ├── aligned_alloc.hpp │ │ │ │ │ ├── aligned_alloc_android.hpp │ │ │ │ │ ├── aligned_alloc_macos.hpp │ │ │ │ │ ├── aligned_alloc_mingw.hpp │ │ │ │ │ ├── aligned_alloc_msvc.hpp │ │ │ │ │ ├── aligned_alloc_new.hpp │ │ │ │ │ ├── aligned_alloc_posix.hpp │ │ │ │ │ ├── aligned_alloc_sunos.hpp │ │ │ │ │ ├── alignment_of.hpp │ │ │ │ │ ├── alignment_of_clang.hpp │ │ │ │ │ ├── alignment_of_codegear.hpp │ │ │ │ │ ├── alignment_of_cxx11.hpp │ │ │ │ │ ├── alignment_of_gcc.hpp │ │ │ │ │ ├── alignment_of_msvc.hpp │ │ │ │ │ ├── element_type.hpp │ │ │ │ │ ├── integral_constant.hpp │ │ │ │ │ ├── is_alignment.hpp │ │ │ │ │ └── min_size.hpp │ │ │ ├── aligned_storage.hpp │ │ │ ├── array.hpp │ │ │ ├── asio.hpp │ │ │ ├── asio │ │ │ │ ├── any_io_executor.hpp │ │ │ │ ├── append.hpp │ │ │ │ ├── as_tuple.hpp │ │ │ │ ├── associated_allocator.hpp │ │ │ │ ├── associated_cancellation_slot.hpp │ │ │ │ ├── associated_executor.hpp │ │ │ │ ├── associator.hpp │ │ │ │ ├── async_result.hpp │ │ │ │ ├── awaitable.hpp │ │ │ │ ├── basic_datagram_socket.hpp │ │ │ │ ├── basic_deadline_timer.hpp │ │ │ │ ├── basic_file.hpp │ │ │ │ ├── basic_io_object.hpp │ │ │ │ ├── basic_random_access_file.hpp │ │ │ │ ├── basic_raw_socket.hpp │ │ │ │ ├── basic_readable_pipe.hpp │ │ │ │ ├── basic_seq_packet_socket.hpp │ │ │ │ ├── basic_serial_port.hpp │ │ │ │ ├── basic_signal_set.hpp │ │ │ │ ├── basic_socket.hpp │ │ │ │ ├── basic_socket_acceptor.hpp │ │ │ │ ├── basic_socket_iostream.hpp │ │ │ │ ├── basic_socket_streambuf.hpp │ │ │ │ ├── basic_stream_file.hpp │ │ │ │ ├── basic_stream_socket.hpp │ │ │ │ ├── basic_streambuf.hpp │ │ │ │ ├── basic_streambuf_fwd.hpp │ │ │ │ ├── basic_waitable_timer.hpp │ │ │ │ ├── basic_writable_pipe.hpp │ │ │ │ ├── bind_allocator.hpp │ │ │ │ ├── bind_cancellation_slot.hpp │ │ │ │ ├── bind_executor.hpp │ │ │ │ ├── buffer.hpp │ │ │ │ ├── buffer_registration.hpp │ │ │ │ ├── buffered_read_stream.hpp │ │ │ │ ├── buffered_read_stream_fwd.hpp │ │ │ │ ├── buffered_stream.hpp │ │ │ │ ├── buffered_stream_fwd.hpp │ │ │ │ ├── buffered_write_stream.hpp │ │ │ │ ├── buffered_write_stream_fwd.hpp │ │ │ │ ├── buffers_iterator.hpp │ │ │ │ ├── cancellation_signal.hpp │ │ │ │ ├── cancellation_state.hpp │ │ │ │ ├── cancellation_type.hpp │ │ │ │ ├── co_spawn.hpp │ │ │ │ ├── completion_condition.hpp │ │ │ │ ├── compose.hpp │ │ │ │ ├── connect.hpp │ │ │ │ ├── connect_pipe.hpp │ │ │ │ ├── coroutine.hpp │ │ │ │ ├── deadline_timer.hpp │ │ │ │ ├── defer.hpp │ │ │ │ ├── deferred.hpp │ │ │ │ ├── detached.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── array.hpp │ │ │ │ │ ├── array_fwd.hpp │ │ │ │ │ ├── assert.hpp │ │ │ │ │ ├── atomic_count.hpp │ │ │ │ │ ├── base_from_cancellation_state.hpp │ │ │ │ │ ├── base_from_completion_cond.hpp │ │ │ │ │ ├── bind_handler.hpp │ │ │ │ │ ├── blocking_executor_op.hpp │ │ │ │ │ ├── buffer_resize_guard.hpp │ │ │ │ │ ├── buffer_sequence_adapter.hpp │ │ │ │ │ ├── buffered_stream_storage.hpp │ │ │ │ │ ├── bulk_executor_op.hpp │ │ │ │ │ ├── call_stack.hpp │ │ │ │ │ ├── chrono.hpp │ │ │ │ │ ├── chrono_time_traits.hpp │ │ │ │ │ ├── completion_handler.hpp │ │ │ │ │ ├── concurrency_hint.hpp │ │ │ │ │ ├── conditionally_enabled_event.hpp │ │ │ │ │ ├── conditionally_enabled_mutex.hpp │ │ │ │ │ ├── config.hpp │ │ │ │ │ ├── consuming_buffers.hpp │ │ │ │ │ ├── cstddef.hpp │ │ │ │ │ ├── cstdint.hpp │ │ │ │ │ ├── date_time_fwd.hpp │ │ │ │ │ ├── deadline_timer_service.hpp │ │ │ │ │ ├── dependent_type.hpp │ │ │ │ │ ├── descriptor_ops.hpp │ │ │ │ │ ├── descriptor_read_op.hpp │ │ │ │ │ ├── descriptor_write_op.hpp │ │ │ │ │ ├── dev_poll_reactor.hpp │ │ │ │ │ ├── epoll_reactor.hpp │ │ │ │ │ ├── event.hpp │ │ │ │ │ ├── eventfd_select_interrupter.hpp │ │ │ │ │ ├── executor_function.hpp │ │ │ │ │ ├── executor_op.hpp │ │ │ │ │ ├── fd_set_adapter.hpp │ │ │ │ │ ├── fenced_block.hpp │ │ │ │ │ ├── functional.hpp │ │ │ │ │ ├── future.hpp │ │ │ │ │ ├── gcc_arm_fenced_block.hpp │ │ │ │ │ ├── gcc_hppa_fenced_block.hpp │ │ │ │ │ ├── gcc_sync_fenced_block.hpp │ │ │ │ │ ├── gcc_x86_fenced_block.hpp │ │ │ │ │ ├── global.hpp │ │ │ │ │ ├── handler_alloc_helpers.hpp │ │ │ │ │ ├── handler_cont_helpers.hpp │ │ │ │ │ ├── handler_invoke_helpers.hpp │ │ │ │ │ ├── handler_tracking.hpp │ │ │ │ │ ├── handler_type_requirements.hpp │ │ │ │ │ ├── handler_work.hpp │ │ │ │ │ ├── hash_map.hpp │ │ │ │ │ ├── impl │ │ │ │ │ │ ├── buffer_sequence_adapter.ipp │ │ │ │ │ │ ├── descriptor_ops.ipp │ │ │ │ │ │ ├── dev_poll_reactor.hpp │ │ │ │ │ │ ├── dev_poll_reactor.ipp │ │ │ │ │ │ ├── epoll_reactor.hpp │ │ │ │ │ │ ├── epoll_reactor.ipp │ │ │ │ │ │ ├── eventfd_select_interrupter.ipp │ │ │ │ │ │ ├── handler_tracking.ipp │ │ │ │ │ │ ├── io_uring_descriptor_service.ipp │ │ │ │ │ │ ├── io_uring_file_service.ipp │ │ │ │ │ │ ├── io_uring_service.hpp │ │ │ │ │ │ ├── io_uring_service.ipp │ │ │ │ │ │ ├── io_uring_socket_service_base.ipp │ │ │ │ │ │ ├── kqueue_reactor.hpp │ │ │ │ │ │ ├── kqueue_reactor.ipp │ │ │ │ │ │ ├── null_event.ipp │ │ │ │ │ │ ├── pipe_select_interrupter.ipp │ │ │ │ │ │ ├── posix_event.ipp │ │ │ │ │ │ ├── posix_mutex.ipp │ │ │ │ │ │ ├── posix_serial_port_service.ipp │ │ │ │ │ │ ├── posix_thread.ipp │ │ │ │ │ │ ├── posix_tss_ptr.ipp │ │ │ │ │ │ ├── reactive_descriptor_service.ipp │ │ │ │ │ │ ├── reactive_socket_service_base.ipp │ │ │ │ │ │ ├── resolver_service_base.ipp │ │ │ │ │ │ ├── scheduler.ipp │ │ │ │ │ │ ├── select_reactor.hpp │ │ │ │ │ │ ├── select_reactor.ipp │ │ │ │ │ │ ├── service_registry.hpp │ │ │ │ │ │ ├── service_registry.ipp │ │ │ │ │ │ ├── signal_set_service.ipp │ │ │ │ │ │ ├── socket_ops.ipp │ │ │ │ │ │ ├── socket_select_interrupter.ipp │ │ │ │ │ │ ├── strand_executor_service.hpp │ │ │ │ │ │ ├── strand_executor_service.ipp │ │ │ │ │ │ ├── strand_service.hpp │ │ │ │ │ │ ├── strand_service.ipp │ │ │ │ │ │ ├── thread_context.ipp │ │ │ │ │ │ ├── throw_error.ipp │ │ │ │ │ │ ├── timer_queue_ptime.ipp │ │ │ │ │ │ ├── timer_queue_set.ipp │ │ │ │ │ │ ├── win_event.ipp │ │ │ │ │ │ ├── win_iocp_file_service.ipp │ │ │ │ │ │ ├── win_iocp_handle_service.ipp │ │ │ │ │ │ ├── win_iocp_io_context.hpp │ │ │ │ │ │ ├── win_iocp_io_context.ipp │ │ │ │ │ │ ├── win_iocp_serial_port_service.ipp │ │ │ │ │ │ ├── win_iocp_socket_service_base.ipp │ │ │ │ │ │ ├── win_mutex.ipp │ │ │ │ │ │ ├── win_object_handle_service.ipp │ │ │ │ │ │ ├── win_static_mutex.ipp │ │ │ │ │ │ ├── win_thread.ipp │ │ │ │ │ │ ├── win_tss_ptr.ipp │ │ │ │ │ │ ├── winrt_timer_scheduler.hpp │ │ │ │ │ │ ├── winrt_timer_scheduler.ipp │ │ │ │ │ │ └── winsock_init.ipp │ │ │ │ │ ├── io_control.hpp │ │ │ │ │ ├── io_object_impl.hpp │ │ │ │ │ ├── io_uring_descriptor_read_at_op.hpp │ │ │ │ │ ├── io_uring_descriptor_read_op.hpp │ │ │ │ │ ├── io_uring_descriptor_service.hpp │ │ │ │ │ ├── io_uring_descriptor_write_at_op.hpp │ │ │ │ │ ├── io_uring_descriptor_write_op.hpp │ │ │ │ │ ├── io_uring_file_service.hpp │ │ │ │ │ ├── io_uring_null_buffers_op.hpp │ │ │ │ │ ├── io_uring_operation.hpp │ │ │ │ │ ├── io_uring_service.hpp │ │ │ │ │ ├── io_uring_socket_accept_op.hpp │ │ │ │ │ ├── io_uring_socket_connect_op.hpp │ │ │ │ │ ├── io_uring_socket_recv_op.hpp │ │ │ │ │ ├── io_uring_socket_recvfrom_op.hpp │ │ │ │ │ ├── io_uring_socket_recvmsg_op.hpp │ │ │ │ │ ├── io_uring_socket_send_op.hpp │ │ │ │ │ ├── io_uring_socket_sendto_op.hpp │ │ │ │ │ ├── io_uring_socket_service.hpp │ │ │ │ │ ├── io_uring_socket_service_base.hpp │ │ │ │ │ ├── io_uring_wait_op.hpp │ │ │ │ │ ├── is_buffer_sequence.hpp │ │ │ │ │ ├── is_executor.hpp │ │ │ │ │ ├── keyword_tss_ptr.hpp │ │ │ │ │ ├── kqueue_reactor.hpp │ │ │ │ │ ├── limits.hpp │ │ │ │ │ ├── macos_fenced_block.hpp │ │ │ │ │ ├── memory.hpp │ │ │ │ │ ├── mutex.hpp │ │ │ │ │ ├── non_const_lvalue.hpp │ │ │ │ │ ├── noncopyable.hpp │ │ │ │ │ ├── null_event.hpp │ │ │ │ │ ├── null_fenced_block.hpp │ │ │ │ │ ├── null_global.hpp │ │ │ │ │ ├── null_mutex.hpp │ │ │ │ │ ├── null_reactor.hpp │ │ │ │ │ ├── null_signal_blocker.hpp │ │ │ │ │ ├── null_socket_service.hpp │ │ │ │ │ ├── null_static_mutex.hpp │ │ │ │ │ ├── null_thread.hpp │ │ │ │ │ ├── null_tss_ptr.hpp │ │ │ │ │ ├── object_pool.hpp │ │ │ │ │ ├── old_win_sdk_compat.hpp │ │ │ │ │ ├── op_queue.hpp │ │ │ │ │ ├── operation.hpp │ │ │ │ │ ├── pipe_select_interrupter.hpp │ │ │ │ │ ├── pop_options.hpp │ │ │ │ │ ├── posix_event.hpp │ │ │ │ │ ├── posix_fd_set_adapter.hpp │ │ │ │ │ ├── posix_global.hpp │ │ │ │ │ ├── posix_mutex.hpp │ │ │ │ │ ├── posix_serial_port_service.hpp │ │ │ │ │ ├── posix_signal_blocker.hpp │ │ │ │ │ ├── posix_static_mutex.hpp │ │ │ │ │ ├── posix_thread.hpp │ │ │ │ │ ├── posix_tss_ptr.hpp │ │ │ │ │ ├── push_options.hpp │ │ │ │ │ ├── reactive_descriptor_service.hpp │ │ │ │ │ ├── reactive_null_buffers_op.hpp │ │ │ │ │ ├── reactive_socket_accept_op.hpp │ │ │ │ │ ├── reactive_socket_connect_op.hpp │ │ │ │ │ ├── reactive_socket_recv_op.hpp │ │ │ │ │ ├── reactive_socket_recvfrom_op.hpp │ │ │ │ │ ├── reactive_socket_recvmsg_op.hpp │ │ │ │ │ ├── reactive_socket_send_op.hpp │ │ │ │ │ ├── reactive_socket_sendto_op.hpp │ │ │ │ │ ├── reactive_socket_service.hpp │ │ │ │ │ ├── reactive_socket_service_base.hpp │ │ │ │ │ ├── reactive_wait_op.hpp │ │ │ │ │ ├── reactor.hpp │ │ │ │ │ ├── reactor_op.hpp │ │ │ │ │ ├── reactor_op_queue.hpp │ │ │ │ │ ├── recycling_allocator.hpp │ │ │ │ │ ├── regex_fwd.hpp │ │ │ │ │ ├── resolve_endpoint_op.hpp │ │ │ │ │ ├── resolve_op.hpp │ │ │ │ │ ├── resolve_query_op.hpp │ │ │ │ │ ├── resolver_service.hpp │ │ │ │ │ ├── resolver_service_base.hpp │ │ │ │ │ ├── scheduler.hpp │ │ │ │ │ ├── scheduler_operation.hpp │ │ │ │ │ ├── scheduler_task.hpp │ │ │ │ │ ├── scheduler_thread_info.hpp │ │ │ │ │ ├── scoped_lock.hpp │ │ │ │ │ ├── scoped_ptr.hpp │ │ │ │ │ ├── select_interrupter.hpp │ │ │ │ │ ├── select_reactor.hpp │ │ │ │ │ ├── service_registry.hpp │ │ │ │ │ ├── signal_blocker.hpp │ │ │ │ │ ├── signal_handler.hpp │ │ │ │ │ ├── signal_init.hpp │ │ │ │ │ ├── signal_op.hpp │ │ │ │ │ ├── signal_set_service.hpp │ │ │ │ │ ├── socket_holder.hpp │ │ │ │ │ ├── socket_ops.hpp │ │ │ │ │ ├── socket_option.hpp │ │ │ │ │ ├── socket_select_interrupter.hpp │ │ │ │ │ ├── socket_types.hpp │ │ │ │ │ ├── solaris_fenced_block.hpp │ │ │ │ │ ├── source_location.hpp │ │ │ │ │ ├── static_mutex.hpp │ │ │ │ │ ├── std_event.hpp │ │ │ │ │ ├── std_fenced_block.hpp │ │ │ │ │ ├── std_global.hpp │ │ │ │ │ ├── std_mutex.hpp │ │ │ │ │ ├── std_static_mutex.hpp │ │ │ │ │ ├── std_thread.hpp │ │ │ │ │ ├── strand_executor_service.hpp │ │ │ │ │ ├── strand_service.hpp │ │ │ │ │ ├── string_view.hpp │ │ │ │ │ ├── thread.hpp │ │ │ │ │ ├── thread_context.hpp │ │ │ │ │ ├── thread_group.hpp │ │ │ │ │ ├── thread_info_base.hpp │ │ │ │ │ ├── throw_error.hpp │ │ │ │ │ ├── throw_exception.hpp │ │ │ │ │ ├── timer_queue.hpp │ │ │ │ │ ├── timer_queue_base.hpp │ │ │ │ │ ├── timer_queue_ptime.hpp │ │ │ │ │ ├── timer_queue_set.hpp │ │ │ │ │ ├── timer_scheduler.hpp │ │ │ │ │ ├── timer_scheduler_fwd.hpp │ │ │ │ │ ├── tss_ptr.hpp │ │ │ │ │ ├── type_traits.hpp │ │ │ │ │ ├── utility.hpp │ │ │ │ │ ├── variadic_templates.hpp │ │ │ │ │ ├── wait_handler.hpp │ │ │ │ │ ├── wait_op.hpp │ │ │ │ │ ├── win_event.hpp │ │ │ │ │ ├── win_fd_set_adapter.hpp │ │ │ │ │ ├── win_fenced_block.hpp │ │ │ │ │ ├── win_global.hpp │ │ │ │ │ ├── win_iocp_file_service.hpp │ │ │ │ │ ├── win_iocp_handle_read_op.hpp │ │ │ │ │ ├── win_iocp_handle_service.hpp │ │ │ │ │ ├── win_iocp_handle_write_op.hpp │ │ │ │ │ ├── win_iocp_io_context.hpp │ │ │ │ │ ├── win_iocp_null_buffers_op.hpp │ │ │ │ │ ├── win_iocp_operation.hpp │ │ │ │ │ ├── win_iocp_overlapped_op.hpp │ │ │ │ │ ├── win_iocp_overlapped_ptr.hpp │ │ │ │ │ ├── win_iocp_serial_port_service.hpp │ │ │ │ │ ├── win_iocp_socket_accept_op.hpp │ │ │ │ │ ├── win_iocp_socket_connect_op.hpp │ │ │ │ │ ├── win_iocp_socket_recv_op.hpp │ │ │ │ │ ├── win_iocp_socket_recvfrom_op.hpp │ │ │ │ │ ├── win_iocp_socket_recvmsg_op.hpp │ │ │ │ │ ├── win_iocp_socket_send_op.hpp │ │ │ │ │ ├── win_iocp_socket_service.hpp │ │ │ │ │ ├── win_iocp_socket_service_base.hpp │ │ │ │ │ ├── win_iocp_thread_info.hpp │ │ │ │ │ ├── win_iocp_wait_op.hpp │ │ │ │ │ ├── win_mutex.hpp │ │ │ │ │ ├── win_object_handle_service.hpp │ │ │ │ │ ├── win_static_mutex.hpp │ │ │ │ │ ├── win_thread.hpp │ │ │ │ │ ├── win_tss_ptr.hpp │ │ │ │ │ ├── winapp_thread.hpp │ │ │ │ │ ├── wince_thread.hpp │ │ │ │ │ ├── winrt_async_manager.hpp │ │ │ │ │ ├── winrt_async_op.hpp │ │ │ │ │ ├── winrt_resolve_op.hpp │ │ │ │ │ ├── winrt_resolver_service.hpp │ │ │ │ │ ├── winrt_timer_scheduler.hpp │ │ │ │ │ ├── winrt_utils.hpp │ │ │ │ │ ├── winsock_init.hpp │ │ │ │ │ ├── work_dispatcher.hpp │ │ │ │ │ └── wrapped_handler.hpp │ │ │ │ ├── dispatch.hpp │ │ │ │ ├── error.hpp │ │ │ │ ├── execution.hpp │ │ │ │ ├── execution │ │ │ │ │ ├── allocator.hpp │ │ │ │ │ ├── any_executor.hpp │ │ │ │ │ ├── bad_executor.hpp │ │ │ │ │ ├── blocking.hpp │ │ │ │ │ ├── blocking_adaptation.hpp │ │ │ │ │ ├── bulk_execute.hpp │ │ │ │ │ ├── bulk_guarantee.hpp │ │ │ │ │ ├── connect.hpp │ │ │ │ │ ├── context.hpp │ │ │ │ │ ├── context_as.hpp │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── as_invocable.hpp │ │ │ │ │ │ ├── as_operation.hpp │ │ │ │ │ │ ├── as_receiver.hpp │ │ │ │ │ │ ├── bulk_sender.hpp │ │ │ │ │ │ ├── submit_receiver.hpp │ │ │ │ │ │ └── void_receiver.hpp │ │ │ │ │ ├── execute.hpp │ │ │ │ │ ├── executor.hpp │ │ │ │ │ ├── impl │ │ │ │ │ │ ├── bad_executor.ipp │ │ │ │ │ │ └── receiver_invocation_error.ipp │ │ │ │ │ ├── invocable_archetype.hpp │ │ │ │ │ ├── mapping.hpp │ │ │ │ │ ├── occupancy.hpp │ │ │ │ │ ├── operation_state.hpp │ │ │ │ │ ├── outstanding_work.hpp │ │ │ │ │ ├── prefer_only.hpp │ │ │ │ │ ├── receiver.hpp │ │ │ │ │ ├── receiver_invocation_error.hpp │ │ │ │ │ ├── relationship.hpp │ │ │ │ │ ├── schedule.hpp │ │ │ │ │ ├── scheduler.hpp │ │ │ │ │ ├── sender.hpp │ │ │ │ │ ├── set_done.hpp │ │ │ │ │ ├── set_error.hpp │ │ │ │ │ ├── set_value.hpp │ │ │ │ │ ├── start.hpp │ │ │ │ │ └── submit.hpp │ │ │ │ ├── execution_context.hpp │ │ │ │ ├── executor.hpp │ │ │ │ ├── executor_work_guard.hpp │ │ │ │ ├── file_base.hpp │ │ │ │ ├── generic │ │ │ │ │ ├── basic_endpoint.hpp │ │ │ │ │ ├── datagram_protocol.hpp │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── endpoint.hpp │ │ │ │ │ │ └── impl │ │ │ │ │ │ │ └── endpoint.ipp │ │ │ │ │ ├── raw_protocol.hpp │ │ │ │ │ ├── seq_packet_protocol.hpp │ │ │ │ │ └── stream_protocol.hpp │ │ │ │ ├── handler_alloc_hook.hpp │ │ │ │ ├── handler_continuation_hook.hpp │ │ │ │ ├── handler_invoke_hook.hpp │ │ │ │ ├── high_resolution_timer.hpp │ │ │ │ ├── impl │ │ │ │ │ ├── any_io_executor.ipp │ │ │ │ │ ├── append.hpp │ │ │ │ │ ├── as_tuple.hpp │ │ │ │ │ ├── awaitable.hpp │ │ │ │ │ ├── buffered_read_stream.hpp │ │ │ │ │ ├── buffered_write_stream.hpp │ │ │ │ │ ├── cancellation_signal.ipp │ │ │ │ │ ├── co_spawn.hpp │ │ │ │ │ ├── connect.hpp │ │ │ │ │ ├── connect_pipe.hpp │ │ │ │ │ ├── connect_pipe.ipp │ │ │ │ │ ├── defer.hpp │ │ │ │ │ ├── deferred.hpp │ │ │ │ │ ├── detached.hpp │ │ │ │ │ ├── dispatch.hpp │ │ │ │ │ ├── error.ipp │ │ │ │ │ ├── execution_context.hpp │ │ │ │ │ ├── execution_context.ipp │ │ │ │ │ ├── executor.hpp │ │ │ │ │ ├── executor.ipp │ │ │ │ │ ├── handler_alloc_hook.ipp │ │ │ │ │ ├── io_context.hpp │ │ │ │ │ ├── io_context.ipp │ │ │ │ │ ├── multiple_exceptions.ipp │ │ │ │ │ ├── post.hpp │ │ │ │ │ ├── prepend.hpp │ │ │ │ │ ├── read.hpp │ │ │ │ │ ├── read_at.hpp │ │ │ │ │ ├── read_until.hpp │ │ │ │ │ ├── redirect_error.hpp │ │ │ │ │ ├── serial_port_base.hpp │ │ │ │ │ ├── serial_port_base.ipp │ │ │ │ │ ├── system_context.hpp │ │ │ │ │ ├── system_context.ipp │ │ │ │ │ ├── system_executor.hpp │ │ │ │ │ ├── thread_pool.hpp │ │ │ │ │ ├── thread_pool.ipp │ │ │ │ │ ├── use_awaitable.hpp │ │ │ │ │ ├── use_future.hpp │ │ │ │ │ ├── write.hpp │ │ │ │ │ └── write_at.hpp │ │ │ │ ├── io_context.hpp │ │ │ │ ├── io_context_strand.hpp │ │ │ │ ├── io_service.hpp │ │ │ │ ├── io_service_strand.hpp │ │ │ │ ├── ip │ │ │ │ │ ├── address.hpp │ │ │ │ │ ├── address_v4.hpp │ │ │ │ │ ├── address_v4_iterator.hpp │ │ │ │ │ ├── address_v4_range.hpp │ │ │ │ │ ├── address_v6.hpp │ │ │ │ │ ├── address_v6_iterator.hpp │ │ │ │ │ ├── address_v6_range.hpp │ │ │ │ │ ├── bad_address_cast.hpp │ │ │ │ │ ├── basic_endpoint.hpp │ │ │ │ │ ├── basic_resolver.hpp │ │ │ │ │ ├── basic_resolver_entry.hpp │ │ │ │ │ ├── basic_resolver_iterator.hpp │ │ │ │ │ ├── basic_resolver_query.hpp │ │ │ │ │ ├── basic_resolver_results.hpp │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── endpoint.hpp │ │ │ │ │ │ ├── impl │ │ │ │ │ │ │ └── endpoint.ipp │ │ │ │ │ │ └── socket_option.hpp │ │ │ │ │ ├── host_name.hpp │ │ │ │ │ ├── icmp.hpp │ │ │ │ │ ├── impl │ │ │ │ │ │ ├── address.hpp │ │ │ │ │ │ ├── address.ipp │ │ │ │ │ │ ├── address_v4.hpp │ │ │ │ │ │ ├── address_v4.ipp │ │ │ │ │ │ ├── address_v6.hpp │ │ │ │ │ │ ├── address_v6.ipp │ │ │ │ │ │ ├── basic_endpoint.hpp │ │ │ │ │ │ ├── host_name.ipp │ │ │ │ │ │ ├── network_v4.hpp │ │ │ │ │ │ ├── network_v4.ipp │ │ │ │ │ │ ├── network_v6.hpp │ │ │ │ │ │ └── network_v6.ipp │ │ │ │ │ ├── multicast.hpp │ │ │ │ │ ├── network_v4.hpp │ │ │ │ │ ├── network_v6.hpp │ │ │ │ │ ├── resolver_base.hpp │ │ │ │ │ ├── resolver_query_base.hpp │ │ │ │ │ ├── tcp.hpp │ │ │ │ │ ├── udp.hpp │ │ │ │ │ ├── unicast.hpp │ │ │ │ │ └── v6_only.hpp │ │ │ │ ├── is_applicable_property.hpp │ │ │ │ ├── is_contiguous_iterator.hpp │ │ │ │ ├── is_executor.hpp │ │ │ │ ├── is_read_buffered.hpp │ │ │ │ ├── is_write_buffered.hpp │ │ │ │ ├── local │ │ │ │ │ ├── basic_endpoint.hpp │ │ │ │ │ ├── connect_pair.hpp │ │ │ │ │ ├── datagram_protocol.hpp │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── endpoint.hpp │ │ │ │ │ │ └── impl │ │ │ │ │ │ │ └── endpoint.ipp │ │ │ │ │ └── stream_protocol.hpp │ │ │ │ ├── multiple_exceptions.hpp │ │ │ │ ├── packaged_task.hpp │ │ │ │ ├── placeholders.hpp │ │ │ │ ├── posix │ │ │ │ │ ├── basic_descriptor.hpp │ │ │ │ │ ├── basic_stream_descriptor.hpp │ │ │ │ │ ├── descriptor.hpp │ │ │ │ │ ├── descriptor_base.hpp │ │ │ │ │ └── stream_descriptor.hpp │ │ │ │ ├── post.hpp │ │ │ │ ├── prefer.hpp │ │ │ │ ├── prepend.hpp │ │ │ │ ├── query.hpp │ │ │ │ ├── random_access_file.hpp │ │ │ │ ├── read.hpp │ │ │ │ ├── read_at.hpp │ │ │ │ ├── read_until.hpp │ │ │ │ ├── readable_pipe.hpp │ │ │ │ ├── recycling_allocator.hpp │ │ │ │ ├── redirect_error.hpp │ │ │ │ ├── registered_buffer.hpp │ │ │ │ ├── require.hpp │ │ │ │ ├── require_concept.hpp │ │ │ │ ├── serial_port.hpp │ │ │ │ ├── serial_port_base.hpp │ │ │ │ ├── signal_set.hpp │ │ │ │ ├── socket_base.hpp │ │ │ │ ├── static_thread_pool.hpp │ │ │ │ ├── steady_timer.hpp │ │ │ │ ├── strand.hpp │ │ │ │ ├── stream_file.hpp │ │ │ │ ├── streambuf.hpp │ │ │ │ ├── system_context.hpp │ │ │ │ ├── system_executor.hpp │ │ │ │ ├── system_timer.hpp │ │ │ │ ├── this_coro.hpp │ │ │ │ ├── thread_pool.hpp │ │ │ │ ├── time_traits.hpp │ │ │ │ ├── traits │ │ │ │ │ ├── bulk_execute_free.hpp │ │ │ │ │ ├── bulk_execute_member.hpp │ │ │ │ │ ├── connect_free.hpp │ │ │ │ │ ├── connect_member.hpp │ │ │ │ │ ├── equality_comparable.hpp │ │ │ │ │ ├── execute_free.hpp │ │ │ │ │ ├── execute_member.hpp │ │ │ │ │ ├── prefer_free.hpp │ │ │ │ │ ├── prefer_member.hpp │ │ │ │ │ ├── query_free.hpp │ │ │ │ │ ├── query_member.hpp │ │ │ │ │ ├── query_static_constexpr_member.hpp │ │ │ │ │ ├── require_concept_free.hpp │ │ │ │ │ ├── require_concept_member.hpp │ │ │ │ │ ├── require_free.hpp │ │ │ │ │ ├── require_member.hpp │ │ │ │ │ ├── schedule_free.hpp │ │ │ │ │ ├── schedule_member.hpp │ │ │ │ │ ├── set_done_free.hpp │ │ │ │ │ ├── set_done_member.hpp │ │ │ │ │ ├── set_error_free.hpp │ │ │ │ │ ├── set_error_member.hpp │ │ │ │ │ ├── set_value_free.hpp │ │ │ │ │ ├── set_value_member.hpp │ │ │ │ │ ├── start_free.hpp │ │ │ │ │ ├── start_member.hpp │ │ │ │ │ ├── static_query.hpp │ │ │ │ │ ├── static_require.hpp │ │ │ │ │ ├── static_require_concept.hpp │ │ │ │ │ ├── submit_free.hpp │ │ │ │ │ └── submit_member.hpp │ │ │ │ ├── use_awaitable.hpp │ │ │ │ ├── use_future.hpp │ │ │ │ ├── uses_executor.hpp │ │ │ │ ├── version.hpp │ │ │ │ ├── wait_traits.hpp │ │ │ │ ├── windows │ │ │ │ │ ├── basic_object_handle.hpp │ │ │ │ │ ├── basic_overlapped_handle.hpp │ │ │ │ │ ├── basic_random_access_handle.hpp │ │ │ │ │ ├── basic_stream_handle.hpp │ │ │ │ │ ├── object_handle.hpp │ │ │ │ │ ├── overlapped_handle.hpp │ │ │ │ │ ├── overlapped_ptr.hpp │ │ │ │ │ ├── random_access_handle.hpp │ │ │ │ │ └── stream_handle.hpp │ │ │ │ ├── writable_pipe.hpp │ │ │ │ ├── write.hpp │ │ │ │ └── write_at.hpp │ │ │ ├── assert.hpp │ │ │ ├── assert │ │ │ │ └── source_location.hpp │ │ │ ├── bind │ │ │ │ ├── arg.hpp │ │ │ │ ├── mem_fn.hpp │ │ │ │ ├── mem_fn_cc.hpp │ │ │ │ ├── mem_fn_template.hpp │ │ │ │ └── mem_fn_vw.hpp │ │ │ ├── call_traits.hpp │ │ │ ├── cerrno.hpp │ │ │ ├── chrono │ │ │ │ ├── chrono.hpp │ │ │ │ ├── clock_string.hpp │ │ │ │ ├── config.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── inlined │ │ │ │ │ │ ├── chrono.hpp │ │ │ │ │ │ ├── mac │ │ │ │ │ │ │ ├── chrono.hpp │ │ │ │ │ │ │ ├── process_cpu_clocks.hpp │ │ │ │ │ │ │ └── thread_clock.hpp │ │ │ │ │ │ ├── posix │ │ │ │ │ │ │ ├── chrono.hpp │ │ │ │ │ │ │ ├── process_cpu_clocks.hpp │ │ │ │ │ │ │ └── thread_clock.hpp │ │ │ │ │ │ ├── process_cpu_clocks.hpp │ │ │ │ │ │ ├── thread_clock.hpp │ │ │ │ │ │ └── win │ │ │ │ │ │ │ ├── chrono.hpp │ │ │ │ │ │ │ ├── process_cpu_clocks.hpp │ │ │ │ │ │ │ └── thread_clock.hpp │ │ │ │ │ ├── is_evenly_divisible_by.hpp │ │ │ │ │ ├── static_assert.hpp │ │ │ │ │ └── system.hpp │ │ │ │ ├── duration.hpp │ │ │ │ ├── process_cpu_clocks.hpp │ │ │ │ ├── system_clocks.hpp │ │ │ │ ├── thread_clock.hpp │ │ │ │ └── time_point.hpp │ │ │ ├── concept │ │ │ │ ├── assert.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── backward_compatibility.hpp │ │ │ │ │ ├── borland.hpp │ │ │ │ │ ├── concept_def.hpp │ │ │ │ │ ├── concept_undef.hpp │ │ │ │ │ ├── general.hpp │ │ │ │ │ ├── has_constraints.hpp │ │ │ │ │ └── msvc.hpp │ │ │ │ └── usage.hpp │ │ │ ├── concept_check.hpp │ │ │ ├── config.hpp │ │ │ ├── config │ │ │ │ ├── abi │ │ │ │ │ ├── borland_prefix.hpp │ │ │ │ │ ├── borland_suffix.hpp │ │ │ │ │ ├── msvc_prefix.hpp │ │ │ │ │ └── msvc_suffix.hpp │ │ │ │ ├── abi_prefix.hpp │ │ │ │ ├── abi_suffix.hpp │ │ │ │ ├── assert_cxx03.hpp │ │ │ │ ├── assert_cxx11.hpp │ │ │ │ ├── assert_cxx14.hpp │ │ │ │ ├── assert_cxx17.hpp │ │ │ │ ├── assert_cxx20.hpp │ │ │ │ ├── assert_cxx98.hpp │ │ │ │ ├── auto_link.hpp │ │ │ │ ├── compiler │ │ │ │ │ ├── borland.hpp │ │ │ │ │ ├── clang.hpp │ │ │ │ │ ├── clang_version.hpp │ │ │ │ │ ├── codegear.hpp │ │ │ │ │ ├── comeau.hpp │ │ │ │ │ ├── common_edg.hpp │ │ │ │ │ ├── compaq_cxx.hpp │ │ │ │ │ ├── cray.hpp │ │ │ │ │ ├── diab.hpp │ │ │ │ │ ├── digitalmars.hpp │ │ │ │ │ ├── gcc.hpp │ │ │ │ │ ├── gcc_xml.hpp │ │ │ │ │ ├── greenhills.hpp │ │ │ │ │ ├── hp_acc.hpp │ │ │ │ │ ├── intel.hpp │ │ │ │ │ ├── kai.hpp │ │ │ │ │ ├── metrowerks.hpp │ │ │ │ │ ├── mpw.hpp │ │ │ │ │ ├── nvcc.hpp │ │ │ │ │ ├── pathscale.hpp │ │ │ │ │ ├── pgi.hpp │ │ │ │ │ ├── sgi_mipspro.hpp │ │ │ │ │ ├── sunpro_cc.hpp │ │ │ │ │ ├── vacpp.hpp │ │ │ │ │ ├── visualc.hpp │ │ │ │ │ ├── xlcpp.hpp │ │ │ │ │ └── xlcpp_zos.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── cxx_composite.hpp │ │ │ │ │ ├── posix_features.hpp │ │ │ │ │ ├── select_compiler_config.hpp │ │ │ │ │ ├── select_platform_config.hpp │ │ │ │ │ ├── select_stdlib_config.hpp │ │ │ │ │ └── suffix.hpp │ │ │ │ ├── header_deprecated.hpp │ │ │ │ ├── helper_macros.hpp │ │ │ │ ├── no_tr1 │ │ │ │ │ ├── cmath.hpp │ │ │ │ │ ├── complex.hpp │ │ │ │ │ ├── functional.hpp │ │ │ │ │ ├── memory.hpp │ │ │ │ │ └── utility.hpp │ │ │ │ ├── platform │ │ │ │ │ ├── aix.hpp │ │ │ │ │ ├── amigaos.hpp │ │ │ │ │ ├── beos.hpp │ │ │ │ │ ├── bsd.hpp │ │ │ │ │ ├── cloudabi.hpp │ │ │ │ │ ├── cray.hpp │ │ │ │ │ ├── cygwin.hpp │ │ │ │ │ ├── haiku.hpp │ │ │ │ │ ├── hpux.hpp │ │ │ │ │ ├── irix.hpp │ │ │ │ │ ├── linux.hpp │ │ │ │ │ ├── macos.hpp │ │ │ │ │ ├── qnxnto.hpp │ │ │ │ │ ├── solaris.hpp │ │ │ │ │ ├── symbian.hpp │ │ │ │ │ ├── vms.hpp │ │ │ │ │ ├── vxworks.hpp │ │ │ │ │ ├── wasm.hpp │ │ │ │ │ ├── win32.hpp │ │ │ │ │ └── zos.hpp │ │ │ │ ├── pragma_message.hpp │ │ │ │ ├── requires_threads.hpp │ │ │ │ ├── stdlib │ │ │ │ │ ├── dinkumware.hpp │ │ │ │ │ ├── libcomo.hpp │ │ │ │ │ ├── libcpp.hpp │ │ │ │ │ ├── libstdcpp3.hpp │ │ │ │ │ ├── modena.hpp │ │ │ │ │ ├── msl.hpp │ │ │ │ │ ├── roguewave.hpp │ │ │ │ │ ├── sgi.hpp │ │ │ │ │ ├── stlport.hpp │ │ │ │ │ ├── vacpp.hpp │ │ │ │ │ └── xlcpp_zos.hpp │ │ │ │ ├── user.hpp │ │ │ │ ├── warning_disable.hpp │ │ │ │ └── workaround.hpp │ │ │ ├── container_hash │ │ │ │ ├── detail │ │ │ │ │ ├── float_functions.hpp │ │ │ │ │ ├── hash_float.hpp │ │ │ │ │ └── limits.hpp │ │ │ │ ├── extensions.hpp │ │ │ │ ├── hash.hpp │ │ │ │ └── hash_fwd.hpp │ │ │ ├── core │ │ │ │ ├── addressof.hpp │ │ │ │ ├── alloc_construct.hpp │ │ │ │ ├── allocator_access.hpp │ │ │ │ ├── bit.hpp │ │ │ │ ├── checked_delete.hpp │ │ │ │ ├── cmath.hpp │ │ │ │ ├── default_allocator.hpp │ │ │ │ ├── demangle.hpp │ │ │ │ ├── enable_if.hpp │ │ │ │ ├── first_scalar.hpp │ │ │ │ ├── no_exceptions_support.hpp │ │ │ │ ├── noinit_adaptor.hpp │ │ │ │ ├── noncopyable.hpp │ │ │ │ ├── pointer_traits.hpp │ │ │ │ ├── ref.hpp │ │ │ │ ├── swap.hpp │ │ │ │ └── typeinfo.hpp │ │ │ ├── cregex.hpp │ │ │ ├── cstdint.hpp │ │ │ ├── current_function.hpp │ │ │ ├── date_time │ │ │ │ ├── adjust_functors.hpp │ │ │ │ ├── c_time.hpp │ │ │ │ ├── compiler_config.hpp │ │ │ │ ├── constrained_value.hpp │ │ │ │ ├── date.hpp │ │ │ │ ├── date_clock_device.hpp │ │ │ │ ├── date_defs.hpp │ │ │ │ ├── date_duration.hpp │ │ │ │ ├── date_duration_types.hpp │ │ │ │ ├── date_generators.hpp │ │ │ │ ├── date_iterator.hpp │ │ │ │ ├── dst_rules.hpp │ │ │ │ ├── gregorian │ │ │ │ │ ├── greg_calendar.hpp │ │ │ │ │ ├── greg_date.hpp │ │ │ │ │ ├── greg_day.hpp │ │ │ │ │ ├── greg_day_of_year.hpp │ │ │ │ │ ├── greg_duration.hpp │ │ │ │ │ ├── greg_duration_types.hpp │ │ │ │ │ ├── greg_month.hpp │ │ │ │ │ ├── greg_weekday.hpp │ │ │ │ │ ├── greg_year.hpp │ │ │ │ │ ├── greg_ymd.hpp │ │ │ │ │ └── gregorian_types.hpp │ │ │ │ ├── gregorian_calendar.hpp │ │ │ │ ├── gregorian_calendar.ipp │ │ │ │ ├── int_adapter.hpp │ │ │ │ ├── locale_config.hpp │ │ │ │ ├── microsec_time_clock.hpp │ │ │ │ ├── period.hpp │ │ │ │ ├── posix_time │ │ │ │ │ ├── date_duration_operators.hpp │ │ │ │ │ ├── posix_time_config.hpp │ │ │ │ │ ├── posix_time_duration.hpp │ │ │ │ │ ├── posix_time_system.hpp │ │ │ │ │ ├── posix_time_types.hpp │ │ │ │ │ ├── ptime.hpp │ │ │ │ │ └── time_period.hpp │ │ │ │ ├── special_defs.hpp │ │ │ │ ├── time.hpp │ │ │ │ ├── time_clock.hpp │ │ │ │ ├── time_defs.hpp │ │ │ │ ├── time_duration.hpp │ │ │ │ ├── time_iterator.hpp │ │ │ │ ├── time_resolution_traits.hpp │ │ │ │ ├── time_system_counted.hpp │ │ │ │ ├── time_system_split.hpp │ │ │ │ ├── wrapping_int.hpp │ │ │ │ └── year_month_day.hpp │ │ │ ├── detail │ │ │ │ ├── atomic_count.hpp │ │ │ │ ├── call_traits.hpp │ │ │ │ ├── container_fwd.hpp │ │ │ │ └── workaround.hpp │ │ │ ├── exception │ │ │ │ └── exception.hpp │ │ │ ├── function.hpp │ │ │ ├── function │ │ │ │ ├── detail │ │ │ │ │ ├── function_iterate.hpp │ │ │ │ │ ├── gen_maybe_include.pl │ │ │ │ │ ├── maybe_include.hpp │ │ │ │ │ └── prologue.hpp │ │ │ │ ├── function0.hpp │ │ │ │ ├── function1.hpp │ │ │ │ ├── function10.hpp │ │ │ │ ├── function2.hpp │ │ │ │ ├── function3.hpp │ │ │ │ ├── function4.hpp │ │ │ │ ├── function5.hpp │ │ │ │ ├── function6.hpp │ │ │ │ ├── function7.hpp │ │ │ │ ├── function8.hpp │ │ │ │ ├── function9.hpp │ │ │ │ ├── function_base.hpp │ │ │ │ ├── function_fwd.hpp │ │ │ │ └── function_template.hpp │ │ │ ├── function_equal.hpp │ │ │ ├── get_pointer.hpp │ │ │ ├── integer.hpp │ │ │ ├── integer │ │ │ │ ├── common_factor_rt.hpp │ │ │ │ ├── integer_log2.hpp │ │ │ │ ├── integer_mask.hpp │ │ │ │ └── static_log2.hpp │ │ │ ├── integer_fwd.hpp │ │ │ ├── integer_traits.hpp │ │ │ ├── io │ │ │ │ ├── detail │ │ │ │ │ ├── buffer_fill.hpp │ │ │ │ │ └── ostream_guard.hpp │ │ │ │ ├── ios_state.hpp │ │ │ │ └── ostream_put.hpp │ │ │ ├── io_fwd.hpp │ │ │ ├── is_placeholder.hpp │ │ │ ├── iterator │ │ │ │ ├── detail │ │ │ │ │ ├── config_def.hpp │ │ │ │ │ └── config_undef.hpp │ │ │ │ ├── iterator_categories.hpp │ │ │ │ ├── iterator_concepts.hpp │ │ │ │ └── iterator_traits.hpp │ │ │ ├── limits.hpp │ │ │ ├── make_shared.hpp │ │ │ ├── mem_fn.hpp │ │ │ ├── move │ │ │ │ ├── core.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── addressof.hpp │ │ │ │ │ ├── config_begin.hpp │ │ │ │ │ ├── config_end.hpp │ │ │ │ │ ├── meta_utils.hpp │ │ │ │ │ ├── meta_utils_core.hpp │ │ │ │ │ ├── type_traits.hpp │ │ │ │ │ └── workaround.hpp │ │ │ │ └── utility_core.hpp │ │ │ ├── mpl │ │ │ │ ├── and.hpp │ │ │ │ ├── apply_wrap.hpp │ │ │ │ ├── arg.hpp │ │ │ │ ├── arg_fwd.hpp │ │ │ │ ├── assert.hpp │ │ │ │ ├── aux_ │ │ │ │ │ ├── adl_barrier.hpp │ │ │ │ │ ├── arg_typedef.hpp │ │ │ │ │ ├── arithmetic_op.hpp │ │ │ │ │ ├── arity.hpp │ │ │ │ │ ├── arity_spec.hpp │ │ │ │ │ ├── comparison_op.hpp │ │ │ │ │ ├── config │ │ │ │ │ │ ├── adl.hpp │ │ │ │ │ │ ├── arrays.hpp │ │ │ │ │ │ ├── bcc.hpp │ │ │ │ │ │ ├── compiler.hpp │ │ │ │ │ │ ├── ctps.hpp │ │ │ │ │ │ ├── dependent_nttp.hpp │ │ │ │ │ │ ├── dtp.hpp │ │ │ │ │ │ ├── eti.hpp │ │ │ │ │ │ ├── forwarding.hpp │ │ │ │ │ │ ├── gcc.hpp │ │ │ │ │ │ ├── gpu.hpp │ │ │ │ │ │ ├── has_apply.hpp │ │ │ │ │ │ ├── has_xxx.hpp │ │ │ │ │ │ ├── integral.hpp │ │ │ │ │ │ ├── intel.hpp │ │ │ │ │ │ ├── lambda.hpp │ │ │ │ │ │ ├── msvc.hpp │ │ │ │ │ │ ├── msvc_typename.hpp │ │ │ │ │ │ ├── nttp.hpp │ │ │ │ │ │ ├── overload_resolution.hpp │ │ │ │ │ │ ├── pp_counter.hpp │ │ │ │ │ │ ├── preprocessor.hpp │ │ │ │ │ │ ├── static_constant.hpp │ │ │ │ │ │ ├── ttp.hpp │ │ │ │ │ │ ├── use_preprocessed.hpp │ │ │ │ │ │ └── workaround.hpp │ │ │ │ │ ├── has_apply.hpp │ │ │ │ │ ├── has_tag.hpp │ │ │ │ │ ├── include_preprocessed.hpp │ │ │ │ │ ├── integral_wrapper.hpp │ │ │ │ │ ├── is_msvc_eti_arg.hpp │ │ │ │ │ ├── lambda_arity_param.hpp │ │ │ │ │ ├── lambda_support.hpp │ │ │ │ │ ├── largest_int.hpp │ │ │ │ │ ├── logical_op.hpp │ │ │ │ │ ├── msvc_dtw.hpp │ │ │ │ │ ├── msvc_eti_base.hpp │ │ │ │ │ ├── msvc_never_true.hpp │ │ │ │ │ ├── na.hpp │ │ │ │ │ ├── na_assert.hpp │ │ │ │ │ ├── na_fwd.hpp │ │ │ │ │ ├── na_spec.hpp │ │ │ │ │ ├── nested_type_wknd.hpp │ │ │ │ │ ├── nttp_decl.hpp │ │ │ │ │ ├── numeric_cast_utils.hpp │ │ │ │ │ ├── numeric_op.hpp │ │ │ │ │ ├── preprocessed │ │ │ │ │ │ ├── bcc │ │ │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ │ │ ├── and.hpp │ │ │ │ │ │ │ ├── apply.hpp │ │ │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ │ │ ├── arg.hpp │ │ │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ │ │ ├── bind.hpp │ │ │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ │ │ ├── deque.hpp │ │ │ │ │ │ │ ├── divides.hpp │ │ │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ │ │ ├── greater.hpp │ │ │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ │ │ ├── less.hpp │ │ │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ │ │ ├── list.hpp │ │ │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ │ │ ├── map.hpp │ │ │ │ │ │ │ ├── minus.hpp │ │ │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ │ │ ├── or.hpp │ │ │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ │ │ ├── plus.hpp │ │ │ │ │ │ │ ├── quote.hpp │ │ │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ │ │ ├── set.hpp │ │ │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ │ │ ├── times.hpp │ │ │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ │ │ ├── vector.hpp │ │ │ │ │ │ │ └── vector_c.hpp │ │ │ │ │ │ ├── bcc551 │ │ │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ │ │ ├── and.hpp │ │ │ │ │ │ │ ├── apply.hpp │ │ │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ │ │ ├── arg.hpp │ │ │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ │ │ ├── bind.hpp │ │ │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ │ │ ├── deque.hpp │ │ │ │ │ │ │ ├── divides.hpp │ │ │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ │ │ ├── greater.hpp │ │ │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ │ │ ├── less.hpp │ │ │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ │ │ ├── list.hpp │ │ │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ │ │ ├── map.hpp │ │ │ │ │ │ │ ├── minus.hpp │ │ │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ │ │ ├── or.hpp │ │ │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ │ │ ├── plus.hpp │ │ │ │ │ │ │ ├── quote.hpp │ │ │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ │ │ ├── set.hpp │ │ │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ │ │ ├── times.hpp │ │ │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ │ │ ├── vector.hpp │ │ │ │ │ │ │ └── vector_c.hpp │ │ │ │ │ │ ├── bcc_pre590 │ │ │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ │ │ ├── and.hpp │ │ │ │ │ │ │ ├── apply.hpp │ │ │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ │ │ ├── arg.hpp │ │ │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ │ │ ├── bind.hpp │ │ │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ │ │ ├── deque.hpp │ │ │ │ │ │ │ ├── divides.hpp │ │ │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ │ │ ├── greater.hpp │ │ │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ │ │ ├── less.hpp │ │ │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ │ │ ├── list.hpp │ │ │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ │ │ ├── map.hpp │ │ │ │ │ │ │ ├── minus.hpp │ │ │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ │ │ ├── or.hpp │ │ │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ │ │ ├── plus.hpp │ │ │ │ │ │ │ ├── quote.hpp │ │ │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ │ │ ├── set.hpp │ │ │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ │ │ ├── times.hpp │ │ │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ │ │ ├── vector.hpp │ │ │ │ │ │ │ └── vector_c.hpp │ │ │ │ │ │ ├── dmc │ │ │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ │ │ ├── and.hpp │ │ │ │ │ │ │ ├── apply.hpp │ │ │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ │ │ ├── arg.hpp │ │ │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ │ │ ├── bind.hpp │ │ │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ │ │ ├── deque.hpp │ │ │ │ │ │ │ ├── divides.hpp │ │ │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ │ │ ├── greater.hpp │ │ │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ │ │ ├── less.hpp │ │ │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ │ │ ├── list.hpp │ │ │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ │ │ ├── map.hpp │ │ │ │ │ │ │ ├── minus.hpp │ │ │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ │ │ ├── or.hpp │ │ │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ │ │ ├── plus.hpp │ │ │ │ │ │ │ ├── quote.hpp │ │ │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ │ │ ├── set.hpp │ │ │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ │ │ ├── times.hpp │ │ │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ │ │ ├── vector.hpp │ │ │ │ │ │ │ └── vector_c.hpp │ │ │ │ │ │ ├── gcc │ │ │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ │ │ ├── and.hpp │ │ │ │ │ │ │ ├── apply.hpp │ │ │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ │ │ ├── arg.hpp │ │ │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ │ │ ├── bind.hpp │ │ │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ │ │ ├── deque.hpp │ │ │ │ │ │ │ ├── divides.hpp │ │ │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ │ │ ├── greater.hpp │ │ │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ │ │ ├── less.hpp │ │ │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ │ │ ├── list.hpp │ │ │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ │ │ ├── map.hpp │ │ │ │ │ │ │ ├── minus.hpp │ │ │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ │ │ ├── or.hpp │ │ │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ │ │ ├── plus.hpp │ │ │ │ │ │ │ ├── quote.hpp │ │ │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ │ │ ├── set.hpp │ │ │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ │ │ ├── times.hpp │ │ │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ │ │ ├── vector.hpp │ │ │ │ │ │ │ └── vector_c.hpp │ │ │ │ │ │ ├── msvc60 │ │ │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ │ │ ├── and.hpp │ │ │ │ │ │ │ ├── apply.hpp │ │ │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ │ │ ├── arg.hpp │ │ │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ │ │ ├── bind.hpp │ │ │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ │ │ ├── deque.hpp │ │ │ │ │ │ │ ├── divides.hpp │ │ │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ │ │ ├── greater.hpp │ │ │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ │ │ ├── less.hpp │ │ │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ │ │ ├── list.hpp │ │ │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ │ │ ├── map.hpp │ │ │ │ │ │ │ ├── minus.hpp │ │ │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ │ │ ├── or.hpp │ │ │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ │ │ ├── plus.hpp │ │ │ │ │ │ │ ├── quote.hpp │ │ │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ │ │ ├── set.hpp │ │ │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ │ │ ├── times.hpp │ │ │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ │ │ ├── vector.hpp │ │ │ │ │ │ │ └── vector_c.hpp │ │ │ │ │ │ ├── msvc70 │ │ │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ │ │ ├── and.hpp │ │ │ │ │ │ │ ├── apply.hpp │ │ │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ │ │ ├── arg.hpp │ │ │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ │ │ ├── bind.hpp │ │ │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ │ │ ├── deque.hpp │ │ │ │ │ │ │ ├── divides.hpp │ │ │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ │ │ ├── greater.hpp │ │ │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ │ │ ├── less.hpp │ │ │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ │ │ ├── list.hpp │ │ │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ │ │ ├── map.hpp │ │ │ │ │ │ │ ├── minus.hpp │ │ │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ │ │ ├── or.hpp │ │ │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ │ │ ├── plus.hpp │ │ │ │ │ │ │ ├── quote.hpp │ │ │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ │ │ ├── set.hpp │ │ │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ │ │ ├── times.hpp │ │ │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ │ │ ├── vector.hpp │ │ │ │ │ │ │ └── vector_c.hpp │ │ │ │ │ │ ├── mwcw │ │ │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ │ │ ├── and.hpp │ │ │ │ │ │ │ ├── apply.hpp │ │ │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ │ │ ├── arg.hpp │ │ │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ │ │ ├── bind.hpp │ │ │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ │ │ ├── deque.hpp │ │ │ │ │ │ │ ├── divides.hpp │ │ │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ │ │ ├── greater.hpp │ │ │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ │ │ ├── less.hpp │ │ │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ │ │ ├── list.hpp │ │ │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ │ │ ├── map.hpp │ │ │ │ │ │ │ ├── minus.hpp │ │ │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ │ │ ├── or.hpp │ │ │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ │ │ ├── plus.hpp │ │ │ │ │ │ │ ├── quote.hpp │ │ │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ │ │ ├── set.hpp │ │ │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ │ │ ├── times.hpp │ │ │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ │ │ ├── vector.hpp │ │ │ │ │ │ │ └── vector_c.hpp │ │ │ │ │ │ ├── no_ctps │ │ │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ │ │ ├── and.hpp │ │ │ │ │ │ │ ├── apply.hpp │ │ │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ │ │ ├── arg.hpp │ │ │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ │ │ ├── bind.hpp │ │ │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ │ │ ├── deque.hpp │ │ │ │ │ │ │ ├── divides.hpp │ │ │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ │ │ ├── greater.hpp │ │ │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ │ │ ├── less.hpp │ │ │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ │ │ ├── list.hpp │ │ │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ │ │ ├── map.hpp │ │ │ │ │ │ │ ├── minus.hpp │ │ │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ │ │ ├── or.hpp │ │ │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ │ │ ├── plus.hpp │ │ │ │ │ │ │ ├── quote.hpp │ │ │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ │ │ ├── set.hpp │ │ │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ │ │ ├── times.hpp │ │ │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ │ │ ├── vector.hpp │ │ │ │ │ │ │ └── vector_c.hpp │ │ │ │ │ │ ├── no_ttp │ │ │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ │ │ ├── and.hpp │ │ │ │ │ │ │ ├── apply.hpp │ │ │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ │ │ ├── arg.hpp │ │ │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ │ │ ├── bind.hpp │ │ │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ │ │ ├── deque.hpp │ │ │ │ │ │ │ ├── divides.hpp │ │ │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ │ │ ├── greater.hpp │ │ │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ │ │ ├── less.hpp │ │ │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ │ │ ├── list.hpp │ │ │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ │ │ ├── map.hpp │ │ │ │ │ │ │ ├── minus.hpp │ │ │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ │ │ ├── or.hpp │ │ │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ │ │ ├── plus.hpp │ │ │ │ │ │ │ ├── quote.hpp │ │ │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ │ │ ├── set.hpp │ │ │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ │ │ ├── times.hpp │ │ │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ │ │ ├── vector.hpp │ │ │ │ │ │ │ └── vector_c.hpp │ │ │ │ │ │ └── plain │ │ │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ │ │ ├── and.hpp │ │ │ │ │ │ │ ├── apply.hpp │ │ │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ │ │ ├── arg.hpp │ │ │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ │ │ ├── bind.hpp │ │ │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ │ │ ├── deque.hpp │ │ │ │ │ │ │ ├── divides.hpp │ │ │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ │ │ ├── greater.hpp │ │ │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ │ │ ├── less.hpp │ │ │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ │ │ ├── list.hpp │ │ │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ │ │ ├── map.hpp │ │ │ │ │ │ │ ├── minus.hpp │ │ │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ │ │ ├── or.hpp │ │ │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ │ │ ├── plus.hpp │ │ │ │ │ │ │ ├── quote.hpp │ │ │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ │ │ ├── set.hpp │ │ │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ │ │ ├── times.hpp │ │ │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ │ │ ├── vector.hpp │ │ │ │ │ │ │ └── vector_c.hpp │ │ │ │ │ ├── preprocessor │ │ │ │ │ │ ├── add.hpp │ │ │ │ │ │ ├── def_params_tail.hpp │ │ │ │ │ │ ├── default_params.hpp │ │ │ │ │ │ ├── enum.hpp │ │ │ │ │ │ ├── ext_params.hpp │ │ │ │ │ │ ├── filter_params.hpp │ │ │ │ │ │ ├── params.hpp │ │ │ │ │ │ ├── partial_spec_params.hpp │ │ │ │ │ │ ├── repeat.hpp │ │ │ │ │ │ ├── sub.hpp │ │ │ │ │ │ └── tuple.hpp │ │ │ │ │ ├── static_cast.hpp │ │ │ │ │ ├── template_arity_fwd.hpp │ │ │ │ │ ├── type_wrapper.hpp │ │ │ │ │ ├── value_wknd.hpp │ │ │ │ │ └── yes_no.hpp │ │ │ │ ├── bool.hpp │ │ │ │ ├── bool_fwd.hpp │ │ │ │ ├── equal_to.hpp │ │ │ │ ├── eval_if.hpp │ │ │ │ ├── has_xxx.hpp │ │ │ │ ├── identity.hpp │ │ │ │ ├── if.hpp │ │ │ │ ├── int.hpp │ │ │ │ ├── int_fwd.hpp │ │ │ │ ├── integral_c.hpp │ │ │ │ ├── integral_c_fwd.hpp │ │ │ │ ├── integral_c_tag.hpp │ │ │ │ ├── lambda_fwd.hpp │ │ │ │ ├── less.hpp │ │ │ │ ├── limits │ │ │ │ │ └── arity.hpp │ │ │ │ ├── logical.hpp │ │ │ │ ├── multiplies.hpp │ │ │ │ ├── not.hpp │ │ │ │ ├── numeric_cast.hpp │ │ │ │ ├── or.hpp │ │ │ │ ├── placeholders.hpp │ │ │ │ ├── tag.hpp │ │ │ │ ├── times.hpp │ │ │ │ ├── void.hpp │ │ │ │ └── void_fwd.hpp │ │ │ ├── noncopyable.hpp │ │ │ ├── numeric │ │ │ │ └── conversion │ │ │ │ │ ├── bounds.hpp │ │ │ │ │ ├── cast.hpp │ │ │ │ │ ├── conversion_traits.hpp │ │ │ │ │ ├── converter.hpp │ │ │ │ │ ├── converter_policies.hpp │ │ │ │ │ ├── detail │ │ │ │ │ ├── bounds.hpp │ │ │ │ │ ├── conversion_traits.hpp │ │ │ │ │ ├── converter.hpp │ │ │ │ │ ├── int_float_mixture.hpp │ │ │ │ │ ├── is_subranged.hpp │ │ │ │ │ ├── meta.hpp │ │ │ │ │ ├── numeric_cast_traits.hpp │ │ │ │ │ ├── old_numeric_cast.hpp │ │ │ │ │ ├── preprocessed │ │ │ │ │ │ ├── numeric_cast_traits_common.hpp │ │ │ │ │ │ └── numeric_cast_traits_long_long.hpp │ │ │ │ │ ├── sign_mixture.hpp │ │ │ │ │ └── udt_builtin_mixture.hpp │ │ │ │ │ ├── int_float_mixture_enum.hpp │ │ │ │ │ ├── numeric_cast_traits.hpp │ │ │ │ │ ├── sign_mixture_enum.hpp │ │ │ │ │ └── udt_builtin_mixture_enum.hpp │ │ │ ├── operators.hpp │ │ │ ├── predef.h │ │ │ ├── predef │ │ │ │ ├── architecture.h │ │ │ │ ├── architecture │ │ │ │ │ ├── alpha.h │ │ │ │ │ ├── arm.h │ │ │ │ │ ├── blackfin.h │ │ │ │ │ ├── convex.h │ │ │ │ │ ├── e2k.h │ │ │ │ │ ├── ia64.h │ │ │ │ │ ├── loongarch.h │ │ │ │ │ ├── m68k.h │ │ │ │ │ ├── mips.h │ │ │ │ │ ├── parisc.h │ │ │ │ │ ├── ppc.h │ │ │ │ │ ├── ptx.h │ │ │ │ │ ├── pyramid.h │ │ │ │ │ ├── riscv.h │ │ │ │ │ ├── rs6k.h │ │ │ │ │ ├── sparc.h │ │ │ │ │ ├── superh.h │ │ │ │ │ ├── sys370.h │ │ │ │ │ ├── sys390.h │ │ │ │ │ ├── x86.h │ │ │ │ │ ├── x86 │ │ │ │ │ │ ├── 32.h │ │ │ │ │ │ └── 64.h │ │ │ │ │ └── z.h │ │ │ │ ├── compiler.h │ │ │ │ ├── compiler │ │ │ │ │ ├── borland.h │ │ │ │ │ ├── clang.h │ │ │ │ │ ├── comeau.h │ │ │ │ │ ├── compaq.h │ │ │ │ │ ├── diab.h │ │ │ │ │ ├── digitalmars.h │ │ │ │ │ ├── dignus.h │ │ │ │ │ ├── edg.h │ │ │ │ │ ├── ekopath.h │ │ │ │ │ ├── gcc.h │ │ │ │ │ ├── gcc_xml.h │ │ │ │ │ ├── greenhills.h │ │ │ │ │ ├── hp_acc.h │ │ │ │ │ ├── iar.h │ │ │ │ │ ├── ibm.h │ │ │ │ │ ├── intel.h │ │ │ │ │ ├── kai.h │ │ │ │ │ ├── llvm.h │ │ │ │ │ ├── metaware.h │ │ │ │ │ ├── metrowerks.h │ │ │ │ │ ├── microtec.h │ │ │ │ │ ├── mpw.h │ │ │ │ │ ├── nvcc.h │ │ │ │ │ ├── palm.h │ │ │ │ │ ├── pgi.h │ │ │ │ │ ├── sgi_mipspro.h │ │ │ │ │ ├── sunpro.h │ │ │ │ │ ├── tendra.h │ │ │ │ │ ├── visualc.h │ │ │ │ │ └── watcom.h │ │ │ │ ├── detail │ │ │ │ │ ├── _cassert.h │ │ │ │ │ ├── _exception.h │ │ │ │ │ ├── comp_detected.h │ │ │ │ │ ├── os_detected.h │ │ │ │ │ ├── platform_detected.h │ │ │ │ │ └── test.h │ │ │ │ ├── hardware.h │ │ │ │ ├── hardware │ │ │ │ │ ├── simd.h │ │ │ │ │ └── simd │ │ │ │ │ │ ├── arm.h │ │ │ │ │ │ ├── arm │ │ │ │ │ │ └── versions.h │ │ │ │ │ │ ├── ppc.h │ │ │ │ │ │ ├── ppc │ │ │ │ │ │ └── versions.h │ │ │ │ │ │ ├── x86.h │ │ │ │ │ │ ├── x86 │ │ │ │ │ │ └── versions.h │ │ │ │ │ │ ├── x86_amd.h │ │ │ │ │ │ └── x86_amd │ │ │ │ │ │ └── versions.h │ │ │ │ ├── language.h │ │ │ │ ├── language │ │ │ │ │ ├── cuda.h │ │ │ │ │ ├── objc.h │ │ │ │ │ ├── stdc.h │ │ │ │ │ └── stdcpp.h │ │ │ │ ├── library.h │ │ │ │ ├── library │ │ │ │ │ ├── c.h │ │ │ │ │ ├── c │ │ │ │ │ │ ├── _prefix.h │ │ │ │ │ │ ├── cloudabi.h │ │ │ │ │ │ ├── gnu.h │ │ │ │ │ │ ├── uc.h │ │ │ │ │ │ ├── vms.h │ │ │ │ │ │ └── zos.h │ │ │ │ │ ├── std.h │ │ │ │ │ └── std │ │ │ │ │ │ ├── _prefix.h │ │ │ │ │ │ ├── cxx.h │ │ │ │ │ │ ├── dinkumware.h │ │ │ │ │ │ ├── libcomo.h │ │ │ │ │ │ ├── modena.h │ │ │ │ │ │ ├── msl.h │ │ │ │ │ │ ├── roguewave.h │ │ │ │ │ │ ├── sgi.h │ │ │ │ │ │ ├── stdcpp3.h │ │ │ │ │ │ ├── stlport.h │ │ │ │ │ │ └── vacpp.h │ │ │ │ ├── make.h │ │ │ │ ├── os.h │ │ │ │ ├── os │ │ │ │ │ ├── aix.h │ │ │ │ │ ├── amigaos.h │ │ │ │ │ ├── beos.h │ │ │ │ │ ├── bsd.h │ │ │ │ │ ├── bsd │ │ │ │ │ │ ├── bsdi.h │ │ │ │ │ │ ├── dragonfly.h │ │ │ │ │ │ ├── free.h │ │ │ │ │ │ ├── net.h │ │ │ │ │ │ └── open.h │ │ │ │ │ ├── cygwin.h │ │ │ │ │ ├── haiku.h │ │ │ │ │ ├── hpux.h │ │ │ │ │ ├── ios.h │ │ │ │ │ ├── irix.h │ │ │ │ │ ├── linux.h │ │ │ │ │ ├── macos.h │ │ │ │ │ ├── os400.h │ │ │ │ │ ├── qnxnto.h │ │ │ │ │ ├── solaris.h │ │ │ │ │ ├── unix.h │ │ │ │ │ ├── vms.h │ │ │ │ │ └── windows.h │ │ │ │ ├── other.h │ │ │ │ ├── other │ │ │ │ │ ├── endian.h │ │ │ │ │ ├── wordsize.h │ │ │ │ │ └── workaround.h │ │ │ │ ├── platform.h │ │ │ │ ├── platform │ │ │ │ │ ├── android.h │ │ │ │ │ ├── cloudabi.h │ │ │ │ │ ├── ios.h │ │ │ │ │ ├── mingw.h │ │ │ │ │ ├── mingw32.h │ │ │ │ │ ├── mingw64.h │ │ │ │ │ ├── windows_desktop.h │ │ │ │ │ ├── windows_phone.h │ │ │ │ │ ├── windows_runtime.h │ │ │ │ │ ├── windows_server.h │ │ │ │ │ ├── windows_store.h │ │ │ │ │ ├── windows_system.h │ │ │ │ │ └── windows_uwp.h │ │ │ │ ├── version.h │ │ │ │ └── version_number.h │ │ │ ├── preprocessor.hpp │ │ │ ├── preprocessor │ │ │ │ ├── arithmetic.hpp │ │ │ │ ├── arithmetic │ │ │ │ │ ├── add.hpp │ │ │ │ │ ├── dec.hpp │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── div_base.hpp │ │ │ │ │ │ ├── is_1_number.hpp │ │ │ │ │ │ ├── is_maximum_number.hpp │ │ │ │ │ │ ├── is_minimum_number.hpp │ │ │ │ │ │ └── maximum_number.hpp │ │ │ │ │ ├── div.hpp │ │ │ │ │ ├── inc.hpp │ │ │ │ │ ├── limits │ │ │ │ │ │ ├── dec_1024.hpp │ │ │ │ │ │ ├── dec_256.hpp │ │ │ │ │ │ ├── dec_512.hpp │ │ │ │ │ │ ├── inc_1024.hpp │ │ │ │ │ │ ├── inc_256.hpp │ │ │ │ │ │ └── inc_512.hpp │ │ │ │ │ ├── mod.hpp │ │ │ │ │ ├── mul.hpp │ │ │ │ │ └── sub.hpp │ │ │ │ ├── array.hpp │ │ │ │ ├── array │ │ │ │ │ ├── data.hpp │ │ │ │ │ ├── detail │ │ │ │ │ │ └── get_data.hpp │ │ │ │ │ ├── elem.hpp │ │ │ │ │ ├── enum.hpp │ │ │ │ │ ├── insert.hpp │ │ │ │ │ ├── pop_back.hpp │ │ │ │ │ ├── pop_front.hpp │ │ │ │ │ ├── push_back.hpp │ │ │ │ │ ├── push_front.hpp │ │ │ │ │ ├── remove.hpp │ │ │ │ │ ├── replace.hpp │ │ │ │ │ ├── reverse.hpp │ │ │ │ │ ├── size.hpp │ │ │ │ │ ├── to_list.hpp │ │ │ │ │ ├── to_seq.hpp │ │ │ │ │ └── to_tuple.hpp │ │ │ │ ├── cat.hpp │ │ │ │ ├── comma_if.hpp │ │ │ │ ├── comparison.hpp │ │ │ │ ├── comparison │ │ │ │ │ ├── equal.hpp │ │ │ │ │ ├── greater.hpp │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ ├── less.hpp │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ ├── limits │ │ │ │ │ │ ├── not_equal_1024.hpp │ │ │ │ │ │ ├── not_equal_256.hpp │ │ │ │ │ │ └── not_equal_512.hpp │ │ │ │ │ └── not_equal.hpp │ │ │ │ ├── config │ │ │ │ │ ├── config.hpp │ │ │ │ │ └── limits.hpp │ │ │ │ ├── control.hpp │ │ │ │ ├── control │ │ │ │ │ ├── deduce_d.hpp │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── dmc │ │ │ │ │ │ │ └── while.hpp │ │ │ │ │ │ ├── edg │ │ │ │ │ │ │ ├── limits │ │ │ │ │ │ │ │ ├── while_1024.hpp │ │ │ │ │ │ │ │ ├── while_256.hpp │ │ │ │ │ │ │ │ └── while_512.hpp │ │ │ │ │ │ │ └── while.hpp │ │ │ │ │ │ ├── limits │ │ │ │ │ │ │ ├── while_1024.hpp │ │ │ │ │ │ │ ├── while_256.hpp │ │ │ │ │ │ │ └── while_512.hpp │ │ │ │ │ │ ├── msvc │ │ │ │ │ │ │ └── while.hpp │ │ │ │ │ │ └── while.hpp │ │ │ │ │ ├── expr_if.hpp │ │ │ │ │ ├── expr_iif.hpp │ │ │ │ │ ├── if.hpp │ │ │ │ │ ├── iif.hpp │ │ │ │ │ ├── limits │ │ │ │ │ │ ├── while_1024.hpp │ │ │ │ │ │ ├── while_256.hpp │ │ │ │ │ │ └── while_512.hpp │ │ │ │ │ └── while.hpp │ │ │ │ ├── debug.hpp │ │ │ │ ├── debug │ │ │ │ │ ├── assert.hpp │ │ │ │ │ ├── error.hpp │ │ │ │ │ └── line.hpp │ │ │ │ ├── dec.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── auto_rec.hpp │ │ │ │ │ ├── check.hpp │ │ │ │ │ ├── dmc │ │ │ │ │ │ └── auto_rec.hpp │ │ │ │ │ ├── is_binary.hpp │ │ │ │ │ ├── is_unary.hpp │ │ │ │ │ └── limits │ │ │ │ │ │ ├── auto_rec_1024.hpp │ │ │ │ │ │ ├── auto_rec_256.hpp │ │ │ │ │ │ └── auto_rec_512.hpp │ │ │ │ ├── empty.hpp │ │ │ │ ├── enum.hpp │ │ │ │ ├── enum_params.hpp │ │ │ │ ├── facilities.hpp │ │ │ │ ├── facilities │ │ │ │ │ ├── apply.hpp │ │ │ │ │ ├── check_empty.hpp │ │ │ │ │ ├── detail │ │ │ │ │ │ └── is_empty.hpp │ │ │ │ │ ├── empty.hpp │ │ │ │ │ ├── expand.hpp │ │ │ │ │ ├── identity.hpp │ │ │ │ │ ├── intercept.hpp │ │ │ │ │ ├── is_1.hpp │ │ │ │ │ ├── is_empty.hpp │ │ │ │ │ ├── is_empty_variadic.hpp │ │ │ │ │ ├── limits │ │ │ │ │ │ ├── intercept_1024.hpp │ │ │ │ │ │ ├── intercept_256.hpp │ │ │ │ │ │ └── intercept_512.hpp │ │ │ │ │ ├── overload.hpp │ │ │ │ │ └── va_opt.hpp │ │ │ │ ├── identity.hpp │ │ │ │ ├── inc.hpp │ │ │ │ ├── iterate.hpp │ │ │ │ ├── iteration.hpp │ │ │ │ ├── iteration │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── bounds │ │ │ │ │ │ │ ├── lower1.hpp │ │ │ │ │ │ │ ├── lower2.hpp │ │ │ │ │ │ │ ├── lower3.hpp │ │ │ │ │ │ │ ├── lower4.hpp │ │ │ │ │ │ │ ├── lower5.hpp │ │ │ │ │ │ │ ├── upper1.hpp │ │ │ │ │ │ │ ├── upper2.hpp │ │ │ │ │ │ │ ├── upper3.hpp │ │ │ │ │ │ │ ├── upper4.hpp │ │ │ │ │ │ │ └── upper5.hpp │ │ │ │ │ │ ├── finish.hpp │ │ │ │ │ │ ├── iter │ │ │ │ │ │ │ ├── forward1.hpp │ │ │ │ │ │ │ ├── forward2.hpp │ │ │ │ │ │ │ ├── forward3.hpp │ │ │ │ │ │ │ ├── forward4.hpp │ │ │ │ │ │ │ ├── forward5.hpp │ │ │ │ │ │ │ ├── limits │ │ │ │ │ │ │ │ ├── forward1_1024.hpp │ │ │ │ │ │ │ │ ├── forward1_256.hpp │ │ │ │ │ │ │ │ ├── forward1_512.hpp │ │ │ │ │ │ │ │ ├── forward2_1024.hpp │ │ │ │ │ │ │ │ ├── forward2_256.hpp │ │ │ │ │ │ │ │ ├── forward2_512.hpp │ │ │ │ │ │ │ │ ├── forward3_1024.hpp │ │ │ │ │ │ │ │ ├── forward3_256.hpp │ │ │ │ │ │ │ │ ├── forward3_512.hpp │ │ │ │ │ │ │ │ ├── forward4_1024.hpp │ │ │ │ │ │ │ │ ├── forward4_256.hpp │ │ │ │ │ │ │ │ ├── forward4_512.hpp │ │ │ │ │ │ │ │ ├── forward5_1024.hpp │ │ │ │ │ │ │ │ ├── forward5_256.hpp │ │ │ │ │ │ │ │ ├── forward5_512.hpp │ │ │ │ │ │ │ │ ├── reverse1_1024.hpp │ │ │ │ │ │ │ │ ├── reverse1_256.hpp │ │ │ │ │ │ │ │ ├── reverse1_512.hpp │ │ │ │ │ │ │ │ ├── reverse2_1024.hpp │ │ │ │ │ │ │ │ ├── reverse2_256.hpp │ │ │ │ │ │ │ │ ├── reverse2_512.hpp │ │ │ │ │ │ │ │ ├── reverse3_1024.hpp │ │ │ │ │ │ │ │ ├── reverse3_256.hpp │ │ │ │ │ │ │ │ ├── reverse3_512.hpp │ │ │ │ │ │ │ │ ├── reverse4_1024.hpp │ │ │ │ │ │ │ │ ├── reverse4_256.hpp │ │ │ │ │ │ │ │ ├── reverse4_512.hpp │ │ │ │ │ │ │ │ ├── reverse5_1024.hpp │ │ │ │ │ │ │ │ ├── reverse5_256.hpp │ │ │ │ │ │ │ │ └── reverse5_512.hpp │ │ │ │ │ │ │ ├── reverse1.hpp │ │ │ │ │ │ │ ├── reverse2.hpp │ │ │ │ │ │ │ ├── reverse3.hpp │ │ │ │ │ │ │ ├── reverse4.hpp │ │ │ │ │ │ │ └── reverse5.hpp │ │ │ │ │ │ ├── limits │ │ │ │ │ │ │ ├── local_1024.hpp │ │ │ │ │ │ │ ├── local_256.hpp │ │ │ │ │ │ │ ├── local_512.hpp │ │ │ │ │ │ │ ├── rlocal_1024.hpp │ │ │ │ │ │ │ ├── rlocal_256.hpp │ │ │ │ │ │ │ └── rlocal_512.hpp │ │ │ │ │ │ ├── local.hpp │ │ │ │ │ │ ├── rlocal.hpp │ │ │ │ │ │ ├── self.hpp │ │ │ │ │ │ └── start.hpp │ │ │ │ │ ├── iterate.hpp │ │ │ │ │ ├── local.hpp │ │ │ │ │ └── self.hpp │ │ │ │ ├── library.hpp │ │ │ │ ├── list.hpp │ │ │ │ ├── list │ │ │ │ │ ├── adt.hpp │ │ │ │ │ ├── append.hpp │ │ │ │ │ ├── at.hpp │ │ │ │ │ ├── cat.hpp │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── dmc │ │ │ │ │ │ │ └── fold_left.hpp │ │ │ │ │ │ ├── edg │ │ │ │ │ │ │ ├── fold_left.hpp │ │ │ │ │ │ │ ├── fold_right.hpp │ │ │ │ │ │ │ └── limits │ │ │ │ │ │ │ │ ├── fold_left_1024.hpp │ │ │ │ │ │ │ │ ├── fold_left_256.hpp │ │ │ │ │ │ │ │ ├── fold_left_512.hpp │ │ │ │ │ │ │ │ ├── fold_right_1024.hpp │ │ │ │ │ │ │ │ ├── fold_right_256.hpp │ │ │ │ │ │ │ │ └── fold_right_512.hpp │ │ │ │ │ │ ├── fold_left.hpp │ │ │ │ │ │ ├── fold_right.hpp │ │ │ │ │ │ └── limits │ │ │ │ │ │ │ ├── fold_left_1024.hpp │ │ │ │ │ │ │ ├── fold_left_256.hpp │ │ │ │ │ │ │ ├── fold_left_512.hpp │ │ │ │ │ │ │ ├── fold_right_1024.hpp │ │ │ │ │ │ │ ├── fold_right_256.hpp │ │ │ │ │ │ │ └── fold_right_512.hpp │ │ │ │ │ ├── enum.hpp │ │ │ │ │ ├── filter.hpp │ │ │ │ │ ├── first_n.hpp │ │ │ │ │ ├── fold_left.hpp │ │ │ │ │ ├── fold_right.hpp │ │ │ │ │ ├── for_each.hpp │ │ │ │ │ ├── for_each_i.hpp │ │ │ │ │ ├── for_each_product.hpp │ │ │ │ │ ├── limits │ │ │ │ │ │ ├── fold_left_1024.hpp │ │ │ │ │ │ ├── fold_left_256.hpp │ │ │ │ │ │ └── fold_left_512.hpp │ │ │ │ │ ├── rest_n.hpp │ │ │ │ │ ├── reverse.hpp │ │ │ │ │ ├── size.hpp │ │ │ │ │ ├── to_array.hpp │ │ │ │ │ ├── to_seq.hpp │ │ │ │ │ ├── to_tuple.hpp │ │ │ │ │ └── transform.hpp │ │ │ │ ├── logical.hpp │ │ │ │ ├── logical │ │ │ │ │ ├── and.hpp │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ ├── bitnor.hpp │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ ├── bool.hpp │ │ │ │ │ ├── compl.hpp │ │ │ │ │ ├── limits │ │ │ │ │ │ ├── bool_1024.hpp │ │ │ │ │ │ ├── bool_256.hpp │ │ │ │ │ │ └── bool_512.hpp │ │ │ │ │ ├── nor.hpp │ │ │ │ │ ├── not.hpp │ │ │ │ │ ├── or.hpp │ │ │ │ │ └── xor.hpp │ │ │ │ ├── punctuation.hpp │ │ │ │ ├── punctuation │ │ │ │ │ ├── comma.hpp │ │ │ │ │ ├── comma_if.hpp │ │ │ │ │ ├── detail │ │ │ │ │ │ └── is_begin_parens.hpp │ │ │ │ │ ├── is_begin_parens.hpp │ │ │ │ │ ├── paren.hpp │ │ │ │ │ ├── paren_if.hpp │ │ │ │ │ └── remove_parens.hpp │ │ │ │ ├── repeat.hpp │ │ │ │ ├── repetition.hpp │ │ │ │ ├── repetition │ │ │ │ │ ├── deduce_r.hpp │ │ │ │ │ ├── deduce_z.hpp │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── dmc │ │ │ │ │ │ │ └── for.hpp │ │ │ │ │ │ ├── edg │ │ │ │ │ │ │ ├── for.hpp │ │ │ │ │ │ │ └── limits │ │ │ │ │ │ │ │ ├── for_1024.hpp │ │ │ │ │ │ │ │ ├── for_256.hpp │ │ │ │ │ │ │ │ └── for_512.hpp │ │ │ │ │ │ ├── for.hpp │ │ │ │ │ │ ├── limits │ │ │ │ │ │ │ ├── for_1024.hpp │ │ │ │ │ │ │ ├── for_256.hpp │ │ │ │ │ │ │ └── for_512.hpp │ │ │ │ │ │ └── msvc │ │ │ │ │ │ │ └── for.hpp │ │ │ │ │ ├── enum.hpp │ │ │ │ │ ├── enum_binary_params.hpp │ │ │ │ │ ├── enum_params.hpp │ │ │ │ │ ├── enum_params_with_a_default.hpp │ │ │ │ │ ├── enum_params_with_defaults.hpp │ │ │ │ │ ├── enum_shifted.hpp │ │ │ │ │ ├── enum_shifted_binary_params.hpp │ │ │ │ │ ├── enum_shifted_params.hpp │ │ │ │ │ ├── enum_trailing.hpp │ │ │ │ │ ├── enum_trailing_binary_params.hpp │ │ │ │ │ ├── enum_trailing_params.hpp │ │ │ │ │ ├── for.hpp │ │ │ │ │ ├── limits │ │ │ │ │ │ ├── for_1024.hpp │ │ │ │ │ │ ├── for_256.hpp │ │ │ │ │ │ ├── for_512.hpp │ │ │ │ │ │ ├── repeat_1024.hpp │ │ │ │ │ │ ├── repeat_256.hpp │ │ │ │ │ │ └── repeat_512.hpp │ │ │ │ │ ├── repeat.hpp │ │ │ │ │ └── repeat_from_to.hpp │ │ │ │ ├── selection.hpp │ │ │ │ ├── selection │ │ │ │ │ ├── max.hpp │ │ │ │ │ └── min.hpp │ │ │ │ ├── seq.hpp │ │ │ │ ├── seq │ │ │ │ │ ├── cat.hpp │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── binary_transform.hpp │ │ │ │ │ │ ├── is_empty.hpp │ │ │ │ │ │ ├── limits │ │ │ │ │ │ │ ├── split_1024.hpp │ │ │ │ │ │ │ ├── split_256.hpp │ │ │ │ │ │ │ └── split_512.hpp │ │ │ │ │ │ ├── split.hpp │ │ │ │ │ │ └── to_list_msvc.hpp │ │ │ │ │ ├── elem.hpp │ │ │ │ │ ├── enum.hpp │ │ │ │ │ ├── filter.hpp │ │ │ │ │ ├── first_n.hpp │ │ │ │ │ ├── fold_left.hpp │ │ │ │ │ ├── fold_right.hpp │ │ │ │ │ ├── for_each.hpp │ │ │ │ │ ├── for_each_i.hpp │ │ │ │ │ ├── for_each_product.hpp │ │ │ │ │ ├── insert.hpp │ │ │ │ │ ├── limits │ │ │ │ │ │ ├── elem_1024.hpp │ │ │ │ │ │ ├── elem_256.hpp │ │ │ │ │ │ ├── elem_512.hpp │ │ │ │ │ │ ├── enum_1024.hpp │ │ │ │ │ │ ├── enum_256.hpp │ │ │ │ │ │ ├── enum_512.hpp │ │ │ │ │ │ ├── fold_left_1024.hpp │ │ │ │ │ │ ├── fold_left_256.hpp │ │ │ │ │ │ ├── fold_left_512.hpp │ │ │ │ │ │ ├── fold_right_1024.hpp │ │ │ │ │ │ ├── fold_right_256.hpp │ │ │ │ │ │ ├── fold_right_512.hpp │ │ │ │ │ │ ├── size_1024.hpp │ │ │ │ │ │ ├── size_256.hpp │ │ │ │ │ │ └── size_512.hpp │ │ │ │ │ ├── pop_back.hpp │ │ │ │ │ ├── pop_front.hpp │ │ │ │ │ ├── push_back.hpp │ │ │ │ │ ├── push_front.hpp │ │ │ │ │ ├── remove.hpp │ │ │ │ │ ├── replace.hpp │ │ │ │ │ ├── rest_n.hpp │ │ │ │ │ ├── reverse.hpp │ │ │ │ │ ├── seq.hpp │ │ │ │ │ ├── size.hpp │ │ │ │ │ ├── subseq.hpp │ │ │ │ │ ├── to_array.hpp │ │ │ │ │ ├── to_list.hpp │ │ │ │ │ ├── to_tuple.hpp │ │ │ │ │ ├── transform.hpp │ │ │ │ │ └── variadic_seq_to_seq.hpp │ │ │ │ ├── slot.hpp │ │ │ │ ├── slot │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── counter.hpp │ │ │ │ │ │ ├── def.hpp │ │ │ │ │ │ ├── shared.hpp │ │ │ │ │ │ ├── slot1.hpp │ │ │ │ │ │ ├── slot2.hpp │ │ │ │ │ │ ├── slot3.hpp │ │ │ │ │ │ ├── slot4.hpp │ │ │ │ │ │ └── slot5.hpp │ │ │ │ │ └── slot.hpp │ │ │ │ ├── stringize.hpp │ │ │ │ ├── tuple.hpp │ │ │ │ ├── tuple │ │ │ │ │ ├── detail │ │ │ │ │ │ └── is_single_return.hpp │ │ │ │ │ ├── eat.hpp │ │ │ │ │ ├── elem.hpp │ │ │ │ │ ├── enum.hpp │ │ │ │ │ ├── insert.hpp │ │ │ │ │ ├── limits │ │ │ │ │ │ ├── reverse_128.hpp │ │ │ │ │ │ ├── reverse_256.hpp │ │ │ │ │ │ ├── reverse_64.hpp │ │ │ │ │ │ ├── to_list_128.hpp │ │ │ │ │ │ ├── to_list_256.hpp │ │ │ │ │ │ ├── to_list_64.hpp │ │ │ │ │ │ ├── to_seq_128.hpp │ │ │ │ │ │ ├── to_seq_256.hpp │ │ │ │ │ │ └── to_seq_64.hpp │ │ │ │ │ ├── pop_back.hpp │ │ │ │ │ ├── pop_front.hpp │ │ │ │ │ ├── push_back.hpp │ │ │ │ │ ├── push_front.hpp │ │ │ │ │ ├── rem.hpp │ │ │ │ │ ├── remove.hpp │ │ │ │ │ ├── replace.hpp │ │ │ │ │ ├── reverse.hpp │ │ │ │ │ ├── size.hpp │ │ │ │ │ ├── to_array.hpp │ │ │ │ │ ├── to_list.hpp │ │ │ │ │ └── to_seq.hpp │ │ │ │ ├── variadic.hpp │ │ │ │ ├── variadic │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── has_opt.hpp │ │ │ │ │ │ └── is_single_return.hpp │ │ │ │ │ ├── elem.hpp │ │ │ │ │ ├── has_opt.hpp │ │ │ │ │ ├── limits │ │ │ │ │ │ ├── elem_128.hpp │ │ │ │ │ │ ├── elem_256.hpp │ │ │ │ │ │ ├── elem_64.hpp │ │ │ │ │ │ ├── size_128.hpp │ │ │ │ │ │ ├── size_256.hpp │ │ │ │ │ │ └── size_64.hpp │ │ │ │ │ ├── size.hpp │ │ │ │ │ ├── to_array.hpp │ │ │ │ │ ├── to_list.hpp │ │ │ │ │ ├── to_seq.hpp │ │ │ │ │ └── to_tuple.hpp │ │ │ │ └── wstringize.hpp │ │ │ ├── random.hpp │ │ │ ├── random │ │ │ │ ├── additive_combine.hpp │ │ │ │ ├── bernoulli_distribution.hpp │ │ │ │ ├── beta_distribution.hpp │ │ │ │ ├── binomial_distribution.hpp │ │ │ │ ├── cauchy_distribution.hpp │ │ │ │ ├── chi_squared_distribution.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── auto_link.hpp │ │ │ │ │ ├── config.hpp │ │ │ │ │ ├── const_mod.hpp │ │ │ │ │ ├── disable_warnings.hpp │ │ │ │ │ ├── enable_warnings.hpp │ │ │ │ │ ├── generator_bits.hpp │ │ │ │ │ ├── generator_seed_seq.hpp │ │ │ │ │ ├── int_float_pair.hpp │ │ │ │ │ ├── integer_log2.hpp │ │ │ │ │ ├── large_arithmetic.hpp │ │ │ │ │ ├── mixmax_skip_N17.ipp │ │ │ │ │ ├── operators.hpp │ │ │ │ │ ├── polynomial.hpp │ │ │ │ │ ├── ptr_helper.hpp │ │ │ │ │ ├── seed.hpp │ │ │ │ │ ├── seed_impl.hpp │ │ │ │ │ ├── signed_unsigned_tools.hpp │ │ │ │ │ ├── uniform_int_float.hpp │ │ │ │ │ └── vector_io.hpp │ │ │ │ ├── discard_block.hpp │ │ │ │ ├── discrete_distribution.hpp │ │ │ │ ├── exponential_distribution.hpp │ │ │ │ ├── extreme_value_distribution.hpp │ │ │ │ ├── fisher_f_distribution.hpp │ │ │ │ ├── gamma_distribution.hpp │ │ │ │ ├── generate_canonical.hpp │ │ │ │ ├── geometric_distribution.hpp │ │ │ │ ├── hyperexponential_distribution.hpp │ │ │ │ ├── independent_bits.hpp │ │ │ │ ├── inversive_congruential.hpp │ │ │ │ ├── lagged_fibonacci.hpp │ │ │ │ ├── laplace_distribution.hpp │ │ │ │ ├── linear_congruential.hpp │ │ │ │ ├── linear_feedback_shift.hpp │ │ │ │ ├── lognormal_distribution.hpp │ │ │ │ ├── mersenne_twister.hpp │ │ │ │ ├── mixmax.hpp │ │ │ │ ├── negative_binomial_distribution.hpp │ │ │ │ ├── non_central_chi_squared_distribution.hpp │ │ │ │ ├── normal_distribution.hpp │ │ │ │ ├── piecewise_constant_distribution.hpp │ │ │ │ ├── piecewise_linear_distribution.hpp │ │ │ │ ├── poisson_distribution.hpp │ │ │ │ ├── random_device.hpp │ │ │ │ ├── random_number_generator.hpp │ │ │ │ ├── ranlux.hpp │ │ │ │ ├── seed_seq.hpp │ │ │ │ ├── shuffle_order.hpp │ │ │ │ ├── shuffle_output.hpp │ │ │ │ ├── student_t_distribution.hpp │ │ │ │ ├── subtract_with_carry.hpp │ │ │ │ ├── taus88.hpp │ │ │ │ ├── traits.hpp │ │ │ │ ├── triangle_distribution.hpp │ │ │ │ ├── uniform_01.hpp │ │ │ │ ├── uniform_int.hpp │ │ │ │ ├── uniform_int_distribution.hpp │ │ │ │ ├── uniform_on_sphere.hpp │ │ │ │ ├── uniform_real.hpp │ │ │ │ ├── uniform_real_distribution.hpp │ │ │ │ ├── uniform_smallint.hpp │ │ │ │ ├── variate_generator.hpp │ │ │ │ ├── weibull_distribution.hpp │ │ │ │ └── xor_combine.hpp │ │ │ ├── range │ │ │ │ ├── begin.hpp │ │ │ │ ├── concepts.hpp │ │ │ │ ├── config.hpp │ │ │ │ ├── const_iterator.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── common.hpp │ │ │ │ │ ├── extract_optional_type.hpp │ │ │ │ │ ├── has_member_size.hpp │ │ │ │ │ ├── implementation_help.hpp │ │ │ │ │ ├── misc_concept.hpp │ │ │ │ │ ├── msvc_has_iterator_workaround.hpp │ │ │ │ │ └── sfinae.hpp │ │ │ │ ├── difference_type.hpp │ │ │ │ ├── end.hpp │ │ │ │ ├── has_range_iterator.hpp │ │ │ │ ├── iterator.hpp │ │ │ │ ├── mutable_iterator.hpp │ │ │ │ ├── range_fwd.hpp │ │ │ │ ├── size.hpp │ │ │ │ ├── size_type.hpp │ │ │ │ └── value_type.hpp │ │ │ ├── ratio │ │ │ │ ├── config.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── mpl │ │ │ │ │ │ ├── abs.hpp │ │ │ │ │ │ ├── gcd.hpp │ │ │ │ │ │ ├── lcm.hpp │ │ │ │ │ │ └── sign.hpp │ │ │ │ │ └── overflow_helpers.hpp │ │ │ │ ├── mpl │ │ │ │ │ └── rational_c_tag.hpp │ │ │ │ ├── ratio.hpp │ │ │ │ └── ratio_fwd.hpp │ │ │ ├── rational.hpp │ │ │ ├── ref.hpp │ │ │ ├── regex.hpp │ │ │ ├── regex │ │ │ │ ├── config.hpp │ │ │ │ ├── config │ │ │ │ │ ├── borland.hpp │ │ │ │ │ └── cwchar.hpp │ │ │ │ ├── pattern_except.hpp │ │ │ │ ├── pending │ │ │ │ │ └── static_mutex.hpp │ │ │ │ ├── regex_traits.hpp │ │ │ │ ├── user.hpp │ │ │ │ ├── v4 │ │ │ │ │ ├── basic_regex.hpp │ │ │ │ │ ├── basic_regex_creator.hpp │ │ │ │ │ ├── basic_regex_parser.hpp │ │ │ │ │ ├── c_regex_traits.hpp │ │ │ │ │ ├── char_regex_traits.hpp │ │ │ │ │ ├── cpp_regex_traits.hpp │ │ │ │ │ ├── cregex.hpp │ │ │ │ │ ├── error_type.hpp │ │ │ │ │ ├── indexed_bit_flag.hpp │ │ │ │ │ ├── iterator_category.hpp │ │ │ │ │ ├── iterator_traits.hpp │ │ │ │ │ ├── match_flags.hpp │ │ │ │ │ ├── match_results.hpp │ │ │ │ │ ├── mem_block_cache.hpp │ │ │ │ │ ├── object_cache.hpp │ │ │ │ │ ├── pattern_except.hpp │ │ │ │ │ ├── perl_matcher.hpp │ │ │ │ │ ├── perl_matcher_common.hpp │ │ │ │ │ ├── perl_matcher_non_recursive.hpp │ │ │ │ │ ├── perl_matcher_recursive.hpp │ │ │ │ │ ├── primary_transform.hpp │ │ │ │ │ ├── protected_call.hpp │ │ │ │ │ ├── regbase.hpp │ │ │ │ │ ├── regex.hpp │ │ │ │ │ ├── regex_format.hpp │ │ │ │ │ ├── regex_fwd.hpp │ │ │ │ │ ├── regex_grep.hpp │ │ │ │ │ ├── regex_iterator.hpp │ │ │ │ │ ├── regex_match.hpp │ │ │ │ │ ├── regex_merge.hpp │ │ │ │ │ ├── regex_raw_buffer.hpp │ │ │ │ │ ├── regex_replace.hpp │ │ │ │ │ ├── regex_search.hpp │ │ │ │ │ ├── regex_split.hpp │ │ │ │ │ ├── regex_token_iterator.hpp │ │ │ │ │ ├── regex_traits.hpp │ │ │ │ │ ├── regex_traits_defaults.hpp │ │ │ │ │ ├── regex_workaround.hpp │ │ │ │ │ ├── states.hpp │ │ │ │ │ ├── sub_match.hpp │ │ │ │ │ ├── syntax_type.hpp │ │ │ │ │ └── w32_regex_traits.hpp │ │ │ │ └── v5 │ │ │ │ │ ├── basic_regex.hpp │ │ │ │ │ ├── basic_regex_creator.hpp │ │ │ │ │ ├── basic_regex_parser.hpp │ │ │ │ │ ├── c_regex_traits.hpp │ │ │ │ │ ├── char_regex_traits.hpp │ │ │ │ │ ├── cpp_regex_traits.hpp │ │ │ │ │ ├── cregex.hpp │ │ │ │ │ ├── error_type.hpp │ │ │ │ │ ├── iterator_category.hpp │ │ │ │ │ ├── match_flags.hpp │ │ │ │ │ ├── match_results.hpp │ │ │ │ │ ├── mem_block_cache.hpp │ │ │ │ │ ├── object_cache.hpp │ │ │ │ │ ├── pattern_except.hpp │ │ │ │ │ ├── perl_matcher.hpp │ │ │ │ │ ├── perl_matcher_common.hpp │ │ │ │ │ ├── perl_matcher_non_recursive.hpp │ │ │ │ │ ├── primary_transform.hpp │ │ │ │ │ ├── regbase.hpp │ │ │ │ │ ├── regex.hpp │ │ │ │ │ ├── regex_format.hpp │ │ │ │ │ ├── regex_fwd.hpp │ │ │ │ │ ├── regex_grep.hpp │ │ │ │ │ ├── regex_iterator.hpp │ │ │ │ │ ├── regex_match.hpp │ │ │ │ │ ├── regex_merge.hpp │ │ │ │ │ ├── regex_raw_buffer.hpp │ │ │ │ │ ├── regex_replace.hpp │ │ │ │ │ ├── regex_search.hpp │ │ │ │ │ ├── regex_split.hpp │ │ │ │ │ ├── regex_token_iterator.hpp │ │ │ │ │ ├── regex_traits.hpp │ │ │ │ │ ├── regex_traits_defaults.hpp │ │ │ │ │ ├── regex_workaround.hpp │ │ │ │ │ ├── states.hpp │ │ │ │ │ ├── sub_match.hpp │ │ │ │ │ ├── syntax_type.hpp │ │ │ │ │ └── w32_regex_traits.hpp │ │ │ ├── regex_fwd.hpp │ │ │ ├── scoped_array.hpp │ │ │ ├── scoped_ptr.hpp │ │ │ ├── shared_ptr.hpp │ │ │ ├── smart_ptr │ │ │ │ ├── allocate_shared_array.hpp │ │ │ │ ├── bad_weak_ptr.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── atomic_count.hpp │ │ │ │ │ ├── atomic_count_gcc.hpp │ │ │ │ │ ├── atomic_count_gcc_atomic.hpp │ │ │ │ │ ├── atomic_count_gcc_x86.hpp │ │ │ │ │ ├── atomic_count_nt.hpp │ │ │ │ │ ├── atomic_count_pt.hpp │ │ │ │ │ ├── atomic_count_spin.hpp │ │ │ │ │ ├── atomic_count_std_atomic.hpp │ │ │ │ │ ├── atomic_count_sync.hpp │ │ │ │ │ ├── atomic_count_win32.hpp │ │ │ │ │ ├── lightweight_mutex.hpp │ │ │ │ │ ├── local_counted_base.hpp │ │ │ │ │ ├── local_sp_deleter.hpp │ │ │ │ │ ├── lwm_pthreads.hpp │ │ │ │ │ ├── lwm_std_mutex.hpp │ │ │ │ │ ├── lwm_win32_cs.hpp │ │ │ │ │ ├── operator_bool.hpp │ │ │ │ │ ├── quick_allocator.hpp │ │ │ │ │ ├── shared_count.hpp │ │ │ │ │ ├── sp_convertible.hpp │ │ │ │ │ ├── sp_counted_base.hpp │ │ │ │ │ ├── sp_counted_base_acc_ia64.hpp │ │ │ │ │ ├── sp_counted_base_aix.hpp │ │ │ │ │ ├── sp_counted_base_cw_ppc.hpp │ │ │ │ │ ├── sp_counted_base_gcc_atomic.hpp │ │ │ │ │ ├── sp_counted_base_gcc_ia64.hpp │ │ │ │ │ ├── sp_counted_base_gcc_mips.hpp │ │ │ │ │ ├── sp_counted_base_gcc_ppc.hpp │ │ │ │ │ ├── sp_counted_base_gcc_sparc.hpp │ │ │ │ │ ├── sp_counted_base_gcc_x86.hpp │ │ │ │ │ ├── sp_counted_base_nt.hpp │ │ │ │ │ ├── sp_counted_base_pt.hpp │ │ │ │ │ ├── sp_counted_base_snc_ps3.hpp │ │ │ │ │ ├── sp_counted_base_spin.hpp │ │ │ │ │ ├── sp_counted_base_std_atomic.hpp │ │ │ │ │ ├── sp_counted_base_sync.hpp │ │ │ │ │ ├── sp_counted_base_vacpp_ppc.hpp │ │ │ │ │ ├── sp_counted_base_w32.hpp │ │ │ │ │ ├── sp_counted_impl.hpp │ │ │ │ │ ├── sp_disable_deprecated.hpp │ │ │ │ │ ├── sp_forward.hpp │ │ │ │ │ ├── sp_has_gcc_intrinsics.hpp │ │ │ │ │ ├── sp_has_sync_intrinsics.hpp │ │ │ │ │ ├── sp_interlocked.hpp │ │ │ │ │ ├── sp_noexcept.hpp │ │ │ │ │ ├── sp_nullptr_t.hpp │ │ │ │ │ ├── sp_obsolete.hpp │ │ │ │ │ ├── sp_thread_pause.hpp │ │ │ │ │ ├── sp_thread_sleep.hpp │ │ │ │ │ ├── sp_thread_yield.hpp │ │ │ │ │ ├── sp_typeinfo_.hpp │ │ │ │ │ ├── sp_win32_sleep.hpp │ │ │ │ │ ├── spinlock.hpp │ │ │ │ │ ├── spinlock_gcc_arm.hpp │ │ │ │ │ ├── spinlock_gcc_atomic.hpp │ │ │ │ │ ├── spinlock_nt.hpp │ │ │ │ │ ├── spinlock_pool.hpp │ │ │ │ │ ├── spinlock_pt.hpp │ │ │ │ │ ├── spinlock_std_atomic.hpp │ │ │ │ │ ├── spinlock_sync.hpp │ │ │ │ │ ├── spinlock_w32.hpp │ │ │ │ │ └── yield_k.hpp │ │ │ │ ├── make_shared.hpp │ │ │ │ ├── make_shared_array.hpp │ │ │ │ ├── make_shared_object.hpp │ │ │ │ ├── scoped_array.hpp │ │ │ │ ├── scoped_ptr.hpp │ │ │ │ ├── shared_ptr.hpp │ │ │ │ └── weak_ptr.hpp │ │ │ ├── static_assert.hpp │ │ │ ├── static_string.hpp │ │ │ ├── static_string │ │ │ │ ├── config.hpp │ │ │ │ └── static_string.hpp │ │ │ ├── swap.hpp │ │ │ ├── system │ │ │ │ ├── api_config.hpp │ │ │ │ ├── config.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── append_int.hpp │ │ │ │ │ ├── cerrno.hpp │ │ │ │ │ ├── config.hpp │ │ │ │ │ ├── enable_if.hpp │ │ │ │ │ ├── errc.hpp │ │ │ │ │ ├── error_category.hpp │ │ │ │ │ ├── error_category_impl.hpp │ │ │ │ │ ├── error_code.hpp │ │ │ │ │ ├── error_condition.hpp │ │ │ │ │ ├── generic_category.hpp │ │ │ │ │ ├── generic_category_message.hpp │ │ │ │ │ ├── interop_category.hpp │ │ │ │ │ ├── is_same.hpp │ │ │ │ │ ├── snprintf.hpp │ │ │ │ │ ├── std_category.hpp │ │ │ │ │ ├── std_category_impl.hpp │ │ │ │ │ ├── system_category.hpp │ │ │ │ │ ├── system_category_condition_win32.hpp │ │ │ │ │ ├── system_category_impl.hpp │ │ │ │ │ ├── system_category_message.hpp │ │ │ │ │ ├── system_category_message_win32.hpp │ │ │ │ │ └── throws.hpp │ │ │ │ ├── errc.hpp │ │ │ │ ├── error_category.hpp │ │ │ │ ├── error_code.hpp │ │ │ │ ├── error_condition.hpp │ │ │ │ ├── generic_category.hpp │ │ │ │ ├── is_error_code_enum.hpp │ │ │ │ ├── is_error_condition_enum.hpp │ │ │ │ ├── system_category.hpp │ │ │ │ └── system_error.hpp │ │ │ ├── throw_exception.hpp │ │ │ ├── type.hpp │ │ │ ├── type_index.hpp │ │ │ ├── type_index │ │ │ │ ├── ctti_type_index.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── compile_time_type_info.hpp │ │ │ │ │ ├── ctti_register_class.hpp │ │ │ │ │ └── stl_register_class.hpp │ │ │ │ ├── stl_type_index.hpp │ │ │ │ └── type_index_facade.hpp │ │ │ ├── type_traits │ │ │ │ ├── add_const.hpp │ │ │ │ ├── add_lvalue_reference.hpp │ │ │ │ ├── add_pointer.hpp │ │ │ │ ├── add_reference.hpp │ │ │ │ ├── add_rvalue_reference.hpp │ │ │ │ ├── add_volatile.hpp │ │ │ │ ├── aligned_storage.hpp │ │ │ │ ├── alignment_of.hpp │ │ │ │ ├── common_type.hpp │ │ │ │ ├── composite_traits.hpp │ │ │ │ ├── conditional.hpp │ │ │ │ ├── conversion_traits.hpp │ │ │ │ ├── copy_cv.hpp │ │ │ │ ├── decay.hpp │ │ │ │ ├── declval.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── common_arithmetic_type.hpp │ │ │ │ │ ├── common_type_impl.hpp │ │ │ │ │ ├── composite_member_pointer_type.hpp │ │ │ │ │ ├── composite_pointer_type.hpp │ │ │ │ │ ├── config.hpp │ │ │ │ │ ├── has_prefix_operator.hpp │ │ │ │ │ ├── is_function_cxx_03.hpp │ │ │ │ │ ├── is_function_cxx_11.hpp │ │ │ │ │ ├── is_function_msvc10_fix.hpp │ │ │ │ │ ├── is_function_ptr_helper.hpp │ │ │ │ │ ├── is_function_ptr_tester.hpp │ │ │ │ │ ├── is_mem_fun_pointer_impl.hpp │ │ │ │ │ ├── is_mem_fun_pointer_tester.hpp │ │ │ │ │ ├── is_member_function_pointer_cxx_03.hpp │ │ │ │ │ ├── is_member_function_pointer_cxx_11.hpp │ │ │ │ │ ├── is_rvalue_reference_msvc10_fix.hpp │ │ │ │ │ ├── mp_defer.hpp │ │ │ │ │ └── yes_no_type.hpp │ │ │ │ ├── enable_if.hpp │ │ │ │ ├── extent.hpp │ │ │ │ ├── function_traits.hpp │ │ │ │ ├── has_nothrow_copy.hpp │ │ │ │ ├── has_nothrow_destructor.hpp │ │ │ │ ├── has_pre_increment.hpp │ │ │ │ ├── has_trivial_copy.hpp │ │ │ │ ├── has_trivial_destructor.hpp │ │ │ │ ├── integral_constant.hpp │ │ │ │ ├── intrinsics.hpp │ │ │ │ ├── is_abstract.hpp │ │ │ │ ├── is_arithmetic.hpp │ │ │ │ ├── is_array.hpp │ │ │ │ ├── is_base_and_derived.hpp │ │ │ │ ├── is_base_of.hpp │ │ │ │ ├── is_bounded_array.hpp │ │ │ │ ├── is_class.hpp │ │ │ │ ├── is_complete.hpp │ │ │ │ ├── is_const.hpp │ │ │ │ ├── is_constructible.hpp │ │ │ │ ├── is_convertible.hpp │ │ │ │ ├── is_copy_constructible.hpp │ │ │ │ ├── is_default_constructible.hpp │ │ │ │ ├── is_destructible.hpp │ │ │ │ ├── is_enum.hpp │ │ │ │ ├── is_floating_point.hpp │ │ │ │ ├── is_function.hpp │ │ │ │ ├── is_fundamental.hpp │ │ │ │ ├── is_integral.hpp │ │ │ │ ├── is_lvalue_reference.hpp │ │ │ │ ├── is_member_function_pointer.hpp │ │ │ │ ├── is_member_pointer.hpp │ │ │ │ ├── is_noncopyable.hpp │ │ │ │ ├── is_object.hpp │ │ │ │ ├── is_pod.hpp │ │ │ │ ├── is_pointer.hpp │ │ │ │ ├── is_polymorphic.hpp │ │ │ │ ├── is_reference.hpp │ │ │ │ ├── is_rvalue_reference.hpp │ │ │ │ ├── is_same.hpp │ │ │ │ ├── is_scalar.hpp │ │ │ │ ├── is_signed.hpp │ │ │ │ ├── is_unbounded_array.hpp │ │ │ │ ├── is_union.hpp │ │ │ │ ├── is_unsigned.hpp │ │ │ │ ├── is_void.hpp │ │ │ │ ├── is_volatile.hpp │ │ │ │ ├── make_signed.hpp │ │ │ │ ├── make_unsigned.hpp │ │ │ │ ├── make_void.hpp │ │ │ │ ├── remove_bounds.hpp │ │ │ │ ├── remove_const.hpp │ │ │ │ ├── remove_cv.hpp │ │ │ │ ├── remove_extent.hpp │ │ │ │ ├── remove_pointer.hpp │ │ │ │ ├── remove_reference.hpp │ │ │ │ ├── type_identity.hpp │ │ │ │ └── type_with_alignment.hpp │ │ │ ├── utility.hpp │ │ │ ├── utility │ │ │ │ ├── addressof.hpp │ │ │ │ ├── base_from_member.hpp │ │ │ │ ├── binary.hpp │ │ │ │ ├── declval.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── result_of_iterate.hpp │ │ │ │ │ └── result_of_variadic.hpp │ │ │ │ ├── enable_if.hpp │ │ │ │ ├── identity_type.hpp │ │ │ │ ├── result_of.hpp │ │ │ │ ├── string_view.hpp │ │ │ │ └── string_view_fwd.hpp │ │ │ ├── version.hpp │ │ │ ├── weak_ptr.hpp │ │ │ └── winapi │ │ │ │ ├── basic_types.hpp │ │ │ │ ├── character_code_conversion.hpp │ │ │ │ ├── config.hpp │ │ │ │ ├── detail │ │ │ │ ├── footer.hpp │ │ │ │ └── header.hpp │ │ │ │ ├── error_codes.hpp │ │ │ │ ├── error_handling.hpp │ │ │ │ ├── get_current_process.hpp │ │ │ │ ├── get_current_thread.hpp │ │ │ │ ├── get_last_error.hpp │ │ │ │ ├── get_process_times.hpp │ │ │ │ ├── get_thread_times.hpp │ │ │ │ ├── local_memory.hpp │ │ │ │ ├── time.hpp │ │ │ │ └── timers.hpp │ │ ├── cmdline.txt │ │ └── libs │ │ │ ├── chrono │ │ │ ├── build │ │ │ │ └── Jamfile.v2 │ │ │ └── src │ │ │ │ ├── chrono.cpp │ │ │ │ ├── process_cpu_clocks.cpp │ │ │ │ └── thread_clock.cpp │ │ │ ├── config │ │ │ └── test │ │ │ │ └── config_info.cpp │ │ │ ├── random │ │ │ ├── build │ │ │ │ └── Jamfile.v2 │ │ │ └── src │ │ │ │ └── random_device.cpp │ │ │ ├── regex │ │ │ ├── build │ │ │ │ ├── Jamfile.v2 │ │ │ │ ├── has_icu_test.cpp │ │ │ │ └── is_legacy_03.cpp │ │ │ ├── src │ │ │ │ ├── internals.hpp │ │ │ │ ├── posix_api.cpp │ │ │ │ ├── regex.cpp │ │ │ │ ├── regex_debug.cpp │ │ │ │ ├── static_mutex.cpp │ │ │ │ └── wide_posix_api.cpp │ │ │ └── test │ │ │ │ └── config_info │ │ │ │ └── regex_config_info.cpp │ │ │ └── system │ │ │ ├── build │ │ │ └── Jamfile.v2 │ │ │ └── src │ │ │ └── error_code.cpp │ ├── cereal-1.1.2 │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CMakeLists.txt │ │ ├── LICENSE │ │ ├── README.md │ │ ├── doc │ │ │ ├── DoxygenLayout.xml │ │ │ ├── doxygen.in │ │ │ ├── footer.html │ │ │ └── mainpage.dox │ │ ├── include │ │ │ └── cereal │ │ │ │ ├── access.hpp │ │ │ │ ├── archives │ │ │ │ ├── adapters.hpp │ │ │ │ ├── binary.hpp │ │ │ │ ├── json.hpp │ │ │ │ ├── portable_binary.hpp │ │ │ │ └── xml.hpp │ │ │ │ ├── cereal.hpp │ │ │ │ ├── details │ │ │ │ ├── helpers.hpp │ │ │ │ ├── polymorphic_impl.hpp │ │ │ │ ├── static_object.hpp │ │ │ │ ├── traits.hpp │ │ │ │ └── util.hpp │ │ │ │ ├── external │ │ │ │ ├── base64.hpp │ │ │ │ ├── rapidjson │ │ │ │ │ ├── document.h │ │ │ │ │ ├── filestream.h │ │ │ │ │ ├── genericstream.h │ │ │ │ │ ├── internal │ │ │ │ │ │ ├── pow10.h │ │ │ │ │ │ ├── stack.h │ │ │ │ │ │ └── strfunc.h │ │ │ │ │ ├── license.txt │ │ │ │ │ ├── prettywriter.h │ │ │ │ │ ├── rapidjson.h │ │ │ │ │ ├── reader.h │ │ │ │ │ ├── stringbuffer.h │ │ │ │ │ └── writer.h │ │ │ │ └── rapidxml │ │ │ │ │ ├── license.txt │ │ │ │ │ ├── manual.html │ │ │ │ │ ├── rapidxml.hpp │ │ │ │ │ ├── rapidxml_iterators.hpp │ │ │ │ │ ├── rapidxml_print.hpp │ │ │ │ │ └── rapidxml_utils.hpp │ │ │ │ ├── macros.hpp │ │ │ │ └── types │ │ │ │ ├── array.hpp │ │ │ │ ├── base_class.hpp │ │ │ │ ├── bitset.hpp │ │ │ │ ├── boost_variant.hpp │ │ │ │ ├── chrono.hpp │ │ │ │ ├── common.hpp │ │ │ │ ├── complex.hpp │ │ │ │ ├── deque.hpp │ │ │ │ ├── forward_list.hpp │ │ │ │ ├── list.hpp │ │ │ │ ├── map.hpp │ │ │ │ ├── memory.hpp │ │ │ │ ├── polymorphic.hpp │ │ │ │ ├── queue.hpp │ │ │ │ ├── set.hpp │ │ │ │ ├── stack.hpp │ │ │ │ ├── string.hpp │ │ │ │ ├── tuple.hpp │ │ │ │ ├── unordered_map.hpp │ │ │ │ ├── unordered_set.hpp │ │ │ │ ├── utility.hpp │ │ │ │ ├── valarray.hpp │ │ │ │ └── vector.hpp │ │ ├── sandbox │ │ │ ├── CMakeLists.txt │ │ │ ├── performance.cpp │ │ │ ├── sandbox.cpp │ │ │ ├── sandbox_json.cpp │ │ │ ├── sandbox_rtti.cpp │ │ │ ├── sandbox_shared_lib │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── base.cpp │ │ │ │ ├── base.hpp │ │ │ │ ├── derived.cpp │ │ │ │ └── derived.hpp │ │ │ └── sandbox_vs.cpp │ │ ├── scripts │ │ │ ├── renameincludes.sh │ │ │ ├── updatecoverage.sh │ │ │ └── updatedoc.in │ │ ├── unittests │ │ │ ├── CMakeLists.txt │ │ │ ├── array.cpp │ │ │ ├── basic_string.cpp │ │ │ ├── bitset.cpp │ │ │ ├── chrono.cpp │ │ │ ├── common.hpp │ │ │ ├── complex.cpp │ │ │ ├── deque.cpp │ │ │ ├── forward_list.cpp │ │ │ ├── list.cpp │ │ │ ├── load_construct.cpp │ │ │ ├── map.cpp │ │ │ ├── memory.cpp │ │ │ ├── memory_cycles.cpp │ │ │ ├── multimap.cpp │ │ │ ├── multiset.cpp │ │ │ ├── pair.cpp │ │ │ ├── pod.cpp │ │ │ ├── polymorphic.cpp │ │ │ ├── portability_test.cpp │ │ │ ├── portable_binary_archive.cpp │ │ │ ├── priority_queue.cpp │ │ │ ├── queue.cpp │ │ │ ├── run_portability_test.sh │ │ │ ├── run_valgrind.sh │ │ │ ├── set.cpp │ │ │ ├── stack.cpp │ │ │ ├── structs.cpp │ │ │ ├── structs_minimal.cpp │ │ │ ├── structs_specialized.cpp │ │ │ ├── tuple.cpp │ │ │ ├── unordered_loads.cpp │ │ │ ├── unordered_map.cpp │ │ │ ├── unordered_multimap.cpp │ │ │ ├── unordered_multiset.cpp │ │ │ ├── unordered_set.cpp │ │ │ ├── user_data_adapters.cpp │ │ │ ├── valarray.cpp │ │ │ ├── vector.cpp │ │ │ └── versioning.cpp │ │ └── vs2013 │ │ │ ├── .gitignore │ │ │ ├── sandbox │ │ │ ├── sandbox.vcxproj │ │ │ └── sandbox.vcxproj.filters │ │ │ ├── sandbox_json │ │ │ ├── sandbox_json.vcxproj │ │ │ └── sandbox_json.vcxproj.filters │ │ │ ├── sandbox_rtti │ │ │ ├── sandbox_rtti.vcxproj │ │ │ └── sandbox_rtti.vcxproj.filters │ │ │ ├── sandbox_vs │ │ │ ├── sandbox_vs.vcxproj │ │ │ └── sandbox_vs.vcxproj.filters │ │ │ ├── sandbox_vs_dll │ │ │ ├── sandbox_vs_dll.vcxproj │ │ │ └── sandbox_vs_dll.vcxproj.filters │ │ │ ├── unittests │ │ │ ├── main.cpp │ │ │ ├── unittests.vcxproj │ │ │ └── unittests.vcxproj.filters │ │ │ └── vs2013.sln │ ├── cereal.cmake │ ├── dummy.c │ ├── galaxy.cmake │ ├── magic_enum.cmake │ ├── magic_enum │ │ ├── .bazelignore │ │ ├── .bazelrc │ │ ├── .bazelversion │ │ ├── .github │ │ │ ├── FUNDING.yml │ │ │ └── workflows │ │ │ │ ├── bzlmod-archive.yml │ │ │ │ ├── macos.yml │ │ │ │ ├── ubuntu.yml │ │ │ │ └── windows.yml │ │ ├── .gitignore │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── LICENSE │ │ ├── MODULE.bazel │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── WORKSPACE.bazel │ │ ├── bazel │ │ │ ├── BUILD.bazel │ │ │ └── copts.bzl │ │ ├── cmake │ │ │ └── GenPkgConfig │ │ │ │ ├── GenPkgConfig.cmake │ │ │ │ ├── ReadMe.md │ │ │ │ ├── UNLICENSE │ │ │ │ └── buildTimeScripts │ │ │ │ └── getObjectFilesBaseNames.cmake │ │ ├── doc │ │ │ ├── limitations.md │ │ │ └── reference.md │ │ ├── example │ │ │ ├── CMakeLists.txt │ │ │ ├── enum_flag_example.cpp │ │ │ ├── example.cpp │ │ │ ├── example_containers_array.cpp │ │ │ ├── example_containers_bitset.cpp │ │ │ ├── example_containers_set.cpp │ │ │ ├── example_custom_name.cpp │ │ │ ├── example_nonascii_name.cpp │ │ │ └── example_switch.cpp │ │ ├── include │ │ │ └── magic_enum │ │ │ │ ├── magic_enum.hpp │ │ │ │ ├── magic_enum_all.hpp │ │ │ │ ├── magic_enum_containers.hpp │ │ │ │ ├── magic_enum_flags.hpp │ │ │ │ ├── magic_enum_format.hpp │ │ │ │ ├── magic_enum_fuse.hpp │ │ │ │ ├── magic_enum_iostream.hpp │ │ │ │ ├── magic_enum_switch.hpp │ │ │ │ └── magic_enum_utility.hpp │ │ ├── meson.build │ │ ├── meson_options.txt │ │ ├── package.xml │ │ └── test │ │ │ ├── .bazelrc │ │ │ ├── 3rdparty │ │ │ └── Catch2 │ │ │ │ ├── LICENSE │ │ │ │ └── include │ │ │ │ └── catch2 │ │ │ │ └── catch.hpp │ │ │ ├── BUILD.bazel │ │ │ ├── CMakeLists.txt │ │ │ ├── MODULE.bazel │ │ │ ├── WORKSPACE.bazel │ │ │ ├── meson.build │ │ │ ├── test.cpp │ │ │ ├── test_aliases.cpp │ │ │ ├── test_containers.cpp │ │ │ ├── test_flags.cpp │ │ │ ├── test_nonascii.cpp │ │ │ └── test_wchar_t.cpp │ ├── miniz-cpp-nyq-miniz-version-upgrade │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── examples │ │ │ ├── pipe.cpp │ │ │ ├── read.cpp │ │ │ └── write.cpp │ │ ├── miniz_cpp.hpp │ │ └── tests │ │ │ └── test.cpp │ ├── miniz-cpp.cmake │ ├── simpleini-4.19 │ │ ├── .github │ │ │ └── workflows │ │ │ │ └── test.yml │ │ ├── .gitignore │ │ ├── ConvertUTF.c │ │ ├── ConvertUTF.h │ │ ├── LICENCE.txt │ │ ├── README.md │ │ ├── SimpleIni.h │ │ ├── other │ │ │ ├── package.cmd │ │ │ └── simpleini.doxy │ │ ├── tests │ │ │ ├── .gitignore │ │ │ ├── example.ini │ │ │ ├── old │ │ │ │ ├── test.cmd │ │ │ │ ├── test1-expected.ini │ │ │ │ ├── test1-input.ini │ │ │ │ ├── test1.cpp │ │ │ │ ├── testsi-EUCJP.ini │ │ │ │ ├── testsi-SJIS.ini │ │ │ │ ├── testsi-UTF8.ini │ │ │ │ └── testsi.cpp │ │ │ ├── packages.config │ │ │ ├── pch.cpp │ │ │ ├── pch.h │ │ │ ├── tests.ini │ │ │ ├── tests.vcxproj │ │ │ ├── ts-bugfix.cpp │ │ │ ├── ts-noconvert.cpp │ │ │ ├── ts-quotes.cpp │ │ │ ├── ts-roundtrip.cpp │ │ │ ├── ts-snippets.cpp │ │ │ ├── ts-utf8.cpp │ │ │ └── ts-wchar.cpp │ │ └── vcproj │ │ │ ├── SimpleIni.sln │ │ │ ├── SimpleIni.vcxproj │ │ │ └── SimpleIni.vcxproj.filters │ ├── simpleini.cmake │ ├── unet.cmake │ ├── unet │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── LICENSE.txt │ │ ├── OpenSolution.bat │ │ ├── OpenSolution2019.bat │ │ ├── Readme.md │ │ ├── UpdateSolution2019.bat │ │ ├── cli │ │ │ ├── main.cpp │ │ │ ├── s2string.h │ │ │ └── termcolor.hpp │ │ ├── genie │ │ │ ├── genie │ │ │ ├── genie.exe │ │ │ ├── genie.lua │ │ │ ├── genie_common.lua │ │ │ ├── genie_osx │ │ │ ├── genie_service_enet.lua │ │ │ ├── genie_service_galaxy.lua │ │ │ ├── genie_service_steam.lua │ │ │ ├── genie_unet.lua │ │ │ └── genie_unet_cli.lua │ │ ├── include │ │ │ ├── Unet.h │ │ │ ├── Unet │ │ │ │ ├── Context.h │ │ │ │ ├── ICallbacks.h │ │ │ │ ├── IContext.h │ │ │ │ ├── Lobby.h │ │ │ │ ├── LobbyData.h │ │ │ │ ├── LobbyFile.h │ │ │ │ ├── LobbyInfo.h │ │ │ │ ├── LobbyListFilter.h │ │ │ │ ├── LobbyMember.h │ │ │ │ ├── LobbyPacket.h │ │ │ │ ├── MultiCallback.h │ │ │ │ ├── NetworkMessage.h │ │ │ │ ├── Reassembly.h │ │ │ │ ├── Result.h │ │ │ │ ├── ResultObject.h │ │ │ │ ├── Results │ │ │ │ │ ├── CreateLobbyResult.h │ │ │ │ │ ├── LobbyInfoFetchResult.h │ │ │ │ │ ├── LobbyJoinResult.h │ │ │ │ │ ├── LobbyLeftResult.h │ │ │ │ │ └── LobbyListResult.h │ │ │ │ ├── Service.h │ │ │ │ ├── ServiceID.h │ │ │ │ ├── ServiceType.h │ │ │ │ ├── Services │ │ │ │ │ ├── ServiceEnet.h │ │ │ │ │ ├── ServiceGalaxy.h │ │ │ │ │ └── ServiceSteam.h │ │ │ │ ├── System.h │ │ │ │ ├── Utils.h │ │ │ │ ├── guid.hpp │ │ │ │ ├── json.hpp │ │ │ │ └── xxhash.h │ │ │ └── Unet_common.h │ │ ├── lib │ │ │ └── .gitignore │ │ └── src │ │ │ ├── Context.cpp │ │ │ ├── Lobby.cpp │ │ │ ├── LobbyData.cpp │ │ │ ├── LobbyFile.cpp │ │ │ ├── LobbyInfo.cpp │ │ │ ├── LobbyListFilter.cpp │ │ │ ├── LobbyMember.cpp │ │ │ ├── NetworkMessage.cpp │ │ │ ├── Reassembly.cpp │ │ │ ├── Results │ │ │ └── LobbyListResult.cpp │ │ │ ├── Service.cpp │ │ │ ├── ServiceType.cpp │ │ │ ├── Services │ │ │ ├── ServiceEnet.cpp │ │ │ ├── ServiceGalaxy.cpp │ │ │ └── ServiceSteam.cpp │ │ │ ├── System │ │ │ ├── SystemLinux.cpp │ │ │ ├── SystemMacOS.mm │ │ │ └── SystemWindows.cpp │ │ │ ├── Unet.cpp │ │ │ ├── Unet_common.cpp │ │ │ ├── Utils.cpp │ │ │ ├── guid.cpp │ │ │ └── xxhash.cpp │ ├── websocketpp-0.8.2 │ │ ├── cmake │ │ │ ├── CMakeHelpers.cmake │ │ │ ├── websocketpp-config.cmake │ │ │ └── websocketpp-configVersion.cmake │ │ └── include │ │ │ └── websocketpp │ │ │ ├── CMakeLists.txt │ │ │ ├── base64 │ │ │ └── base64.hpp │ │ │ ├── client.hpp │ │ │ ├── close.hpp │ │ │ ├── common │ │ │ ├── asio.hpp │ │ │ ├── asio_ssl.hpp │ │ │ ├── chrono.hpp │ │ │ ├── connection_hdl.hpp │ │ │ ├── cpp11.hpp │ │ │ ├── functional.hpp │ │ │ ├── md5.hpp │ │ │ ├── memory.hpp │ │ │ ├── network.hpp │ │ │ ├── platforms.hpp │ │ │ ├── random.hpp │ │ │ ├── regex.hpp │ │ │ ├── stdint.hpp │ │ │ ├── system_error.hpp │ │ │ ├── thread.hpp │ │ │ ├── time.hpp │ │ │ └── type_traits.hpp │ │ │ ├── concurrency │ │ │ ├── basic.hpp │ │ │ └── none.hpp │ │ │ ├── config │ │ │ ├── asio.hpp │ │ │ ├── asio_client.hpp │ │ │ ├── asio_no_tls.hpp │ │ │ ├── asio_no_tls_client.hpp │ │ │ ├── boost_config.hpp │ │ │ ├── core.hpp │ │ │ ├── core_client.hpp │ │ │ ├── debug.hpp │ │ │ ├── debug_asio.hpp │ │ │ ├── debug_asio_no_tls.hpp │ │ │ ├── minimal_client.hpp │ │ │ └── minimal_server.hpp │ │ │ ├── connection.hpp │ │ │ ├── connection_base.hpp │ │ │ ├── endpoint.hpp │ │ │ ├── endpoint_base.hpp │ │ │ ├── error.hpp │ │ │ ├── extensions │ │ │ ├── extension.hpp │ │ │ └── permessage_deflate │ │ │ │ ├── disabled.hpp │ │ │ │ └── enabled.hpp │ │ │ ├── frame.hpp │ │ │ ├── http │ │ │ ├── constants.hpp │ │ │ ├── impl │ │ │ │ ├── parser.hpp │ │ │ │ ├── request.hpp │ │ │ │ └── response.hpp │ │ │ ├── parser.hpp │ │ │ ├── request.hpp │ │ │ └── response.hpp │ │ │ ├── impl │ │ │ ├── connection_impl.hpp │ │ │ ├── endpoint_impl.hpp │ │ │ └── utilities_impl.hpp │ │ │ ├── logger │ │ │ ├── basic.hpp │ │ │ ├── levels.hpp │ │ │ ├── stub.hpp │ │ │ └── syslog.hpp │ │ │ ├── message_buffer │ │ │ ├── alloc.hpp │ │ │ ├── message.hpp │ │ │ └── pool.hpp │ │ │ ├── processors │ │ │ ├── base.hpp │ │ │ ├── hybi00.hpp │ │ │ ├── hybi07.hpp │ │ │ ├── hybi08.hpp │ │ │ ├── hybi13.hpp │ │ │ └── processor.hpp │ │ │ ├── random │ │ │ ├── none.hpp │ │ │ └── random_device.hpp │ │ │ ├── roles │ │ │ ├── client_endpoint.hpp │ │ │ └── server_endpoint.hpp │ │ │ ├── server.hpp │ │ │ ├── sha1 │ │ │ └── sha1.hpp │ │ │ ├── transport │ │ │ ├── asio │ │ │ │ ├── base.hpp │ │ │ │ ├── connection.hpp │ │ │ │ ├── endpoint.hpp │ │ │ │ └── security │ │ │ │ │ ├── base.hpp │ │ │ │ │ ├── none.hpp │ │ │ │ │ └── tls.hpp │ │ │ ├── base │ │ │ │ ├── connection.hpp │ │ │ │ └── endpoint.hpp │ │ │ ├── debug │ │ │ │ ├── base.hpp │ │ │ │ ├── connection.hpp │ │ │ │ └── endpoint.hpp │ │ │ ├── iostream │ │ │ │ ├── base.hpp │ │ │ │ ├── connection.hpp │ │ │ │ └── endpoint.hpp │ │ │ └── stub │ │ │ │ ├── base.hpp │ │ │ │ ├── connection.hpp │ │ │ │ └── endpoint.hpp │ │ │ ├── uri.hpp │ │ │ ├── utf8_validator.hpp │ │ │ ├── utilities.hpp │ │ │ └── version.hpp │ └── websocketpp.cmake ├── Version │ ├── CMakeLists.txt │ ├── Version.cxx │ ├── Version.hxx │ └── stringize.h └── galaxy_sdk_features.cmake ├── UniverseLanWizard ├── .gitignore ├── App.config ├── Bitness.cs ├── CannotDetermineGalaxyVersionException.cs ├── DLLHashDatabase.cs ├── DLLHashEntry.cs ├── GalaxyBinaryCompatibilityMatrix.cs ├── GalaxyGameScanner.cs ├── InstallWizardAction.cs ├── InstallWizardLogic.cs ├── MachineType.cs ├── Program.cs ├── Properties │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Resources.Designer.cs ├── Resources.resx ├── SimpleFileDownloader.cs ├── UniverseLanWizard.csproj ├── UniverseLanWizard.sln ├── UnknownBitnessException.cs ├── UnsupportedGalaxyVersionException.cs ├── WizardChoiceForm.Designer.cs ├── WizardChoiceForm.cs ├── WizardChoiceForm.resx ├── WizardInstallUniverseLANForm.Designer.cs ├── WizardInstallUniverseLANForm.cs └── WizardInstallUniverseLANForm.resx ├── Util ├── .gitignore ├── README.md ├── UpdateVersion.bat ├── UpdateVersion.sh ├── def_dll.py ├── def_dll_drag_drop.bat ├── def_dll_in_source.py ├── def_dll_in_source_drag_drop.bat └── setup_def_dll_tools.ps1 ├── ZipFileHasher ├── .gitignore ├── App.config ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── ZipFileHasher.csproj ├── ZipFileHasher.sln ├── md5_hashes.txt ├── packages.config └── sha1_hashes.txt ├── cmake-linux-x64.sh ├── cmake-linux-x86.sh ├── cmake-x64-with-interceptor.bat ├── cmake-x64-with-limited-versions.bat ├── cmake-x64-with-tests-limited-versions-interceptor.bat ├── cmake-x64-with-tests.bat ├── cmake-x64.bat ├── cmake-x86-with-interceptor.bat ├── cmake-x86-with-limited-versions.bat ├── cmake-x86-with-tests-limited-versions-interceptor.bat ├── cmake-x86-with-tests.bat ├── cmake-x86.bat ├── docs ├── BingSiteAuth.xml ├── googlee1befdc788c59904.html ├── index.html ├── logo-128.png ├── logo-160.png ├── logo-192.png ├── logo-224.png ├── logo-256.png ├── logo-32.png ├── logo-320.png ├── logo-440.png ├── logo-560.png ├── logo-64.png └── logo-96.png ├── package-release.ps1 └── z-compile+release.bat /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Config/UniverseLAN.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Config/UniverseLAN.ini -------------------------------------------------------------------------------- /Config/UniverseLANData/Cloud/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Config/UniverseLANData/Config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Config/UniverseLANData/Config.ini -------------------------------------------------------------------------------- /Config/UniverseLANData/DLC.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Config/UniverseLANData/DLC.ini -------------------------------------------------------------------------------- /Config/UniverseLANData/Local/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Config/UniverseLANData/Logging/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Config/UniverseLANData/Shared/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Config/UniverseLANData/Stats.ini: -------------------------------------------------------------------------------- 1 | [Metadata] 2 | PlayTime = 0 3 | 4 | [Stats] 5 | -------------------------------------------------------------------------------- /Config/UniverseLANData/Telemetry/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Config/UniverseLANData/Tracing/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Config/UniverseLANData/UserData.ini: -------------------------------------------------------------------------------- 1 | [UserData] 2 | -------------------------------------------------------------------------------- /Config/UniverseLANServerData/Cloud/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Config/UniverseLANServerData/Local/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Config/UniverseLANServerData/Logging/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Config/UniverseLANServerData/Shared/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Config/UniverseLANServerData/Telemetry/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Config/UniverseLANServerData/Tracing/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ConfigDebug/UniverseLAN.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/ConfigDebug/UniverseLAN.ini -------------------------------------------------------------------------------- /ConfigDebug/UniverseLANData/Cloud/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ConfigDebug/UniverseLANData/DLC.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/ConfigDebug/UniverseLANData/DLC.ini -------------------------------------------------------------------------------- /ConfigDebug/UniverseLANData/Local/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ConfigDebug/UniverseLANData/Logging/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ConfigDebug/UniverseLANData/Shared/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ConfigDebug/UniverseLANData/Stats.ini: -------------------------------------------------------------------------------- 1 | [Metadata] 2 | PlayTime = 0 3 | 4 | [Stats] 5 | -------------------------------------------------------------------------------- /ConfigDebug/UniverseLANData/Telemetry/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ConfigDebug/UniverseLANData/Tracing/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ConfigDebug/UniverseLANData/UserData.ini: -------------------------------------------------------------------------------- 1 | [UserData] 2 | -------------------------------------------------------------------------------- /ConfigDebug/UniverseLANServerData/Cloud/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ConfigDebug/UniverseLANServerData/Local/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ConfigDebug/UniverseLANServerData/Logging/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ConfigDebug/UniverseLANServerData/Shared/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ConfigDebug/UniverseLANServerData/Telemetry/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ConfigDebug/UniverseLANServerData/Tracing/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/LICENSE -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/README.MD -------------------------------------------------------------------------------- /Source/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/CMakeLists.txt -------------------------------------------------------------------------------- /Source/Client/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Client/CMakeLists.txt -------------------------------------------------------------------------------- /Source/Client/Client.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Client/Client.cxx -------------------------------------------------------------------------------- /Source/Client/Client.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Client/Client.hxx -------------------------------------------------------------------------------- /Source/Client/Factory.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Client/Factory.cxx -------------------------------------------------------------------------------- /Source/Client/GalaxyApi.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Client/GalaxyApi.cxx -------------------------------------------------------------------------------- /Source/Client/GalaxyApiFactory.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Client/GalaxyApiFactory.cxx -------------------------------------------------------------------------------- /Source/Client/GalaxyDLL.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Client/GalaxyDLL.cxx -------------------------------------------------------------------------------- /Source/Client/GalaxyDLL.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Client/GalaxyDLL.hxx -------------------------------------------------------------------------------- /Source/Client/GalaxyGameServerApi.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Client/GalaxyGameServerApi.cxx -------------------------------------------------------------------------------- /Source/Client/Impl/Apps.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Client/Impl/Apps.cxx -------------------------------------------------------------------------------- /Source/Client/Impl/Apps.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Client/Impl/Apps.hxx -------------------------------------------------------------------------------- /Source/Client/Impl/Chat.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Client/Impl/Chat.cxx -------------------------------------------------------------------------------- /Source/Client/Impl/Chat.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Client/Impl/Chat.hxx -------------------------------------------------------------------------------- /Source/Client/Impl/CloudStorage.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Client/Impl/CloudStorage.cxx -------------------------------------------------------------------------------- /Source/Client/Impl/CloudStorage.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Client/Impl/CloudStorage.hxx -------------------------------------------------------------------------------- /Source/Client/Impl/DelayRunner.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Client/Impl/DelayRunner.cxx -------------------------------------------------------------------------------- /Source/Client/Impl/DelayRunner.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Client/Impl/DelayRunner.hxx -------------------------------------------------------------------------------- /Source/Client/Impl/Errors.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Client/Impl/Errors.cxx -------------------------------------------------------------------------------- /Source/Client/Impl/Errors.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Client/Impl/Errors.hxx -------------------------------------------------------------------------------- /Source/Client/Impl/Friends.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Client/Impl/Friends.cxx -------------------------------------------------------------------------------- /Source/Client/Impl/Friends.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Client/Impl/Friends.hxx -------------------------------------------------------------------------------- /Source/Client/Impl/GalaxyThread.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Client/Impl/GalaxyThread.cxx -------------------------------------------------------------------------------- /Source/Client/Impl/GalaxyThread.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Client/Impl/GalaxyThread.hxx -------------------------------------------------------------------------------- /Source/Client/Impl/Logger.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Client/Impl/Logger.cxx -------------------------------------------------------------------------------- /Source/Client/Impl/Logger.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Client/Impl/Logger.hxx -------------------------------------------------------------------------------- /Source/Client/Impl/Matchmaking.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Client/Impl/Matchmaking.cxx -------------------------------------------------------------------------------- /Source/Client/Impl/Matchmaking.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Client/Impl/Matchmaking.hxx -------------------------------------------------------------------------------- /Source/Client/Impl/Networking.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Client/Impl/Networking.cxx -------------------------------------------------------------------------------- /Source/Client/Impl/Networking.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Client/Impl/Networking.hxx -------------------------------------------------------------------------------- /Source/Client/Impl/Stats.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Client/Impl/Stats.cxx -------------------------------------------------------------------------------- /Source/Client/Impl/Stats.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Client/Impl/Stats.hxx -------------------------------------------------------------------------------- /Source/Client/Impl/Storage.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Client/Impl/Storage.cxx -------------------------------------------------------------------------------- /Source/Client/Impl/Storage.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Client/Impl/Storage.hxx -------------------------------------------------------------------------------- /Source/Client/Impl/Telemetry.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Client/Impl/Telemetry.cxx -------------------------------------------------------------------------------- /Source/Client/Impl/Telemetry.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Client/Impl/Telemetry.hxx -------------------------------------------------------------------------------- /Source/Client/Impl/User.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Client/Impl/User.cxx -------------------------------------------------------------------------------- /Source/Client/Impl/User.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Client/Impl/User.hxx -------------------------------------------------------------------------------- /Source/Client/Impl/Utils.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Client/Impl/Utils.cxx -------------------------------------------------------------------------------- /Source/Client/Impl/Utils.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Client/Impl/Utils.hxx -------------------------------------------------------------------------------- /Source/Client/UniverseGameServer.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Client/UniverseGameServer.cxx -------------------------------------------------------------------------------- /Source/Client/UniverseGameServer.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Client/UniverseGameServer.hxx -------------------------------------------------------------------------------- /Source/Client/UniverseLAN.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Client/UniverseLAN.cxx -------------------------------------------------------------------------------- /Source/Client/UniverseLAN.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Client/UniverseLAN.hxx -------------------------------------------------------------------------------- /Source/DLLs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/.gitignore -------------------------------------------------------------------------------- /Source/DLLs/1.100.2/Factory.cxx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/DLLs/1.100.2/compat_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.100.2/compat_list.txt -------------------------------------------------------------------------------- /Source/DLLs/1.100.2/galaxy/Errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.100.2/galaxy/Errors.h -------------------------------------------------------------------------------- /Source/DLLs/1.100.2/galaxy/GalaxyID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.100.2/galaxy/GalaxyID.h -------------------------------------------------------------------------------- /Source/DLLs/1.100.2/galaxy/IApps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.100.2/galaxy/IApps.h -------------------------------------------------------------------------------- /Source/DLLs/1.100.2/galaxy/IFriends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.100.2/galaxy/IFriends.h -------------------------------------------------------------------------------- /Source/DLLs/1.100.2/galaxy/IGalaxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.100.2/galaxy/IGalaxy.h -------------------------------------------------------------------------------- /Source/DLLs/1.100.2/galaxy/ILogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.100.2/galaxy/ILogger.h -------------------------------------------------------------------------------- /Source/DLLs/1.100.2/galaxy/IStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.100.2/galaxy/IStats.h -------------------------------------------------------------------------------- /Source/DLLs/1.100.2/galaxy/IStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.100.2/galaxy/IStorage.h -------------------------------------------------------------------------------- /Source/DLLs/1.100.2/galaxy/IUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.100.2/galaxy/IUser.h -------------------------------------------------------------------------------- /Source/DLLs/1.100.2/galaxy/IUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.100.2/galaxy/IUtils.h -------------------------------------------------------------------------------- /Source/DLLs/1.100.2/gog/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.100.2/gog/README.MD -------------------------------------------------------------------------------- /Source/DLLs/1.104.2/Factory.cxx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/DLLs/1.104.2/compat_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.104.2/compat_list.txt -------------------------------------------------------------------------------- /Source/DLLs/1.104.2/galaxy/Errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.104.2/galaxy/Errors.h -------------------------------------------------------------------------------- /Source/DLLs/1.104.2/galaxy/GalaxyID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.104.2/galaxy/GalaxyID.h -------------------------------------------------------------------------------- /Source/DLLs/1.104.2/galaxy/IApps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.104.2/galaxy/IApps.h -------------------------------------------------------------------------------- /Source/DLLs/1.104.2/galaxy/IFriends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.104.2/galaxy/IFriends.h -------------------------------------------------------------------------------- /Source/DLLs/1.104.2/galaxy/IGalaxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.104.2/galaxy/IGalaxy.h -------------------------------------------------------------------------------- /Source/DLLs/1.104.2/galaxy/ILogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.104.2/galaxy/ILogger.h -------------------------------------------------------------------------------- /Source/DLLs/1.104.2/galaxy/IStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.104.2/galaxy/IStats.h -------------------------------------------------------------------------------- /Source/DLLs/1.104.2/galaxy/IStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.104.2/galaxy/IStorage.h -------------------------------------------------------------------------------- /Source/DLLs/1.104.2/galaxy/IUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.104.2/galaxy/IUser.h -------------------------------------------------------------------------------- /Source/DLLs/1.104.2/galaxy/IUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.104.2/galaxy/IUtils.h -------------------------------------------------------------------------------- /Source/DLLs/1.104.2/gog/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.104.2/gog/README.MD -------------------------------------------------------------------------------- /Source/DLLs/1.104.3/Factory.cxx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/DLLs/1.104.3/galaxy/Errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.104.3/galaxy/Errors.h -------------------------------------------------------------------------------- /Source/DLLs/1.104.3/galaxy/GalaxyID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.104.3/galaxy/GalaxyID.h -------------------------------------------------------------------------------- /Source/DLLs/1.104.3/galaxy/IApps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.104.3/galaxy/IApps.h -------------------------------------------------------------------------------- /Source/DLLs/1.104.3/galaxy/IChat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.104.3/galaxy/IChat.h -------------------------------------------------------------------------------- /Source/DLLs/1.104.3/galaxy/IFriends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.104.3/galaxy/IFriends.h -------------------------------------------------------------------------------- /Source/DLLs/1.104.3/galaxy/IGalaxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.104.3/galaxy/IGalaxy.h -------------------------------------------------------------------------------- /Source/DLLs/1.104.3/galaxy/ILogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.104.3/galaxy/ILogger.h -------------------------------------------------------------------------------- /Source/DLLs/1.104.3/galaxy/IStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.104.3/galaxy/IStats.h -------------------------------------------------------------------------------- /Source/DLLs/1.104.3/galaxy/IStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.104.3/galaxy/IStorage.h -------------------------------------------------------------------------------- /Source/DLLs/1.104.3/galaxy/IUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.104.3/galaxy/IUser.h -------------------------------------------------------------------------------- /Source/DLLs/1.104.3/galaxy/IUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.104.3/galaxy/IUtils.h -------------------------------------------------------------------------------- /Source/DLLs/1.104.3/gog/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.104.3/gog/README.MD -------------------------------------------------------------------------------- /Source/DLLs/1.104.4/Factory.cxx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/DLLs/1.104.4/compat_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.104.4/compat_list.txt -------------------------------------------------------------------------------- /Source/DLLs/1.104.4/galaxy/Errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.104.4/galaxy/Errors.h -------------------------------------------------------------------------------- /Source/DLLs/1.104.4/galaxy/GalaxyID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.104.4/galaxy/GalaxyID.h -------------------------------------------------------------------------------- /Source/DLLs/1.104.4/galaxy/IApps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.104.4/galaxy/IApps.h -------------------------------------------------------------------------------- /Source/DLLs/1.104.4/galaxy/IChat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.104.4/galaxy/IChat.h -------------------------------------------------------------------------------- /Source/DLLs/1.104.4/galaxy/IFriends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.104.4/galaxy/IFriends.h -------------------------------------------------------------------------------- /Source/DLLs/1.104.4/galaxy/IGalaxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.104.4/galaxy/IGalaxy.h -------------------------------------------------------------------------------- /Source/DLLs/1.104.4/galaxy/ILogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.104.4/galaxy/ILogger.h -------------------------------------------------------------------------------- /Source/DLLs/1.104.4/galaxy/IStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.104.4/galaxy/IStats.h -------------------------------------------------------------------------------- /Source/DLLs/1.104.4/galaxy/IStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.104.4/galaxy/IStorage.h -------------------------------------------------------------------------------- /Source/DLLs/1.104.4/galaxy/IUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.104.4/galaxy/IUser.h -------------------------------------------------------------------------------- /Source/DLLs/1.104.4/galaxy/IUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.104.4/galaxy/IUtils.h -------------------------------------------------------------------------------- /Source/DLLs/1.104.4/gog/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.104.4/gog/README.MD -------------------------------------------------------------------------------- /Source/DLLs/1.106.0/Factory.cxx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/DLLs/1.106.0/compat_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.106.0/compat_list.txt -------------------------------------------------------------------------------- /Source/DLLs/1.106.0/galaxy/Errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.106.0/galaxy/Errors.h -------------------------------------------------------------------------------- /Source/DLLs/1.106.0/galaxy/GalaxyID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.106.0/galaxy/GalaxyID.h -------------------------------------------------------------------------------- /Source/DLLs/1.106.0/galaxy/IApps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.106.0/galaxy/IApps.h -------------------------------------------------------------------------------- /Source/DLLs/1.106.0/galaxy/IChat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.106.0/galaxy/IChat.h -------------------------------------------------------------------------------- /Source/DLLs/1.106.0/galaxy/IFriends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.106.0/galaxy/IFriends.h -------------------------------------------------------------------------------- /Source/DLLs/1.106.0/galaxy/IGalaxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.106.0/galaxy/IGalaxy.h -------------------------------------------------------------------------------- /Source/DLLs/1.106.0/galaxy/ILogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.106.0/galaxy/ILogger.h -------------------------------------------------------------------------------- /Source/DLLs/1.106.0/galaxy/IStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.106.0/galaxy/IStats.h -------------------------------------------------------------------------------- /Source/DLLs/1.106.0/galaxy/IStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.106.0/galaxy/IStorage.h -------------------------------------------------------------------------------- /Source/DLLs/1.106.0/galaxy/IUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.106.0/galaxy/IUser.h -------------------------------------------------------------------------------- /Source/DLLs/1.106.0/galaxy/IUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.106.0/galaxy/IUtils.h -------------------------------------------------------------------------------- /Source/DLLs/1.106.0/gog/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.106.0/gog/README.MD -------------------------------------------------------------------------------- /Source/DLLs/1.109.0/Factory.cxx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/DLLs/1.109.0/galaxy/Errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.109.0/galaxy/Errors.h -------------------------------------------------------------------------------- /Source/DLLs/1.109.0/galaxy/GalaxyID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.109.0/galaxy/GalaxyID.h -------------------------------------------------------------------------------- /Source/DLLs/1.109.0/galaxy/IApps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.109.0/galaxy/IApps.h -------------------------------------------------------------------------------- /Source/DLLs/1.109.0/galaxy/IChat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.109.0/galaxy/IChat.h -------------------------------------------------------------------------------- /Source/DLLs/1.109.0/galaxy/IFriends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.109.0/galaxy/IFriends.h -------------------------------------------------------------------------------- /Source/DLLs/1.109.0/galaxy/IGalaxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.109.0/galaxy/IGalaxy.h -------------------------------------------------------------------------------- /Source/DLLs/1.109.0/galaxy/ILogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.109.0/galaxy/ILogger.h -------------------------------------------------------------------------------- /Source/DLLs/1.109.0/galaxy/IStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.109.0/galaxy/IStats.h -------------------------------------------------------------------------------- /Source/DLLs/1.109.0/galaxy/IStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.109.0/galaxy/IStorage.h -------------------------------------------------------------------------------- /Source/DLLs/1.109.0/galaxy/IUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.109.0/galaxy/IUser.h -------------------------------------------------------------------------------- /Source/DLLs/1.109.0/galaxy/IUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.109.0/galaxy/IUtils.h -------------------------------------------------------------------------------- /Source/DLLs/1.109.0/gog/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.109.0/gog/README.MD -------------------------------------------------------------------------------- /Source/DLLs/1.112.2/Factory.cxx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/DLLs/1.112.2/compat_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.112.2/compat_list.txt -------------------------------------------------------------------------------- /Source/DLLs/1.112.2/galaxy/Errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.112.2/galaxy/Errors.h -------------------------------------------------------------------------------- /Source/DLLs/1.112.2/galaxy/GalaxyID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.112.2/galaxy/GalaxyID.h -------------------------------------------------------------------------------- /Source/DLLs/1.112.2/galaxy/IApps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.112.2/galaxy/IApps.h -------------------------------------------------------------------------------- /Source/DLLs/1.112.2/galaxy/IChat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.112.2/galaxy/IChat.h -------------------------------------------------------------------------------- /Source/DLLs/1.112.2/galaxy/IFriends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.112.2/galaxy/IFriends.h -------------------------------------------------------------------------------- /Source/DLLs/1.112.2/galaxy/IGalaxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.112.2/galaxy/IGalaxy.h -------------------------------------------------------------------------------- /Source/DLLs/1.112.2/galaxy/ILogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.112.2/galaxy/ILogger.h -------------------------------------------------------------------------------- /Source/DLLs/1.112.2/galaxy/IStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.112.2/galaxy/IStats.h -------------------------------------------------------------------------------- /Source/DLLs/1.112.2/galaxy/IStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.112.2/galaxy/IStorage.h -------------------------------------------------------------------------------- /Source/DLLs/1.112.2/galaxy/IUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.112.2/galaxy/IUser.h -------------------------------------------------------------------------------- /Source/DLLs/1.112.2/galaxy/IUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.112.2/galaxy/IUtils.h -------------------------------------------------------------------------------- /Source/DLLs/1.112.2/gog/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.112.2/gog/README.MD -------------------------------------------------------------------------------- /Source/DLLs/1.113.1/Factory.cxx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/DLLs/1.113.1/compat_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.113.1/compat_list.txt -------------------------------------------------------------------------------- /Source/DLLs/1.113.1/galaxy/Errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.113.1/galaxy/Errors.h -------------------------------------------------------------------------------- /Source/DLLs/1.113.1/galaxy/GalaxyID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.113.1/galaxy/GalaxyID.h -------------------------------------------------------------------------------- /Source/DLLs/1.113.1/galaxy/IApps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.113.1/galaxy/IApps.h -------------------------------------------------------------------------------- /Source/DLLs/1.113.1/galaxy/IChat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.113.1/galaxy/IChat.h -------------------------------------------------------------------------------- /Source/DLLs/1.113.1/galaxy/IFriends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.113.1/galaxy/IFriends.h -------------------------------------------------------------------------------- /Source/DLLs/1.113.1/galaxy/IGalaxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.113.1/galaxy/IGalaxy.h -------------------------------------------------------------------------------- /Source/DLLs/1.113.1/galaxy/ILogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.113.1/galaxy/ILogger.h -------------------------------------------------------------------------------- /Source/DLLs/1.113.1/galaxy/IStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.113.1/galaxy/IStats.h -------------------------------------------------------------------------------- /Source/DLLs/1.113.1/galaxy/IStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.113.1/galaxy/IStorage.h -------------------------------------------------------------------------------- /Source/DLLs/1.113.1/galaxy/IUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.113.1/galaxy/IUser.h -------------------------------------------------------------------------------- /Source/DLLs/1.113.1/galaxy/IUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.113.1/galaxy/IUtils.h -------------------------------------------------------------------------------- /Source/DLLs/1.113.1/gog/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.113.1/gog/README.MD -------------------------------------------------------------------------------- /Source/DLLs/1.113.3/Factory.cxx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/DLLs/1.113.3/compat_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.113.3/compat_list.txt -------------------------------------------------------------------------------- /Source/DLLs/1.113.3/galaxy/Errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.113.3/galaxy/Errors.h -------------------------------------------------------------------------------- /Source/DLLs/1.113.3/galaxy/GalaxyID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.113.3/galaxy/GalaxyID.h -------------------------------------------------------------------------------- /Source/DLLs/1.113.3/galaxy/IApps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.113.3/galaxy/IApps.h -------------------------------------------------------------------------------- /Source/DLLs/1.113.3/galaxy/IChat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.113.3/galaxy/IChat.h -------------------------------------------------------------------------------- /Source/DLLs/1.113.3/galaxy/IFriends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.113.3/galaxy/IFriends.h -------------------------------------------------------------------------------- /Source/DLLs/1.113.3/galaxy/IGalaxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.113.3/galaxy/IGalaxy.h -------------------------------------------------------------------------------- /Source/DLLs/1.113.3/galaxy/ILogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.113.3/galaxy/ILogger.h -------------------------------------------------------------------------------- /Source/DLLs/1.113.3/galaxy/IStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.113.3/galaxy/IStats.h -------------------------------------------------------------------------------- /Source/DLLs/1.113.3/galaxy/IStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.113.3/galaxy/IStorage.h -------------------------------------------------------------------------------- /Source/DLLs/1.113.3/galaxy/IUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.113.3/galaxy/IUser.h -------------------------------------------------------------------------------- /Source/DLLs/1.113.3/galaxy/IUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.113.3/galaxy/IUtils.h -------------------------------------------------------------------------------- /Source/DLLs/1.113.3/gog/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.113.3/gog/README.MD -------------------------------------------------------------------------------- /Source/DLLs/1.114.9/Factory.cxx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/DLLs/1.114.9/compat_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.114.9/compat_list.txt -------------------------------------------------------------------------------- /Source/DLLs/1.114.9/galaxy/Errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.114.9/galaxy/Errors.h -------------------------------------------------------------------------------- /Source/DLLs/1.114.9/galaxy/GalaxyID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.114.9/galaxy/GalaxyID.h -------------------------------------------------------------------------------- /Source/DLLs/1.114.9/galaxy/IApps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.114.9/galaxy/IApps.h -------------------------------------------------------------------------------- /Source/DLLs/1.114.9/galaxy/IChat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.114.9/galaxy/IChat.h -------------------------------------------------------------------------------- /Source/DLLs/1.114.9/galaxy/IFriends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.114.9/galaxy/IFriends.h -------------------------------------------------------------------------------- /Source/DLLs/1.114.9/galaxy/IGalaxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.114.9/galaxy/IGalaxy.h -------------------------------------------------------------------------------- /Source/DLLs/1.114.9/galaxy/ILogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.114.9/galaxy/ILogger.h -------------------------------------------------------------------------------- /Source/DLLs/1.114.9/galaxy/IStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.114.9/galaxy/IStats.h -------------------------------------------------------------------------------- /Source/DLLs/1.114.9/galaxy/IStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.114.9/galaxy/IStorage.h -------------------------------------------------------------------------------- /Source/DLLs/1.114.9/galaxy/IUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.114.9/galaxy/IUser.h -------------------------------------------------------------------------------- /Source/DLLs/1.114.9/galaxy/IUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.114.9/galaxy/IUtils.h -------------------------------------------------------------------------------- /Source/DLLs/1.114.9/gog/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.114.9/gog/README.MD -------------------------------------------------------------------------------- /Source/DLLs/1.121.2/Dll.cxx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/DLLs/1.121.2/compat_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.121.2/compat_list.txt -------------------------------------------------------------------------------- /Source/DLLs/1.121.2/galaxy/Errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.121.2/galaxy/Errors.h -------------------------------------------------------------------------------- /Source/DLLs/1.121.2/galaxy/GalaxyID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.121.2/galaxy/GalaxyID.h -------------------------------------------------------------------------------- /Source/DLLs/1.121.2/galaxy/IApps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.121.2/galaxy/IApps.h -------------------------------------------------------------------------------- /Source/DLLs/1.121.2/galaxy/IChat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.121.2/galaxy/IChat.h -------------------------------------------------------------------------------- /Source/DLLs/1.121.2/galaxy/IFriends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.121.2/galaxy/IFriends.h -------------------------------------------------------------------------------- /Source/DLLs/1.121.2/galaxy/ILogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.121.2/galaxy/ILogger.h -------------------------------------------------------------------------------- /Source/DLLs/1.121.2/galaxy/IStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.121.2/galaxy/IStats.h -------------------------------------------------------------------------------- /Source/DLLs/1.121.2/galaxy/IStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.121.2/galaxy/IStorage.h -------------------------------------------------------------------------------- /Source/DLLs/1.121.2/galaxy/IUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.121.2/galaxy/IUser.h -------------------------------------------------------------------------------- /Source/DLLs/1.121.2/galaxy/IUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.121.2/galaxy/IUtils.h -------------------------------------------------------------------------------- /Source/DLLs/1.121.2/gog/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.121.2/gog/README.MD -------------------------------------------------------------------------------- /Source/DLLs/1.124.0/Dll.cxx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/DLLs/1.124.0/compat_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.124.0/compat_list.txt -------------------------------------------------------------------------------- /Source/DLLs/1.124.0/galaxy/Errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.124.0/galaxy/Errors.h -------------------------------------------------------------------------------- /Source/DLLs/1.124.0/galaxy/GalaxyID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.124.0/galaxy/GalaxyID.h -------------------------------------------------------------------------------- /Source/DLLs/1.124.0/galaxy/IApps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.124.0/galaxy/IApps.h -------------------------------------------------------------------------------- /Source/DLLs/1.124.0/galaxy/IChat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.124.0/galaxy/IChat.h -------------------------------------------------------------------------------- /Source/DLLs/1.124.0/galaxy/IFriends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.124.0/galaxy/IFriends.h -------------------------------------------------------------------------------- /Source/DLLs/1.124.0/galaxy/ILogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.124.0/galaxy/ILogger.h -------------------------------------------------------------------------------- /Source/DLLs/1.124.0/galaxy/IStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.124.0/galaxy/IStats.h -------------------------------------------------------------------------------- /Source/DLLs/1.124.0/galaxy/IStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.124.0/galaxy/IStorage.h -------------------------------------------------------------------------------- /Source/DLLs/1.124.0/galaxy/IUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.124.0/galaxy/IUser.h -------------------------------------------------------------------------------- /Source/DLLs/1.124.0/galaxy/IUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.124.0/galaxy/IUtils.h -------------------------------------------------------------------------------- /Source/DLLs/1.124.0/gog/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.124.0/gog/README.MD -------------------------------------------------------------------------------- /Source/DLLs/1.125.2/Dll.cxx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/DLLs/1.125.2/compat_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.125.2/compat_list.txt -------------------------------------------------------------------------------- /Source/DLLs/1.125.2/galaxy/Errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.125.2/galaxy/Errors.h -------------------------------------------------------------------------------- /Source/DLLs/1.125.2/galaxy/GalaxyID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.125.2/galaxy/GalaxyID.h -------------------------------------------------------------------------------- /Source/DLLs/1.125.2/galaxy/IApps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.125.2/galaxy/IApps.h -------------------------------------------------------------------------------- /Source/DLLs/1.125.2/galaxy/IChat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.125.2/galaxy/IChat.h -------------------------------------------------------------------------------- /Source/DLLs/1.125.2/galaxy/IFriends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.125.2/galaxy/IFriends.h -------------------------------------------------------------------------------- /Source/DLLs/1.125.2/galaxy/ILogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.125.2/galaxy/ILogger.h -------------------------------------------------------------------------------- /Source/DLLs/1.125.2/galaxy/IStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.125.2/galaxy/IStats.h -------------------------------------------------------------------------------- /Source/DLLs/1.125.2/galaxy/IStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.125.2/galaxy/IStorage.h -------------------------------------------------------------------------------- /Source/DLLs/1.125.2/galaxy/IUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.125.2/galaxy/IUser.h -------------------------------------------------------------------------------- /Source/DLLs/1.125.2/galaxy/IUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.125.2/galaxy/IUtils.h -------------------------------------------------------------------------------- /Source/DLLs/1.125.2/gog/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.125.2/gog/README.MD -------------------------------------------------------------------------------- /Source/DLLs/1.126.1/Dll.cxx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/DLLs/1.126.1/compat_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.126.1/compat_list.txt -------------------------------------------------------------------------------- /Source/DLLs/1.126.1/galaxy/Errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.126.1/galaxy/Errors.h -------------------------------------------------------------------------------- /Source/DLLs/1.126.1/galaxy/GalaxyID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.126.1/galaxy/GalaxyID.h -------------------------------------------------------------------------------- /Source/DLLs/1.126.1/galaxy/IApps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.126.1/galaxy/IApps.h -------------------------------------------------------------------------------- /Source/DLLs/1.126.1/galaxy/IChat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.126.1/galaxy/IChat.h -------------------------------------------------------------------------------- /Source/DLLs/1.126.1/galaxy/IFriends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.126.1/galaxy/IFriends.h -------------------------------------------------------------------------------- /Source/DLLs/1.126.1/galaxy/ILogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.126.1/galaxy/ILogger.h -------------------------------------------------------------------------------- /Source/DLLs/1.126.1/galaxy/IStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.126.1/galaxy/IStats.h -------------------------------------------------------------------------------- /Source/DLLs/1.126.1/galaxy/IStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.126.1/galaxy/IStorage.h -------------------------------------------------------------------------------- /Source/DLLs/1.126.1/galaxy/IUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.126.1/galaxy/IUser.h -------------------------------------------------------------------------------- /Source/DLLs/1.126.1/galaxy/IUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.126.1/galaxy/IUtils.h -------------------------------------------------------------------------------- /Source/DLLs/1.126.1/gog/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.126.1/gog/README.MD -------------------------------------------------------------------------------- /Source/DLLs/1.127.0/Dll.cxx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/DLLs/1.127.0/galaxy/Errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.127.0/galaxy/Errors.h -------------------------------------------------------------------------------- /Source/DLLs/1.127.0/galaxy/GalaxyID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.127.0/galaxy/GalaxyID.h -------------------------------------------------------------------------------- /Source/DLLs/1.127.0/galaxy/IApps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.127.0/galaxy/IApps.h -------------------------------------------------------------------------------- /Source/DLLs/1.127.0/galaxy/IChat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.127.0/galaxy/IChat.h -------------------------------------------------------------------------------- /Source/DLLs/1.127.0/galaxy/IFriends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.127.0/galaxy/IFriends.h -------------------------------------------------------------------------------- /Source/DLLs/1.127.0/galaxy/ILogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.127.0/galaxy/ILogger.h -------------------------------------------------------------------------------- /Source/DLLs/1.127.0/galaxy/IStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.127.0/galaxy/IStats.h -------------------------------------------------------------------------------- /Source/DLLs/1.127.0/galaxy/IStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.127.0/galaxy/IStorage.h -------------------------------------------------------------------------------- /Source/DLLs/1.127.0/galaxy/IUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.127.0/galaxy/IUser.h -------------------------------------------------------------------------------- /Source/DLLs/1.127.0/galaxy/IUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.127.0/galaxy/IUtils.h -------------------------------------------------------------------------------- /Source/DLLs/1.127.0/gog/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.127.0/gog/README.MD -------------------------------------------------------------------------------- /Source/DLLs/1.128.3/Dll.cxx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/DLLs/1.128.3/compat_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.128.3/compat_list.txt -------------------------------------------------------------------------------- /Source/DLLs/1.128.3/galaxy/Errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.128.3/galaxy/Errors.h -------------------------------------------------------------------------------- /Source/DLLs/1.128.3/galaxy/GalaxyID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.128.3/galaxy/GalaxyID.h -------------------------------------------------------------------------------- /Source/DLLs/1.128.3/galaxy/IApps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.128.3/galaxy/IApps.h -------------------------------------------------------------------------------- /Source/DLLs/1.128.3/galaxy/IChat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.128.3/galaxy/IChat.h -------------------------------------------------------------------------------- /Source/DLLs/1.128.3/galaxy/IFriends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.128.3/galaxy/IFriends.h -------------------------------------------------------------------------------- /Source/DLLs/1.128.3/galaxy/ILogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.128.3/galaxy/ILogger.h -------------------------------------------------------------------------------- /Source/DLLs/1.128.3/galaxy/IStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.128.3/galaxy/IStats.h -------------------------------------------------------------------------------- /Source/DLLs/1.128.3/galaxy/IStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.128.3/galaxy/IStorage.h -------------------------------------------------------------------------------- /Source/DLLs/1.128.3/galaxy/IUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.128.3/galaxy/IUser.h -------------------------------------------------------------------------------- /Source/DLLs/1.128.3/galaxy/IUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.128.3/galaxy/IUtils.h -------------------------------------------------------------------------------- /Source/DLLs/1.128.3/gog/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.128.3/gog/README.MD -------------------------------------------------------------------------------- /Source/DLLs/1.130.0/Dll.cxx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/DLLs/1.130.0/compat_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.130.0/compat_list.txt -------------------------------------------------------------------------------- /Source/DLLs/1.130.0/galaxy/Errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.130.0/galaxy/Errors.h -------------------------------------------------------------------------------- /Source/DLLs/1.130.0/galaxy/GalaxyID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.130.0/galaxy/GalaxyID.h -------------------------------------------------------------------------------- /Source/DLLs/1.130.0/galaxy/IApps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.130.0/galaxy/IApps.h -------------------------------------------------------------------------------- /Source/DLLs/1.130.0/galaxy/IChat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.130.0/galaxy/IChat.h -------------------------------------------------------------------------------- /Source/DLLs/1.130.0/galaxy/IFriends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.130.0/galaxy/IFriends.h -------------------------------------------------------------------------------- /Source/DLLs/1.130.0/galaxy/ILogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.130.0/galaxy/ILogger.h -------------------------------------------------------------------------------- /Source/DLLs/1.130.0/galaxy/IStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.130.0/galaxy/IStats.h -------------------------------------------------------------------------------- /Source/DLLs/1.130.0/galaxy/IStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.130.0/galaxy/IStorage.h -------------------------------------------------------------------------------- /Source/DLLs/1.130.0/galaxy/IUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.130.0/galaxy/IUser.h -------------------------------------------------------------------------------- /Source/DLLs/1.130.0/galaxy/IUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.130.0/galaxy/IUtils.h -------------------------------------------------------------------------------- /Source/DLLs/1.130.0/gog/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.130.0/gog/README.MD -------------------------------------------------------------------------------- /Source/DLLs/1.131.3/Dll.cxx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/DLLs/1.131.3/compat_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.131.3/compat_list.txt -------------------------------------------------------------------------------- /Source/DLLs/1.131.3/galaxy/Errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.131.3/galaxy/Errors.h -------------------------------------------------------------------------------- /Source/DLLs/1.131.3/galaxy/GalaxyID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.131.3/galaxy/GalaxyID.h -------------------------------------------------------------------------------- /Source/DLLs/1.131.3/galaxy/IApps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.131.3/galaxy/IApps.h -------------------------------------------------------------------------------- /Source/DLLs/1.131.3/galaxy/IChat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.131.3/galaxy/IChat.h -------------------------------------------------------------------------------- /Source/DLLs/1.131.3/galaxy/IFriends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.131.3/galaxy/IFriends.h -------------------------------------------------------------------------------- /Source/DLLs/1.131.3/galaxy/ILogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.131.3/galaxy/ILogger.h -------------------------------------------------------------------------------- /Source/DLLs/1.131.3/galaxy/IStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.131.3/galaxy/IStats.h -------------------------------------------------------------------------------- /Source/DLLs/1.131.3/galaxy/IStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.131.3/galaxy/IStorage.h -------------------------------------------------------------------------------- /Source/DLLs/1.131.3/galaxy/IUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.131.3/galaxy/IUser.h -------------------------------------------------------------------------------- /Source/DLLs/1.131.3/galaxy/IUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.131.3/galaxy/IUtils.h -------------------------------------------------------------------------------- /Source/DLLs/1.131.3/gog/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.131.3/gog/README.MD -------------------------------------------------------------------------------- /Source/DLLs/1.132.1/Dll.cxx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/DLLs/1.132.1/compat_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.132.1/compat_list.txt -------------------------------------------------------------------------------- /Source/DLLs/1.132.1/galaxy/Errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.132.1/galaxy/Errors.h -------------------------------------------------------------------------------- /Source/DLLs/1.132.1/galaxy/GalaxyID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.132.1/galaxy/GalaxyID.h -------------------------------------------------------------------------------- /Source/DLLs/1.132.1/galaxy/IApps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.132.1/galaxy/IApps.h -------------------------------------------------------------------------------- /Source/DLLs/1.132.1/galaxy/IChat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.132.1/galaxy/IChat.h -------------------------------------------------------------------------------- /Source/DLLs/1.132.1/galaxy/IFriends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.132.1/galaxy/IFriends.h -------------------------------------------------------------------------------- /Source/DLLs/1.132.1/galaxy/ILogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.132.1/galaxy/ILogger.h -------------------------------------------------------------------------------- /Source/DLLs/1.132.1/galaxy/IStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.132.1/galaxy/IStats.h -------------------------------------------------------------------------------- /Source/DLLs/1.132.1/galaxy/IStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.132.1/galaxy/IStorage.h -------------------------------------------------------------------------------- /Source/DLLs/1.132.1/galaxy/IUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.132.1/galaxy/IUser.h -------------------------------------------------------------------------------- /Source/DLLs/1.132.1/galaxy/IUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.132.1/galaxy/IUtils.h -------------------------------------------------------------------------------- /Source/DLLs/1.132.1/gog/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.132.1/gog/README.MD -------------------------------------------------------------------------------- /Source/DLLs/1.133.0/Dll.cxx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/DLLs/1.133.0/galaxy/Errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.133.0/galaxy/Errors.h -------------------------------------------------------------------------------- /Source/DLLs/1.133.0/galaxy/GalaxyID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.133.0/galaxy/GalaxyID.h -------------------------------------------------------------------------------- /Source/DLLs/1.133.0/galaxy/IApps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.133.0/galaxy/IApps.h -------------------------------------------------------------------------------- /Source/DLLs/1.133.0/galaxy/IChat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.133.0/galaxy/IChat.h -------------------------------------------------------------------------------- /Source/DLLs/1.133.0/galaxy/IFriends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.133.0/galaxy/IFriends.h -------------------------------------------------------------------------------- /Source/DLLs/1.133.0/galaxy/ILogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.133.0/galaxy/ILogger.h -------------------------------------------------------------------------------- /Source/DLLs/1.133.0/galaxy/IStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.133.0/galaxy/IStats.h -------------------------------------------------------------------------------- /Source/DLLs/1.133.0/galaxy/IStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.133.0/galaxy/IStorage.h -------------------------------------------------------------------------------- /Source/DLLs/1.133.0/galaxy/IUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.133.0/galaxy/IUser.h -------------------------------------------------------------------------------- /Source/DLLs/1.133.0/galaxy/IUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.133.0/galaxy/IUtils.h -------------------------------------------------------------------------------- /Source/DLLs/1.133.0/gog/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.133.0/gog/README.MD -------------------------------------------------------------------------------- /Source/DLLs/1.133.6/Dll.cxx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/DLLs/1.133.6/compat_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.133.6/compat_list.txt -------------------------------------------------------------------------------- /Source/DLLs/1.133.6/galaxy/Errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.133.6/galaxy/Errors.h -------------------------------------------------------------------------------- /Source/DLLs/1.133.6/galaxy/GalaxyID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.133.6/galaxy/GalaxyID.h -------------------------------------------------------------------------------- /Source/DLLs/1.133.6/galaxy/IApps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.133.6/galaxy/IApps.h -------------------------------------------------------------------------------- /Source/DLLs/1.133.6/galaxy/IChat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.133.6/galaxy/IChat.h -------------------------------------------------------------------------------- /Source/DLLs/1.133.6/galaxy/IFriends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.133.6/galaxy/IFriends.h -------------------------------------------------------------------------------- /Source/DLLs/1.133.6/galaxy/ILogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.133.6/galaxy/ILogger.h -------------------------------------------------------------------------------- /Source/DLLs/1.133.6/galaxy/IStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.133.6/galaxy/IStats.h -------------------------------------------------------------------------------- /Source/DLLs/1.133.6/galaxy/IStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.133.6/galaxy/IStorage.h -------------------------------------------------------------------------------- /Source/DLLs/1.133.6/galaxy/IUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.133.6/galaxy/IUser.h -------------------------------------------------------------------------------- /Source/DLLs/1.133.6/galaxy/IUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.133.6/galaxy/IUtils.h -------------------------------------------------------------------------------- /Source/DLLs/1.133.6/gog/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.133.6/gog/README.MD -------------------------------------------------------------------------------- /Source/DLLs/1.134.10/Dll.cxx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/DLLs/1.134.10/galaxy/Errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.134.10/galaxy/Errors.h -------------------------------------------------------------------------------- /Source/DLLs/1.134.10/galaxy/IApps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.134.10/galaxy/IApps.h -------------------------------------------------------------------------------- /Source/DLLs/1.134.10/galaxy/IChat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.134.10/galaxy/IChat.h -------------------------------------------------------------------------------- /Source/DLLs/1.134.10/galaxy/ILogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.134.10/galaxy/ILogger.h -------------------------------------------------------------------------------- /Source/DLLs/1.134.10/galaxy/IStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.134.10/galaxy/IStats.h -------------------------------------------------------------------------------- /Source/DLLs/1.134.10/galaxy/IUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.134.10/galaxy/IUser.h -------------------------------------------------------------------------------- /Source/DLLs/1.134.10/galaxy/IUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.134.10/galaxy/IUtils.h -------------------------------------------------------------------------------- /Source/DLLs/1.134.10/gog/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.134.10/gog/README.MD -------------------------------------------------------------------------------- /Source/DLLs/1.134.8/Dll.cxx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/DLLs/1.134.8/compat_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.134.8/compat_list.txt -------------------------------------------------------------------------------- /Source/DLLs/1.134.8/galaxy/Errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.134.8/galaxy/Errors.h -------------------------------------------------------------------------------- /Source/DLLs/1.134.8/galaxy/GalaxyID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.134.8/galaxy/GalaxyID.h -------------------------------------------------------------------------------- /Source/DLLs/1.134.8/galaxy/IApps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.134.8/galaxy/IApps.h -------------------------------------------------------------------------------- /Source/DLLs/1.134.8/galaxy/IChat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.134.8/galaxy/IChat.h -------------------------------------------------------------------------------- /Source/DLLs/1.134.8/galaxy/IFriends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.134.8/galaxy/IFriends.h -------------------------------------------------------------------------------- /Source/DLLs/1.134.8/galaxy/ILogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.134.8/galaxy/ILogger.h -------------------------------------------------------------------------------- /Source/DLLs/1.134.8/galaxy/IStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.134.8/galaxy/IStats.h -------------------------------------------------------------------------------- /Source/DLLs/1.134.8/galaxy/IStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.134.8/galaxy/IStorage.h -------------------------------------------------------------------------------- /Source/DLLs/1.134.8/galaxy/IUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.134.8/galaxy/IUser.h -------------------------------------------------------------------------------- /Source/DLLs/1.134.8/galaxy/IUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.134.8/galaxy/IUtils.h -------------------------------------------------------------------------------- /Source/DLLs/1.134.8/gog/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.134.8/gog/README.MD -------------------------------------------------------------------------------- /Source/DLLs/1.134.9/Dll.cxx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/DLLs/1.134.9/galaxy/Errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.134.9/galaxy/Errors.h -------------------------------------------------------------------------------- /Source/DLLs/1.134.9/galaxy/GalaxyID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.134.9/galaxy/GalaxyID.h -------------------------------------------------------------------------------- /Source/DLLs/1.134.9/galaxy/IApps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.134.9/galaxy/IApps.h -------------------------------------------------------------------------------- /Source/DLLs/1.134.9/galaxy/IChat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.134.9/galaxy/IChat.h -------------------------------------------------------------------------------- /Source/DLLs/1.134.9/galaxy/IFriends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.134.9/galaxy/IFriends.h -------------------------------------------------------------------------------- /Source/DLLs/1.134.9/galaxy/ILogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.134.9/galaxy/ILogger.h -------------------------------------------------------------------------------- /Source/DLLs/1.134.9/galaxy/IStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.134.9/galaxy/IStats.h -------------------------------------------------------------------------------- /Source/DLLs/1.134.9/galaxy/IStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.134.9/galaxy/IStorage.h -------------------------------------------------------------------------------- /Source/DLLs/1.134.9/galaxy/IUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.134.9/galaxy/IUser.h -------------------------------------------------------------------------------- /Source/DLLs/1.134.9/galaxy/IUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.134.9/galaxy/IUtils.h -------------------------------------------------------------------------------- /Source/DLLs/1.134.9/gog/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.134.9/gog/README.MD -------------------------------------------------------------------------------- /Source/DLLs/1.135.0/Dll.cxx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/DLLs/1.135.0/galaxy/Errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.135.0/galaxy/Errors.h -------------------------------------------------------------------------------- /Source/DLLs/1.135.0/galaxy/GalaxyID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.135.0/galaxy/GalaxyID.h -------------------------------------------------------------------------------- /Source/DLLs/1.135.0/galaxy/IApps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.135.0/galaxy/IApps.h -------------------------------------------------------------------------------- /Source/DLLs/1.135.0/galaxy/IChat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.135.0/galaxy/IChat.h -------------------------------------------------------------------------------- /Source/DLLs/1.135.0/galaxy/IFriends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.135.0/galaxy/IFriends.h -------------------------------------------------------------------------------- /Source/DLLs/1.135.0/galaxy/ILogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.135.0/galaxy/ILogger.h -------------------------------------------------------------------------------- /Source/DLLs/1.135.0/galaxy/IStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.135.0/galaxy/IStats.h -------------------------------------------------------------------------------- /Source/DLLs/1.135.0/galaxy/IStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.135.0/galaxy/IStorage.h -------------------------------------------------------------------------------- /Source/DLLs/1.135.0/galaxy/IUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.135.0/galaxy/IUser.h -------------------------------------------------------------------------------- /Source/DLLs/1.135.0/galaxy/IUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.135.0/galaxy/IUtils.h -------------------------------------------------------------------------------- /Source/DLLs/1.135.0/gog/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.135.0/gog/README.MD -------------------------------------------------------------------------------- /Source/DLLs/1.138.0/Dll.cxx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/DLLs/1.138.0/compat_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.138.0/compat_list.txt -------------------------------------------------------------------------------- /Source/DLLs/1.138.0/galaxy/Errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.138.0/galaxy/Errors.h -------------------------------------------------------------------------------- /Source/DLLs/1.138.0/galaxy/GalaxyID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.138.0/galaxy/GalaxyID.h -------------------------------------------------------------------------------- /Source/DLLs/1.138.0/galaxy/IApps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.138.0/galaxy/IApps.h -------------------------------------------------------------------------------- /Source/DLLs/1.138.0/galaxy/IChat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.138.0/galaxy/IChat.h -------------------------------------------------------------------------------- /Source/DLLs/1.138.0/galaxy/IFriends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.138.0/galaxy/IFriends.h -------------------------------------------------------------------------------- /Source/DLLs/1.138.0/galaxy/ILogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.138.0/galaxy/ILogger.h -------------------------------------------------------------------------------- /Source/DLLs/1.138.0/galaxy/IStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.138.0/galaxy/IStats.h -------------------------------------------------------------------------------- /Source/DLLs/1.138.0/galaxy/IStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.138.0/galaxy/IStorage.h -------------------------------------------------------------------------------- /Source/DLLs/1.138.0/galaxy/IUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.138.0/galaxy/IUser.h -------------------------------------------------------------------------------- /Source/DLLs/1.138.0/galaxy/IUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.138.0/galaxy/IUtils.h -------------------------------------------------------------------------------- /Source/DLLs/1.138.0/gog/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.138.0/gog/README.MD -------------------------------------------------------------------------------- /Source/DLLs/1.139.2/Dll.cxx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/DLLs/1.139.2/compat_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.139.2/compat_list.txt -------------------------------------------------------------------------------- /Source/DLLs/1.139.2/galaxy/Errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.139.2/galaxy/Errors.h -------------------------------------------------------------------------------- /Source/DLLs/1.139.2/galaxy/GalaxyID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.139.2/galaxy/GalaxyID.h -------------------------------------------------------------------------------- /Source/DLLs/1.139.2/galaxy/IApps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.139.2/galaxy/IApps.h -------------------------------------------------------------------------------- /Source/DLLs/1.139.2/galaxy/IChat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.139.2/galaxy/IChat.h -------------------------------------------------------------------------------- /Source/DLLs/1.139.2/galaxy/IFriends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.139.2/galaxy/IFriends.h -------------------------------------------------------------------------------- /Source/DLLs/1.139.2/galaxy/ILogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.139.2/galaxy/ILogger.h -------------------------------------------------------------------------------- /Source/DLLs/1.139.2/galaxy/IStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.139.2/galaxy/IStats.h -------------------------------------------------------------------------------- /Source/DLLs/1.139.2/galaxy/IStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.139.2/galaxy/IStorage.h -------------------------------------------------------------------------------- /Source/DLLs/1.139.2/galaxy/IUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.139.2/galaxy/IUser.h -------------------------------------------------------------------------------- /Source/DLLs/1.139.2/galaxy/IUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.139.2/galaxy/IUtils.h -------------------------------------------------------------------------------- /Source/DLLs/1.139.2/gog/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.139.2/gog/README.MD -------------------------------------------------------------------------------- /Source/DLLs/1.139.5/Dll.cxx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/DLLs/1.139.5/compat_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.139.5/compat_list.txt -------------------------------------------------------------------------------- /Source/DLLs/1.139.5/galaxy/Errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.139.5/galaxy/Errors.h -------------------------------------------------------------------------------- /Source/DLLs/1.139.5/galaxy/GalaxyID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.139.5/galaxy/GalaxyID.h -------------------------------------------------------------------------------- /Source/DLLs/1.139.5/galaxy/IApps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.139.5/galaxy/IApps.h -------------------------------------------------------------------------------- /Source/DLLs/1.139.5/galaxy/IChat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.139.5/galaxy/IChat.h -------------------------------------------------------------------------------- /Source/DLLs/1.139.5/galaxy/IFriends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.139.5/galaxy/IFriends.h -------------------------------------------------------------------------------- /Source/DLLs/1.139.5/galaxy/ILogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.139.5/galaxy/ILogger.h -------------------------------------------------------------------------------- /Source/DLLs/1.139.5/galaxy/IStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.139.5/galaxy/IStats.h -------------------------------------------------------------------------------- /Source/DLLs/1.139.5/galaxy/IStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.139.5/galaxy/IStorage.h -------------------------------------------------------------------------------- /Source/DLLs/1.139.5/galaxy/IUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.139.5/galaxy/IUser.h -------------------------------------------------------------------------------- /Source/DLLs/1.139.5/galaxy/IUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.139.5/galaxy/IUtils.h -------------------------------------------------------------------------------- /Source/DLLs/1.139.5/gog/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.139.5/gog/README.MD -------------------------------------------------------------------------------- /Source/DLLs/1.139.6/Dll.cxx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/DLLs/1.139.6/galaxy/Errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.139.6/galaxy/Errors.h -------------------------------------------------------------------------------- /Source/DLLs/1.139.6/galaxy/GalaxyID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.139.6/galaxy/GalaxyID.h -------------------------------------------------------------------------------- /Source/DLLs/1.139.6/galaxy/IApps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.139.6/galaxy/IApps.h -------------------------------------------------------------------------------- /Source/DLLs/1.139.6/galaxy/IChat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.139.6/galaxy/IChat.h -------------------------------------------------------------------------------- /Source/DLLs/1.139.6/galaxy/IFriends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.139.6/galaxy/IFriends.h -------------------------------------------------------------------------------- /Source/DLLs/1.139.6/galaxy/ILogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.139.6/galaxy/ILogger.h -------------------------------------------------------------------------------- /Source/DLLs/1.139.6/galaxy/IStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.139.6/galaxy/IStats.h -------------------------------------------------------------------------------- /Source/DLLs/1.139.6/galaxy/IStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.139.6/galaxy/IStorage.h -------------------------------------------------------------------------------- /Source/DLLs/1.139.6/galaxy/IUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.139.6/galaxy/IUser.h -------------------------------------------------------------------------------- /Source/DLLs/1.139.6/galaxy/IUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.139.6/galaxy/IUtils.h -------------------------------------------------------------------------------- /Source/DLLs/1.139.6/gog/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.139.6/gog/README.MD -------------------------------------------------------------------------------- /Source/DLLs/1.139.9/Dll.cxx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/DLLs/1.139.9/compat_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.139.9/compat_list.txt -------------------------------------------------------------------------------- /Source/DLLs/1.139.9/galaxy/Errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.139.9/galaxy/Errors.h -------------------------------------------------------------------------------- /Source/DLLs/1.139.9/galaxy/GalaxyID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.139.9/galaxy/GalaxyID.h -------------------------------------------------------------------------------- /Source/DLLs/1.139.9/galaxy/IApps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.139.9/galaxy/IApps.h -------------------------------------------------------------------------------- /Source/DLLs/1.139.9/galaxy/IChat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.139.9/galaxy/IChat.h -------------------------------------------------------------------------------- /Source/DLLs/1.139.9/galaxy/IFriends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.139.9/galaxy/IFriends.h -------------------------------------------------------------------------------- /Source/DLLs/1.139.9/galaxy/ILogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.139.9/galaxy/ILogger.h -------------------------------------------------------------------------------- /Source/DLLs/1.139.9/galaxy/IStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.139.9/galaxy/IStats.h -------------------------------------------------------------------------------- /Source/DLLs/1.139.9/galaxy/IStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.139.9/galaxy/IStorage.h -------------------------------------------------------------------------------- /Source/DLLs/1.139.9/galaxy/IUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.139.9/galaxy/IUser.h -------------------------------------------------------------------------------- /Source/DLLs/1.139.9/galaxy/IUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.139.9/galaxy/IUtils.h -------------------------------------------------------------------------------- /Source/DLLs/1.139.9/gog/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.139.9/gog/README.MD -------------------------------------------------------------------------------- /Source/DLLs/1.140.0/Dll.cxx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/DLLs/1.140.0/galaxy/Errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.140.0/galaxy/Errors.h -------------------------------------------------------------------------------- /Source/DLLs/1.140.0/galaxy/GalaxyID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.140.0/galaxy/GalaxyID.h -------------------------------------------------------------------------------- /Source/DLLs/1.140.0/galaxy/IApps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.140.0/galaxy/IApps.h -------------------------------------------------------------------------------- /Source/DLLs/1.140.0/galaxy/IChat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.140.0/galaxy/IChat.h -------------------------------------------------------------------------------- /Source/DLLs/1.140.0/galaxy/IFriends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.140.0/galaxy/IFriends.h -------------------------------------------------------------------------------- /Source/DLLs/1.140.0/galaxy/ILogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.140.0/galaxy/ILogger.h -------------------------------------------------------------------------------- /Source/DLLs/1.140.0/galaxy/IStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.140.0/galaxy/IStats.h -------------------------------------------------------------------------------- /Source/DLLs/1.140.0/galaxy/IUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.140.0/galaxy/IUser.h -------------------------------------------------------------------------------- /Source/DLLs/1.140.0/gog/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.140.0/gog/README.MD -------------------------------------------------------------------------------- /Source/DLLs/1.142.0/Dll.cxx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/DLLs/1.142.0/compat_list.txt: -------------------------------------------------------------------------------- 1 | 1.141.0 2 | 1.142.0 -------------------------------------------------------------------------------- /Source/DLLs/1.142.0/galaxy/IApps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.142.0/galaxy/IApps.h -------------------------------------------------------------------------------- /Source/DLLs/1.142.0/galaxy/IChat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.142.0/galaxy/IChat.h -------------------------------------------------------------------------------- /Source/DLLs/1.142.0/galaxy/IUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.142.0/galaxy/IUser.h -------------------------------------------------------------------------------- /Source/DLLs/1.142.0/gog/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.142.0/gog/README.MD -------------------------------------------------------------------------------- /Source/DLLs/1.144.1/Dll.cxx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/DLLs/1.144.1/galaxy/IApps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.144.1/galaxy/IApps.h -------------------------------------------------------------------------------- /Source/DLLs/1.144.1/galaxy/IChat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.144.1/galaxy/IChat.h -------------------------------------------------------------------------------- /Source/DLLs/1.144.1/galaxy/IUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.144.1/galaxy/IUser.h -------------------------------------------------------------------------------- /Source/DLLs/1.144.1/gog/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.144.1/gog/README.MD -------------------------------------------------------------------------------- /Source/DLLs/1.148.1/Dll.cxx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/DLLs/1.148.1/galaxy/IApps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.148.1/galaxy/IApps.h -------------------------------------------------------------------------------- /Source/DLLs/1.148.1/galaxy/IChat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.148.1/galaxy/IChat.h -------------------------------------------------------------------------------- /Source/DLLs/1.148.1/galaxy/IUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.148.1/galaxy/IUser.h -------------------------------------------------------------------------------- /Source/DLLs/1.148.1/gog/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.148.1/gog/README.MD -------------------------------------------------------------------------------- /Source/DLLs/1.148.11/Dll.cxx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/DLLs/1.148.11/gog/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.148.11/gog/README.MD -------------------------------------------------------------------------------- /Source/DLLs/1.148.14/Dll.cxx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/DLLs/1.148.14/gog/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.148.14/gog/README.MD -------------------------------------------------------------------------------- /Source/DLLs/1.148.2/Dll.cxx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/DLLs/1.148.2/galaxy/IApps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.148.2/galaxy/IApps.h -------------------------------------------------------------------------------- /Source/DLLs/1.148.2/galaxy/IChat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.148.2/galaxy/IChat.h -------------------------------------------------------------------------------- /Source/DLLs/1.148.2/galaxy/IUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.148.2/galaxy/IUser.h -------------------------------------------------------------------------------- /Source/DLLs/1.148.2/gog/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.148.2/gog/README.MD -------------------------------------------------------------------------------- /Source/DLLs/1.148.3/Dll.cxx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/DLLs/1.148.3/galaxy/IApps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.148.3/galaxy/IApps.h -------------------------------------------------------------------------------- /Source/DLLs/1.148.3/galaxy/IChat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.148.3/galaxy/IChat.h -------------------------------------------------------------------------------- /Source/DLLs/1.148.3/galaxy/IUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.148.3/galaxy/IUser.h -------------------------------------------------------------------------------- /Source/DLLs/1.148.3/gog/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.148.3/gog/README.MD -------------------------------------------------------------------------------- /Source/DLLs/1.148.5/Dll.cxx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/DLLs/1.148.5/galaxy/IApps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.148.5/galaxy/IApps.h -------------------------------------------------------------------------------- /Source/DLLs/1.148.5/galaxy/IChat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.148.5/galaxy/IChat.h -------------------------------------------------------------------------------- /Source/DLLs/1.148.5/galaxy/IUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.148.5/galaxy/IUser.h -------------------------------------------------------------------------------- /Source/DLLs/1.148.5/gog/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.148.5/gog/README.MD -------------------------------------------------------------------------------- /Source/DLLs/1.148.6/Dll.cxx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/DLLs/1.148.6/galaxy/IApps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.148.6/galaxy/IApps.h -------------------------------------------------------------------------------- /Source/DLLs/1.148.6/galaxy/IChat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.148.6/galaxy/IChat.h -------------------------------------------------------------------------------- /Source/DLLs/1.148.6/galaxy/IUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.148.6/galaxy/IUser.h -------------------------------------------------------------------------------- /Source/DLLs/1.148.6/gog/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.148.6/gog/README.MD -------------------------------------------------------------------------------- /Source/DLLs/1.148.7/Dll.cxx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/DLLs/1.148.7/galaxy/IApps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.148.7/galaxy/IApps.h -------------------------------------------------------------------------------- /Source/DLLs/1.148.7/galaxy/IChat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.148.7/galaxy/IChat.h -------------------------------------------------------------------------------- /Source/DLLs/1.148.7/galaxy/IUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.148.7/galaxy/IUser.h -------------------------------------------------------------------------------- /Source/DLLs/1.148.7/gog/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.148.7/gog/README.MD -------------------------------------------------------------------------------- /Source/DLLs/1.149.0/Dll.cxx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/DLLs/1.149.0/galaxy/IApps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.149.0/galaxy/IApps.h -------------------------------------------------------------------------------- /Source/DLLs/1.149.0/galaxy/IChat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.149.0/galaxy/IChat.h -------------------------------------------------------------------------------- /Source/DLLs/1.149.0/galaxy/IUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.149.0/galaxy/IUser.h -------------------------------------------------------------------------------- /Source/DLLs/1.149.0/gog/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.149.0/gog/README.MD -------------------------------------------------------------------------------- /Source/DLLs/1.150.0/Dll.cxx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/DLLs/1.150.0/galaxy/IApps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.150.0/galaxy/IApps.h -------------------------------------------------------------------------------- /Source/DLLs/1.150.0/galaxy/IChat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.150.0/galaxy/IChat.h -------------------------------------------------------------------------------- /Source/DLLs/1.150.0/galaxy/IUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.150.0/galaxy/IUser.h -------------------------------------------------------------------------------- /Source/DLLs/1.150.0/gog/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.150.0/gog/README.MD -------------------------------------------------------------------------------- /Source/DLLs/1.151.0/Dll.cxx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/DLLs/1.151.0/galaxy/IApps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.151.0/galaxy/IApps.h -------------------------------------------------------------------------------- /Source/DLLs/1.151.0/galaxy/IChat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.151.0/galaxy/IChat.h -------------------------------------------------------------------------------- /Source/DLLs/1.151.0/galaxy/IUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.151.0/galaxy/IUser.h -------------------------------------------------------------------------------- /Source/DLLs/1.151.0/gog/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.151.0/gog/README.MD -------------------------------------------------------------------------------- /Source/DLLs/1.152.1/Dll.cxx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/DLLs/1.152.1/galaxy/IApps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.152.1/galaxy/IApps.h -------------------------------------------------------------------------------- /Source/DLLs/1.152.1/galaxy/IChat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.152.1/galaxy/IChat.h -------------------------------------------------------------------------------- /Source/DLLs/1.152.1/galaxy/IUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.152.1/galaxy/IUser.h -------------------------------------------------------------------------------- /Source/DLLs/1.152.1/gog/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.152.1/gog/README.MD -------------------------------------------------------------------------------- /Source/DLLs/1.152.11/Dll.cxx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/DLLs/1.152.11/gog/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.152.11/gog/README.MD -------------------------------------------------------------------------------- /Source/DLLs/1.152.2/Dll.cxx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/DLLs/1.152.2/galaxy/IApps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.152.2/galaxy/IApps.h -------------------------------------------------------------------------------- /Source/DLLs/1.152.2/galaxy/IChat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.152.2/galaxy/IChat.h -------------------------------------------------------------------------------- /Source/DLLs/1.152.2/galaxy/IUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.152.2/galaxy/IUser.h -------------------------------------------------------------------------------- /Source/DLLs/1.152.2/gog/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.152.2/gog/README.MD -------------------------------------------------------------------------------- /Source/DLLs/1.152.6/Dll.cxx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/DLLs/1.152.6/galaxy/IApps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.152.6/galaxy/IApps.h -------------------------------------------------------------------------------- /Source/DLLs/1.152.6/galaxy/IChat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.152.6/galaxy/IChat.h -------------------------------------------------------------------------------- /Source/DLLs/1.152.6/galaxy/IUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.152.6/galaxy/IUser.h -------------------------------------------------------------------------------- /Source/DLLs/1.152.6/gog/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.152.6/gog/README.MD -------------------------------------------------------------------------------- /Source/DLLs/1.152.9/Dll.cxx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/DLLs/1.152.9/galaxy/IApps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.152.9/galaxy/IApps.h -------------------------------------------------------------------------------- /Source/DLLs/1.152.9/galaxy/IChat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.152.9/galaxy/IChat.h -------------------------------------------------------------------------------- /Source/DLLs/1.152.9/galaxy/IUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.152.9/galaxy/IUser.h -------------------------------------------------------------------------------- /Source/DLLs/1.152.9/gog/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.152.9/gog/README.MD -------------------------------------------------------------------------------- /Source/DLLs/1.57.0/Factory.cxx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/DLLs/1.57.0/galaxy/Errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.57.0/galaxy/Errors.h -------------------------------------------------------------------------------- /Source/DLLs/1.57.0/galaxy/IStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.57.0/galaxy/IStats.h -------------------------------------------------------------------------------- /Source/DLLs/1.57.0/galaxy/IUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.57.0/galaxy/IUser.h -------------------------------------------------------------------------------- /Source/DLLs/1.57.0/gog/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.57.0/gog/README.MD -------------------------------------------------------------------------------- /Source/DLLs/1.60.0/Factory.cxx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/DLLs/1.60.0/compat_list.txt: -------------------------------------------------------------------------------- 1 | 1.59 2 | 1.60 -------------------------------------------------------------------------------- /Source/DLLs/1.60.0/galaxy/Errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.60.0/galaxy/Errors.h -------------------------------------------------------------------------------- /Source/DLLs/1.60.0/galaxy/IStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.60.0/galaxy/IStats.h -------------------------------------------------------------------------------- /Source/DLLs/1.60.0/galaxy/IUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.60.0/galaxy/IUser.h -------------------------------------------------------------------------------- /Source/DLLs/1.60.0/gog/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.60.0/gog/README.MD -------------------------------------------------------------------------------- /Source/DLLs/1.61.0/Factory.cxx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/DLLs/1.61.0/galaxy/Errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.61.0/galaxy/Errors.h -------------------------------------------------------------------------------- /Source/DLLs/1.61.0/galaxy/IStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.61.0/galaxy/IStats.h -------------------------------------------------------------------------------- /Source/DLLs/1.61.0/galaxy/IUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.61.0/galaxy/IUser.h -------------------------------------------------------------------------------- /Source/DLLs/1.61.0/gog/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.61.0/gog/README.MD -------------------------------------------------------------------------------- /Source/DLLs/1.64.0/Factory.cxx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/DLLs/1.64.0/compat_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.64.0/compat_list.txt -------------------------------------------------------------------------------- /Source/DLLs/1.64.0/galaxy/Errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.64.0/galaxy/Errors.h -------------------------------------------------------------------------------- /Source/DLLs/1.64.0/galaxy/IStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.64.0/galaxy/IStats.h -------------------------------------------------------------------------------- /Source/DLLs/1.64.0/galaxy/IUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.64.0/galaxy/IUser.h -------------------------------------------------------------------------------- /Source/DLLs/1.64.0/gog/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.64.0/gog/README.MD -------------------------------------------------------------------------------- /Source/DLLs/1.66.0/Factory.cxx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/DLLs/1.66.0/compat_list.txt: -------------------------------------------------------------------------------- 1 | 1.65 2 | 1.66 3 | -------------------------------------------------------------------------------- /Source/DLLs/1.66.0/galaxy/Errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.66.0/galaxy/Errors.h -------------------------------------------------------------------------------- /Source/DLLs/1.66.0/galaxy/IStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.66.0/galaxy/IStats.h -------------------------------------------------------------------------------- /Source/DLLs/1.66.0/galaxy/IUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.66.0/galaxy/IUser.h -------------------------------------------------------------------------------- /Source/DLLs/1.66.0/gog/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.66.0/gog/README.MD -------------------------------------------------------------------------------- /Source/DLLs/1.67.0/Factory.cxx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/DLLs/1.67.0/galaxy/Errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.67.0/galaxy/Errors.h -------------------------------------------------------------------------------- /Source/DLLs/1.67.0/galaxy/IStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.67.0/galaxy/IStats.h -------------------------------------------------------------------------------- /Source/DLLs/1.67.0/galaxy/IUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.67.0/galaxy/IUser.h -------------------------------------------------------------------------------- /Source/DLLs/1.67.0/galaxy/IUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.67.0/galaxy/IUtils.h -------------------------------------------------------------------------------- /Source/DLLs/1.67.0/gog/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.67.0/gog/README.MD -------------------------------------------------------------------------------- /Source/DLLs/1.68.0/Factory.cxx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/DLLs/1.68.0/galaxy/Errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.68.0/galaxy/Errors.h -------------------------------------------------------------------------------- /Source/DLLs/1.68.0/galaxy/IStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.68.0/galaxy/IStats.h -------------------------------------------------------------------------------- /Source/DLLs/1.68.0/galaxy/IUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.68.0/galaxy/IUser.h -------------------------------------------------------------------------------- /Source/DLLs/1.68.0/galaxy/IUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.68.0/galaxy/IUtils.h -------------------------------------------------------------------------------- /Source/DLLs/1.68.0/gog/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.68.0/gog/README.MD -------------------------------------------------------------------------------- /Source/DLLs/1.69.0/Factory.cxx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/DLLs/1.69.0/galaxy/Errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.69.0/galaxy/Errors.h -------------------------------------------------------------------------------- /Source/DLLs/1.69.0/galaxy/IStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.69.0/galaxy/IStats.h -------------------------------------------------------------------------------- /Source/DLLs/1.69.0/galaxy/IUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.69.0/galaxy/IUser.h -------------------------------------------------------------------------------- /Source/DLLs/1.69.0/galaxy/IUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.69.0/galaxy/IUtils.h -------------------------------------------------------------------------------- /Source/DLLs/1.69.0/gog/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.69.0/gog/README.MD -------------------------------------------------------------------------------- /Source/DLLs/1.70.0/Factory.cxx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/DLLs/1.70.0/galaxy/Errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.70.0/galaxy/Errors.h -------------------------------------------------------------------------------- /Source/DLLs/1.70.0/galaxy/IStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.70.0/galaxy/IStats.h -------------------------------------------------------------------------------- /Source/DLLs/1.70.0/galaxy/IUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.70.0/galaxy/IUser.h -------------------------------------------------------------------------------- /Source/DLLs/1.70.0/galaxy/IUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.70.0/galaxy/IUtils.h -------------------------------------------------------------------------------- /Source/DLLs/1.70.0/gog/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.70.0/gog/README.MD -------------------------------------------------------------------------------- /Source/DLLs/1.72.0/Factory.cxx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/DLLs/1.72.0/compat_list.txt: -------------------------------------------------------------------------------- 1 | 1.71 2 | 1.72 3 | -------------------------------------------------------------------------------- /Source/DLLs/1.72.0/galaxy/Errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.72.0/galaxy/Errors.h -------------------------------------------------------------------------------- /Source/DLLs/1.72.0/galaxy/IStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.72.0/galaxy/IStats.h -------------------------------------------------------------------------------- /Source/DLLs/1.72.0/galaxy/IUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.72.0/galaxy/IUser.h -------------------------------------------------------------------------------- /Source/DLLs/1.72.0/galaxy/IUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.72.0/galaxy/IUtils.h -------------------------------------------------------------------------------- /Source/DLLs/1.72.0/gog/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.72.0/gog/README.MD -------------------------------------------------------------------------------- /Source/DLLs/1.73.0/Factory.cxx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/DLLs/1.73.0/galaxy/Errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.73.0/galaxy/Errors.h -------------------------------------------------------------------------------- /Source/DLLs/1.73.0/galaxy/IApps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.73.0/galaxy/IApps.h -------------------------------------------------------------------------------- /Source/DLLs/1.73.0/galaxy/IStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.73.0/galaxy/IStats.h -------------------------------------------------------------------------------- /Source/DLLs/1.73.0/galaxy/IUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.73.0/galaxy/IUser.h -------------------------------------------------------------------------------- /Source/DLLs/1.73.0/galaxy/IUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.73.0/galaxy/IUtils.h -------------------------------------------------------------------------------- /Source/DLLs/1.73.0/gog/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.73.0/gog/README.MD -------------------------------------------------------------------------------- /Source/DLLs/1.74.0/Factory.cxx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/DLLs/1.74.0/galaxy/Errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.74.0/galaxy/Errors.h -------------------------------------------------------------------------------- /Source/DLLs/1.74.0/galaxy/IApps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.74.0/galaxy/IApps.h -------------------------------------------------------------------------------- /Source/DLLs/1.74.0/galaxy/IStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.74.0/galaxy/IStats.h -------------------------------------------------------------------------------- /Source/DLLs/1.74.0/galaxy/IUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.74.0/galaxy/IUser.h -------------------------------------------------------------------------------- /Source/DLLs/1.74.0/galaxy/IUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.74.0/galaxy/IUtils.h -------------------------------------------------------------------------------- /Source/DLLs/1.74.0/gog/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.74.0/gog/README.MD -------------------------------------------------------------------------------- /Source/DLLs/1.75.0/Factory.cxx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/DLLs/1.75.0/galaxy/Errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.75.0/galaxy/Errors.h -------------------------------------------------------------------------------- /Source/DLLs/1.75.0/galaxy/IApps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.75.0/galaxy/IApps.h -------------------------------------------------------------------------------- /Source/DLLs/1.75.0/galaxy/IStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.75.0/galaxy/IStats.h -------------------------------------------------------------------------------- /Source/DLLs/1.75.0/galaxy/IUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.75.0/galaxy/IUser.h -------------------------------------------------------------------------------- /Source/DLLs/1.75.0/galaxy/IUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.75.0/galaxy/IUtils.h -------------------------------------------------------------------------------- /Source/DLLs/1.75.0/gog/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.75.0/gog/README.MD -------------------------------------------------------------------------------- /Source/DLLs/1.76.0/Factory.cxx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/DLLs/1.76.0/galaxy/Errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.76.0/galaxy/Errors.h -------------------------------------------------------------------------------- /Source/DLLs/1.76.0/galaxy/IApps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.76.0/galaxy/IApps.h -------------------------------------------------------------------------------- /Source/DLLs/1.76.0/galaxy/IStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.76.0/galaxy/IStats.h -------------------------------------------------------------------------------- /Source/DLLs/1.76.0/galaxy/IUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.76.0/galaxy/IUser.h -------------------------------------------------------------------------------- /Source/DLLs/1.76.0/galaxy/IUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.76.0/galaxy/IUtils.h -------------------------------------------------------------------------------- /Source/DLLs/1.76.0/gog/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.76.0/gog/README.MD -------------------------------------------------------------------------------- /Source/DLLs/1.77.0/Factory.cxx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/DLLs/1.77.0/galaxy/Errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.77.0/galaxy/Errors.h -------------------------------------------------------------------------------- /Source/DLLs/1.77.0/galaxy/IApps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.77.0/galaxy/IApps.h -------------------------------------------------------------------------------- /Source/DLLs/1.77.0/galaxy/IStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.77.0/galaxy/IStats.h -------------------------------------------------------------------------------- /Source/DLLs/1.77.0/galaxy/IUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.77.0/galaxy/IUser.h -------------------------------------------------------------------------------- /Source/DLLs/1.77.0/galaxy/IUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.77.0/galaxy/IUtils.h -------------------------------------------------------------------------------- /Source/DLLs/1.77.0/gog/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.77.0/gog/README.MD -------------------------------------------------------------------------------- /Source/DLLs/1.80.0/Factory.cxx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/DLLs/1.80.0/compat_list.txt: -------------------------------------------------------------------------------- 1 | 1.78 2 | 1.79 3 | 1.80 4 | -------------------------------------------------------------------------------- /Source/DLLs/1.80.0/galaxy/Errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.80.0/galaxy/Errors.h -------------------------------------------------------------------------------- /Source/DLLs/1.80.0/galaxy/IApps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.80.0/galaxy/IApps.h -------------------------------------------------------------------------------- /Source/DLLs/1.80.0/galaxy/IStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.80.0/galaxy/IStats.h -------------------------------------------------------------------------------- /Source/DLLs/1.80.0/galaxy/IUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.80.0/galaxy/IUser.h -------------------------------------------------------------------------------- /Source/DLLs/1.80.0/galaxy/IUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.80.0/galaxy/IUtils.h -------------------------------------------------------------------------------- /Source/DLLs/1.80.0/gog/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.80.0/gog/README.MD -------------------------------------------------------------------------------- /Source/DLLs/1.87.0/Factory.cxx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/DLLs/1.87.0/compat_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.87.0/compat_list.txt -------------------------------------------------------------------------------- /Source/DLLs/1.87.0/galaxy/Errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.87.0/galaxy/Errors.h -------------------------------------------------------------------------------- /Source/DLLs/1.87.0/galaxy/IApps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.87.0/galaxy/IApps.h -------------------------------------------------------------------------------- /Source/DLLs/1.87.0/galaxy/IStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.87.0/galaxy/IStats.h -------------------------------------------------------------------------------- /Source/DLLs/1.87.0/galaxy/IUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.87.0/galaxy/IUser.h -------------------------------------------------------------------------------- /Source/DLLs/1.87.0/galaxy/IUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.87.0/galaxy/IUtils.h -------------------------------------------------------------------------------- /Source/DLLs/1.87.0/gog/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.87.0/gog/README.MD -------------------------------------------------------------------------------- /Source/DLLs/1.92.0/Factory.cxx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/DLLs/1.92.0/compat_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.92.0/compat_list.txt -------------------------------------------------------------------------------- /Source/DLLs/1.92.0/galaxy/Errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.92.0/galaxy/Errors.h -------------------------------------------------------------------------------- /Source/DLLs/1.92.0/galaxy/IApps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.92.0/galaxy/IApps.h -------------------------------------------------------------------------------- /Source/DLLs/1.92.0/galaxy/IStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.92.0/galaxy/IStats.h -------------------------------------------------------------------------------- /Source/DLLs/1.92.0/galaxy/IUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.92.0/galaxy/IUser.h -------------------------------------------------------------------------------- /Source/DLLs/1.92.0/galaxy/IUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.92.0/galaxy/IUtils.h -------------------------------------------------------------------------------- /Source/DLLs/1.92.0/gog/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.92.0/gog/README.MD -------------------------------------------------------------------------------- /Source/DLLs/1.95.0/Factory.cxx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/DLLs/1.95.0/compat_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.95.0/compat_list.txt -------------------------------------------------------------------------------- /Source/DLLs/1.95.0/galaxy/Errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.95.0/galaxy/Errors.h -------------------------------------------------------------------------------- /Source/DLLs/1.95.0/galaxy/IApps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.95.0/galaxy/IApps.h -------------------------------------------------------------------------------- /Source/DLLs/1.95.0/galaxy/IStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.95.0/galaxy/IStats.h -------------------------------------------------------------------------------- /Source/DLLs/1.95.0/galaxy/IUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.95.0/galaxy/IUser.h -------------------------------------------------------------------------------- /Source/DLLs/1.95.0/galaxy/IUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.95.0/galaxy/IUtils.h -------------------------------------------------------------------------------- /Source/DLLs/1.95.0/gog/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.95.0/gog/README.MD -------------------------------------------------------------------------------- /Source/DLLs/1.99.0/Factory.cxx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/DLLs/1.99.0/galaxy/Errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.99.0/galaxy/Errors.h -------------------------------------------------------------------------------- /Source/DLLs/1.99.0/galaxy/IApps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.99.0/galaxy/IApps.h -------------------------------------------------------------------------------- /Source/DLLs/1.99.0/galaxy/IStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.99.0/galaxy/IStats.h -------------------------------------------------------------------------------- /Source/DLLs/1.99.0/galaxy/IUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.99.0/galaxy/IUser.h -------------------------------------------------------------------------------- /Source/DLLs/1.99.0/galaxy/IUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.99.0/galaxy/IUtils.h -------------------------------------------------------------------------------- /Source/DLLs/1.99.0/gog/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/1.99.0/gog/README.MD -------------------------------------------------------------------------------- /Source/DLLs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/DLLs/CMakeLists.txt -------------------------------------------------------------------------------- /Source/Server/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Server/CMakeLists.txt -------------------------------------------------------------------------------- /Source/Server/Challenge.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Server/Challenge.cxx -------------------------------------------------------------------------------- /Source/Server/Challenge.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Server/Challenge.hxx -------------------------------------------------------------------------------- /Source/Server/GalaxyApiFactory.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Server/GalaxyApiFactory.cxx -------------------------------------------------------------------------------- /Source/Server/Main.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Server/Main.cxx -------------------------------------------------------------------------------- /Source/Server/Peer.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Server/Peer.cxx -------------------------------------------------------------------------------- /Source/Server/Peer.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Server/Peer.hxx -------------------------------------------------------------------------------- /Source/Server/Server.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Server/Server.cxx -------------------------------------------------------------------------------- /Source/Server/Server.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Server/Server.hxx -------------------------------------------------------------------------------- /Source/Server/ServerHandlers.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Server/ServerHandlers.cxx -------------------------------------------------------------------------------- /Source/Shared/AchievementData.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Shared/AchievementData.cxx -------------------------------------------------------------------------------- /Source/Shared/AchievementData.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Shared/AchievementData.hxx -------------------------------------------------------------------------------- /Source/Shared/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Shared/CMakeLists.txt -------------------------------------------------------------------------------- /Source/Shared/ChatMessage.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Shared/ChatMessage.cxx -------------------------------------------------------------------------------- /Source/Shared/ChatMessage.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Shared/ChatMessage.hxx -------------------------------------------------------------------------------- /Source/Shared/ChatRoom.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Shared/ChatRoom.cxx -------------------------------------------------------------------------------- /Source/Shared/ChatRoom.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Shared/ChatRoom.hxx -------------------------------------------------------------------------------- /Source/Shared/ChatRoomManager.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Shared/ChatRoomManager.cxx -------------------------------------------------------------------------------- /Source/Shared/ChatRoomManager.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Shared/ChatRoomManager.hxx -------------------------------------------------------------------------------- /Source/Shared/ConcurrentQueue.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Shared/ConcurrentQueue.hxx -------------------------------------------------------------------------------- /Source/Shared/ConstHash.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Shared/ConstHash.hxx -------------------------------------------------------------------------------- /Source/Shared/CustomConsole.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Shared/CustomConsole.cxx -------------------------------------------------------------------------------- /Source/Shared/CustomConsole.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Shared/CustomConsole.hxx -------------------------------------------------------------------------------- /Source/Shared/DynamicReturn.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Shared/DynamicReturn.hxx -------------------------------------------------------------------------------- /Source/Shared/EnvUtils.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Shared/EnvUtils.cxx -------------------------------------------------------------------------------- /Source/Shared/EnvUtils.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Shared/EnvUtils.hxx -------------------------------------------------------------------------------- /Source/Shared/GalaxyID.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Shared/GalaxyID.hxx -------------------------------------------------------------------------------- /Source/Shared/GalaxyUserData.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Shared/GalaxyUserData.cxx -------------------------------------------------------------------------------- /Source/Shared/GalaxyUserData.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Shared/GalaxyUserData.hxx -------------------------------------------------------------------------------- /Source/Shared/GlobalUniqueID.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Shared/GlobalUniqueID.cxx -------------------------------------------------------------------------------- /Source/Shared/GlobalUniqueID.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Shared/GlobalUniqueID.hxx -------------------------------------------------------------------------------- /Source/Shared/IniData.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Shared/IniData.cxx -------------------------------------------------------------------------------- /Source/Shared/IniData.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Shared/IniData.hxx -------------------------------------------------------------------------------- /Source/Shared/Lobby.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Shared/Lobby.cxx -------------------------------------------------------------------------------- /Source/Shared/Lobby.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Shared/Lobby.hxx -------------------------------------------------------------------------------- /Source/Shared/LobbyManager.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Shared/LobbyManager.cxx -------------------------------------------------------------------------------- /Source/Shared/LobbyManager.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Shared/LobbyManager.hxx -------------------------------------------------------------------------------- /Source/Shared/MachineInfo.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Shared/MachineInfo.cxx -------------------------------------------------------------------------------- /Source/Shared/MachineInfo.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Shared/MachineInfo.hxx -------------------------------------------------------------------------------- /Source/Shared/SafeStringCopy.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Shared/SafeStringCopy.hxx -------------------------------------------------------------------------------- /Source/Shared/SharedFileUtils.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Shared/SharedFileUtils.cxx -------------------------------------------------------------------------------- /Source/Shared/SharedFileUtils.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Shared/SharedFileUtils.hxx -------------------------------------------------------------------------------- /Source/Shared/SharedLibUtils.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Shared/SharedLibUtils.cxx -------------------------------------------------------------------------------- /Source/Shared/SharedLibUtils.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Shared/SharedLibUtils.hxx -------------------------------------------------------------------------------- /Source/TestCases/.gitignore: -------------------------------------------------------------------------------- 1 | credentials.cmake 2 | -------------------------------------------------------------------------------- /Source/TestCases/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/TestCases/CMakeLists.txt -------------------------------------------------------------------------------- /Source/TestCases/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/TestCases/README.MD -------------------------------------------------------------------------------- /Source/Tracer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Tracer/CMakeLists.txt -------------------------------------------------------------------------------- /Source/Tracer/MiniDump.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Tracer/MiniDump.cxx -------------------------------------------------------------------------------- /Source/Tracer/MiniDump.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Tracer/MiniDump.hxx -------------------------------------------------------------------------------- /Source/Tracer/Stacker.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Tracer/Stacker.cxx -------------------------------------------------------------------------------- /Source/Tracer/Stacker.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Tracer/Stacker.hxx -------------------------------------------------------------------------------- /Source/Tracer/Tracer.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Tracer/Tracer.cxx -------------------------------------------------------------------------------- /Source/Tracer/Tracer.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Tracer/Tracer.hxx -------------------------------------------------------------------------------- /Source/Vendor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Vendor/CMakeLists.txt -------------------------------------------------------------------------------- /Source/Vendor/Detours/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Vendor/Detours/.gitignore -------------------------------------------------------------------------------- /Source/Vendor/Detours/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 3.12) 2 | 3 | add_subdirectory(src) -------------------------------------------------------------------------------- /Source/Vendor/Detours/CREDITS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Vendor/Detours/CREDITS.md -------------------------------------------------------------------------------- /Source/Vendor/Detours/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Vendor/Detours/LICENSE.md -------------------------------------------------------------------------------- /Source/Vendor/Detours/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Vendor/Detours/Makefile -------------------------------------------------------------------------------- /Source/Vendor/Detours/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Vendor/Detours/README.md -------------------------------------------------------------------------------- /Source/Vendor/Detours/samples/cping/cping.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/Vendor/Detours/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Vendor/Detours/src/Makefile -------------------------------------------------------------------------------- /Source/Vendor/Detours/src/detver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Vendor/Detours/src/detver.h -------------------------------------------------------------------------------- /Source/Vendor/Detours/system.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Vendor/Detours/system.mak -------------------------------------------------------------------------------- /Source/Vendor/Enet/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Vendor/Enet/CMakeLists.txt -------------------------------------------------------------------------------- /Source/Vendor/Enet/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Vendor/Enet/LICENSE -------------------------------------------------------------------------------- /Source/Vendor/Enet/Source/host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Vendor/Enet/Source/host.c -------------------------------------------------------------------------------- /Source/Vendor/Enet/Source/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Vendor/Enet/Source/list.c -------------------------------------------------------------------------------- /Source/Vendor/Enet/Source/packet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Vendor/Enet/Source/packet.c -------------------------------------------------------------------------------- /Source/Vendor/Enet/Source/peer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Vendor/Enet/Source/peer.c -------------------------------------------------------------------------------- /Source/Vendor/Enet/Source/unix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Vendor/Enet/Source/unix.c -------------------------------------------------------------------------------- /Source/Vendor/Enet/Source/win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Vendor/Enet/Source/win32.c -------------------------------------------------------------------------------- /Source/Vendor/StackWalker/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Vendor/StackWalker/LICENSE -------------------------------------------------------------------------------- /Source/Vendor/boost/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Vendor/boost/CMakeLists.txt -------------------------------------------------------------------------------- /Source/Vendor/boost/Jamroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Vendor/boost/Jamroot -------------------------------------------------------------------------------- /Source/Vendor/boost/boost/asio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Vendor/boost/boost/asio.hpp -------------------------------------------------------------------------------- /Source/Vendor/boost/boost/predef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Vendor/boost/boost/predef.h -------------------------------------------------------------------------------- /Source/Vendor/boost/boost/ref.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Vendor/boost/boost/ref.hpp -------------------------------------------------------------------------------- /Source/Vendor/boost/boost/swap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Vendor/boost/boost/swap.hpp -------------------------------------------------------------------------------- /Source/Vendor/boost/boost/type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Vendor/boost/boost/type.hpp -------------------------------------------------------------------------------- /Source/Vendor/boost/cmdline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Vendor/boost/cmdline.txt -------------------------------------------------------------------------------- /Source/Vendor/cereal-1.1.2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Vendor/cereal-1.1.2/LICENSE -------------------------------------------------------------------------------- /Source/Vendor/cereal-1.1.2/vs2013/.gitignore: -------------------------------------------------------------------------------- 1 | */Debug 2 | */Release 3 | */x64 4 | -------------------------------------------------------------------------------- /Source/Vendor/cereal.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Vendor/cereal.cmake -------------------------------------------------------------------------------- /Source/Vendor/dummy.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/Vendor/galaxy.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Vendor/galaxy.cmake -------------------------------------------------------------------------------- /Source/Vendor/magic_enum.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Vendor/magic_enum.cmake -------------------------------------------------------------------------------- /Source/Vendor/magic_enum/.bazelignore: -------------------------------------------------------------------------------- 1 | .git 2 | .github 3 | test 4 | doc 5 | cmake -------------------------------------------------------------------------------- /Source/Vendor/magic_enum/.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Vendor/magic_enum/.bazelrc -------------------------------------------------------------------------------- /Source/Vendor/magic_enum/.bazelversion: -------------------------------------------------------------------------------- 1 | 6.3.2 2 | -------------------------------------------------------------------------------- /Source/Vendor/magic_enum/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Vendor/magic_enum/LICENSE -------------------------------------------------------------------------------- /Source/Vendor/magic_enum/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Vendor/magic_enum/README.md -------------------------------------------------------------------------------- /Source/Vendor/magic_enum/WORKSPACE.bazel: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/Vendor/magic_enum/bazel/BUILD.bazel: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/Vendor/magic_enum/test/.bazelrc: -------------------------------------------------------------------------------- 1 | import %workspace%/../.bazelrc 2 | 3 | -------------------------------------------------------------------------------- /Source/Vendor/magic_enum/test/WORKSPACE.bazel: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/Vendor/miniz-cpp-nyq-miniz-version-upgrade/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *~ 3 | build/ 4 | -------------------------------------------------------------------------------- /Source/Vendor/miniz-cpp.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Vendor/miniz-cpp.cmake -------------------------------------------------------------------------------- /Source/Vendor/simpleini-4.19/tests/.gitignore: -------------------------------------------------------------------------------- 1 | example2.ini 2 | 3 | tests 4 | *.o 5 | 6 | -------------------------------------------------------------------------------- /Source/Vendor/simpleini-4.19/tests/example.ini: -------------------------------------------------------------------------------- 1 | [section] 2 | key = value 3 | -------------------------------------------------------------------------------- /Source/Vendor/simpleini.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Vendor/simpleini.cmake -------------------------------------------------------------------------------- /Source/Vendor/unet.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Vendor/unet.cmake -------------------------------------------------------------------------------- /Source/Vendor/unet/.editorconfig: -------------------------------------------------------------------------------- 1 | [*] 2 | indent_style = tab 3 | guidelines = 100 4 | -------------------------------------------------------------------------------- /Source/Vendor/unet/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Vendor/unet/.gitignore -------------------------------------------------------------------------------- /Source/Vendor/unet/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Vendor/unet/LICENSE.txt -------------------------------------------------------------------------------- /Source/Vendor/unet/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Vendor/unet/Readme.md -------------------------------------------------------------------------------- /Source/Vendor/unet/cli/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Vendor/unet/cli/main.cpp -------------------------------------------------------------------------------- /Source/Vendor/unet/cli/s2string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Vendor/unet/cli/s2string.h -------------------------------------------------------------------------------- /Source/Vendor/unet/genie/genie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Vendor/unet/genie/genie -------------------------------------------------------------------------------- /Source/Vendor/unet/genie/genie.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Vendor/unet/genie/genie.exe -------------------------------------------------------------------------------- /Source/Vendor/unet/genie/genie.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Vendor/unet/genie/genie.lua -------------------------------------------------------------------------------- /Source/Vendor/unet/genie/genie_osx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Vendor/unet/genie/genie_osx -------------------------------------------------------------------------------- /Source/Vendor/unet/include/Unet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Vendor/unet/include/Unet.h -------------------------------------------------------------------------------- /Source/Vendor/unet/lib/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Vendor/unet/lib/.gitignore -------------------------------------------------------------------------------- /Source/Vendor/unet/src/Context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Vendor/unet/src/Context.cpp -------------------------------------------------------------------------------- /Source/Vendor/unet/src/Lobby.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Vendor/unet/src/Lobby.cpp -------------------------------------------------------------------------------- /Source/Vendor/unet/src/Service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Vendor/unet/src/Service.cpp -------------------------------------------------------------------------------- /Source/Vendor/unet/src/Unet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Vendor/unet/src/Unet.cpp -------------------------------------------------------------------------------- /Source/Vendor/unet/src/Unet_common.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /Source/Vendor/unet/src/Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Vendor/unet/src/Utils.cpp -------------------------------------------------------------------------------- /Source/Vendor/unet/src/guid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Vendor/unet/src/guid.cpp -------------------------------------------------------------------------------- /Source/Vendor/unet/src/xxhash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Vendor/unet/src/xxhash.cpp -------------------------------------------------------------------------------- /Source/Vendor/websocketpp.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Vendor/websocketpp.cmake -------------------------------------------------------------------------------- /Source/Version/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Version/CMakeLists.txt -------------------------------------------------------------------------------- /Source/Version/Version.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Version/Version.cxx -------------------------------------------------------------------------------- /Source/Version/Version.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Version/Version.hxx -------------------------------------------------------------------------------- /Source/Version/stringize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/Version/stringize.h -------------------------------------------------------------------------------- /Source/galaxy_sdk_features.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Source/galaxy_sdk_features.cmake -------------------------------------------------------------------------------- /UniverseLanWizard/.gitignore: -------------------------------------------------------------------------------- 1 | .vs/ 2 | bin/ 3 | obj/ 4 | packages/ 5 | *.user 6 | -------------------------------------------------------------------------------- /UniverseLanWizard/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/UniverseLanWizard/App.config -------------------------------------------------------------------------------- /UniverseLanWizard/Bitness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/UniverseLanWizard/Bitness.cs -------------------------------------------------------------------------------- /UniverseLanWizard/DLLHashEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/UniverseLanWizard/DLLHashEntry.cs -------------------------------------------------------------------------------- /UniverseLanWizard/MachineType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/UniverseLanWizard/MachineType.cs -------------------------------------------------------------------------------- /UniverseLanWizard/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/UniverseLanWizard/Program.cs -------------------------------------------------------------------------------- /UniverseLanWizard/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/UniverseLanWizard/Resources.resx -------------------------------------------------------------------------------- /Util/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Util/.gitignore -------------------------------------------------------------------------------- /Util/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Util/README.md -------------------------------------------------------------------------------- /Util/UpdateVersion.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Util/UpdateVersion.bat -------------------------------------------------------------------------------- /Util/UpdateVersion.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Util/UpdateVersion.sh -------------------------------------------------------------------------------- /Util/def_dll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Util/def_dll.py -------------------------------------------------------------------------------- /Util/def_dll_drag_drop.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Util/def_dll_drag_drop.bat -------------------------------------------------------------------------------- /Util/def_dll_in_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Util/def_dll_in_source.py -------------------------------------------------------------------------------- /Util/setup_def_dll_tools.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/Util/setup_def_dll_tools.ps1 -------------------------------------------------------------------------------- /ZipFileHasher/.gitignore: -------------------------------------------------------------------------------- 1 | .vs/ 2 | bin/ 3 | obj/ 4 | packages/ 5 | *.user 6 | -------------------------------------------------------------------------------- /ZipFileHasher/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/ZipFileHasher/App.config -------------------------------------------------------------------------------- /ZipFileHasher/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/ZipFileHasher/Program.cs -------------------------------------------------------------------------------- /ZipFileHasher/ZipFileHasher.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/ZipFileHasher/ZipFileHasher.csproj -------------------------------------------------------------------------------- /ZipFileHasher/ZipFileHasher.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/ZipFileHasher/ZipFileHasher.sln -------------------------------------------------------------------------------- /ZipFileHasher/md5_hashes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/ZipFileHasher/md5_hashes.txt -------------------------------------------------------------------------------- /ZipFileHasher/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/ZipFileHasher/packages.config -------------------------------------------------------------------------------- /ZipFileHasher/sha1_hashes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/ZipFileHasher/sha1_hashes.txt -------------------------------------------------------------------------------- /cmake-linux-x64.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/cmake-linux-x64.sh -------------------------------------------------------------------------------- /cmake-linux-x86.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/cmake-linux-x86.sh -------------------------------------------------------------------------------- /cmake-x64-with-interceptor.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/cmake-x64-with-interceptor.bat -------------------------------------------------------------------------------- /cmake-x64-with-tests.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/cmake-x64-with-tests.bat -------------------------------------------------------------------------------- /cmake-x64.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/cmake-x64.bat -------------------------------------------------------------------------------- /cmake-x86-with-interceptor.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/cmake-x86-with-interceptor.bat -------------------------------------------------------------------------------- /cmake-x86-with-tests.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/cmake-x86-with-tests.bat -------------------------------------------------------------------------------- /cmake-x86.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/cmake-x86.bat -------------------------------------------------------------------------------- /docs/BingSiteAuth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/docs/BingSiteAuth.xml -------------------------------------------------------------------------------- /docs/googlee1befdc788c59904.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/docs/googlee1befdc788c59904.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/logo-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/docs/logo-128.png -------------------------------------------------------------------------------- /docs/logo-160.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/docs/logo-160.png -------------------------------------------------------------------------------- /docs/logo-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/docs/logo-192.png -------------------------------------------------------------------------------- /docs/logo-224.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/docs/logo-224.png -------------------------------------------------------------------------------- /docs/logo-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/docs/logo-256.png -------------------------------------------------------------------------------- /docs/logo-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/docs/logo-32.png -------------------------------------------------------------------------------- /docs/logo-320.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/docs/logo-320.png -------------------------------------------------------------------------------- /docs/logo-440.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/docs/logo-440.png -------------------------------------------------------------------------------- /docs/logo-560.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/docs/logo-560.png -------------------------------------------------------------------------------- /docs/logo-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/docs/logo-64.png -------------------------------------------------------------------------------- /docs/logo-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/docs/logo-96.png -------------------------------------------------------------------------------- /package-release.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/package-release.ps1 -------------------------------------------------------------------------------- /z-compile+release.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasmanek94/UniverseLAN/HEAD/z-compile+release.bat --------------------------------------------------------------------------------