├── .github ├── ISSUE_TEMPLATE │ └── game-not-working.md └── workflows │ └── cmake.yml ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── Dockerfile ├── LICENSE ├── README.md ├── docker-compose.yml ├── ext ├── ini.h └── steam │ ├── isteamapplist.h │ ├── isteamapps.h │ ├── isteamappticket.h │ ├── isteamclient.h │ ├── isteamcontroller.h │ ├── isteamfriends.h │ ├── isteamgamecoordinator.h │ ├── isteamgameserver.h │ ├── isteamgameserverstats.h │ ├── isteamhtmlsurface.h │ ├── isteamhttp.h │ ├── isteaminput.h │ ├── isteaminventory.h │ ├── isteammatchmaking.h │ ├── isteammusic.h │ ├── isteammusicremote.h │ ├── isteamnetworking.h │ ├── isteamnetworkingmessages.h │ ├── isteamnetworkingsockets.h │ ├── isteamnetworkingutils.h │ ├── isteamparentalsettings.h │ ├── isteamps3overlayrenderer.h │ ├── isteamremoteplay.h │ ├── isteamremotestorage.h │ ├── isteamscreenshots.h │ ├── isteamugc.h │ ├── isteamuser.h │ ├── isteamuserstats.h │ ├── isteamutils.h │ ├── isteamvideo.h │ ├── matchmakingtypes.h │ ├── steam_api.h │ ├── steam_api_common.h │ ├── steam_api_flat.h │ ├── steam_api_internal.h │ ├── steam_gameserver.h │ ├── steamclientpublic.h │ ├── steamencryptedappticket.h │ ├── steamhttpenums.h │ ├── steamnetworkingfakeip.h │ ├── steamnetworkingtypes.h │ ├── steamps3params.h │ ├── steamtypes.h │ └── steamuniverse.h ├── main.cpp ├── package ├── cream.sh └── cream_api.ini └── spdlog ├── async.h ├── async_logger-inl.h ├── async_logger.h ├── cfg ├── argv.h ├── env.h ├── helpers-inl.h └── helpers.h ├── common-inl.h ├── common.h ├── details ├── backtracer-inl.h ├── backtracer.h ├── circular_q.h ├── console_globals.h ├── file_helper-inl.h ├── file_helper.h ├── fmt_helper.h ├── log_msg-inl.h ├── log_msg.h ├── log_msg_buffer-inl.h ├── log_msg_buffer.h ├── mpmc_blocking_q.h ├── null_mutex.h ├── os-inl.h ├── os.h ├── periodic_worker-inl.h ├── periodic_worker.h ├── registry-inl.h ├── registry.h ├── synchronous_factory.h ├── tcp_client-windows.h ├── tcp_client.h ├── thread_pool-inl.h ├── thread_pool.h ├── udp_client-windows.h ├── udp_client.h └── windows_include.h ├── fmt ├── bin_to_hex.h ├── bundled │ ├── args.h │ ├── chrono.h │ ├── color.h │ ├── compile.h │ ├── core.h │ ├── fmt.license.rst │ ├── format-inl.h │ ├── format.h │ ├── locale.h │ ├── os.h │ ├── ostream.h │ ├── printf.h │ ├── ranges.h │ └── xchar.h ├── chrono.h ├── compile.h ├── fmt.h ├── ostr.h ├── ranges.h └── xchar.h ├── formatter.h ├── fwd.h ├── logger-inl.h ├── logger.h ├── pattern_formatter-inl.h ├── pattern_formatter.h ├── sinks ├── android_sink.h ├── ansicolor_sink-inl.h ├── ansicolor_sink.h ├── base_sink-inl.h ├── base_sink.h ├── basic_file_sink-inl.h ├── basic_file_sink.h ├── daily_file_sink.h ├── dist_sink.h ├── dup_filter_sink.h ├── hourly_file_sink.h ├── mongo_sink.h ├── msvc_sink.h ├── null_sink.h ├── ostream_sink.h ├── qt_sinks.h ├── ringbuffer_sink.h ├── rotating_file_sink-inl.h ├── rotating_file_sink.h ├── sink-inl.h ├── sink.h ├── stdout_color_sinks-inl.h ├── stdout_color_sinks.h ├── stdout_sinks-inl.h ├── stdout_sinks.h ├── syslog_sink.h ├── systemd_sink.h ├── tcp_sink.h ├── udp_sink.h ├── win_eventlog_sink.h ├── wincolor_sink-inl.h └── wincolor_sink.h ├── spdlog-inl.h ├── spdlog.h ├── stopwatch.h ├── tweakme.h └── version.h /.github/ISSUE_TEMPLATE/game-not-working.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/.github/ISSUE_TEMPLATE/game-not-working.md -------------------------------------------------------------------------------- /.github/workflows/cmake.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/.github/workflows/cmake.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /ext/ini.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/ext/ini.h -------------------------------------------------------------------------------- /ext/steam/isteamapplist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/ext/steam/isteamapplist.h -------------------------------------------------------------------------------- /ext/steam/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/ext/steam/isteamapps.h -------------------------------------------------------------------------------- /ext/steam/isteamappticket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/ext/steam/isteamappticket.h -------------------------------------------------------------------------------- /ext/steam/isteamclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/ext/steam/isteamclient.h -------------------------------------------------------------------------------- /ext/steam/isteamcontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/ext/steam/isteamcontroller.h -------------------------------------------------------------------------------- /ext/steam/isteamfriends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/ext/steam/isteamfriends.h -------------------------------------------------------------------------------- /ext/steam/isteamgamecoordinator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/ext/steam/isteamgamecoordinator.h -------------------------------------------------------------------------------- /ext/steam/isteamgameserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/ext/steam/isteamgameserver.h -------------------------------------------------------------------------------- /ext/steam/isteamgameserverstats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/ext/steam/isteamgameserverstats.h -------------------------------------------------------------------------------- /ext/steam/isteamhtmlsurface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/ext/steam/isteamhtmlsurface.h -------------------------------------------------------------------------------- /ext/steam/isteamhttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/ext/steam/isteamhttp.h -------------------------------------------------------------------------------- /ext/steam/isteaminput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/ext/steam/isteaminput.h -------------------------------------------------------------------------------- /ext/steam/isteaminventory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/ext/steam/isteaminventory.h -------------------------------------------------------------------------------- /ext/steam/isteammatchmaking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/ext/steam/isteammatchmaking.h -------------------------------------------------------------------------------- /ext/steam/isteammusic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/ext/steam/isteammusic.h -------------------------------------------------------------------------------- /ext/steam/isteammusicremote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/ext/steam/isteammusicremote.h -------------------------------------------------------------------------------- /ext/steam/isteamnetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/ext/steam/isteamnetworking.h -------------------------------------------------------------------------------- /ext/steam/isteamnetworkingmessages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/ext/steam/isteamnetworkingmessages.h -------------------------------------------------------------------------------- /ext/steam/isteamnetworkingsockets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/ext/steam/isteamnetworkingsockets.h -------------------------------------------------------------------------------- /ext/steam/isteamnetworkingutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/ext/steam/isteamnetworkingutils.h -------------------------------------------------------------------------------- /ext/steam/isteamparentalsettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/ext/steam/isteamparentalsettings.h -------------------------------------------------------------------------------- /ext/steam/isteamps3overlayrenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/ext/steam/isteamps3overlayrenderer.h -------------------------------------------------------------------------------- /ext/steam/isteamremoteplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/ext/steam/isteamremoteplay.h -------------------------------------------------------------------------------- /ext/steam/isteamremotestorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/ext/steam/isteamremotestorage.h -------------------------------------------------------------------------------- /ext/steam/isteamscreenshots.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/ext/steam/isteamscreenshots.h -------------------------------------------------------------------------------- /ext/steam/isteamugc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/ext/steam/isteamugc.h -------------------------------------------------------------------------------- /ext/steam/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/ext/steam/isteamuser.h -------------------------------------------------------------------------------- /ext/steam/isteamuserstats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/ext/steam/isteamuserstats.h -------------------------------------------------------------------------------- /ext/steam/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/ext/steam/isteamutils.h -------------------------------------------------------------------------------- /ext/steam/isteamvideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/ext/steam/isteamvideo.h -------------------------------------------------------------------------------- /ext/steam/matchmakingtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/ext/steam/matchmakingtypes.h -------------------------------------------------------------------------------- /ext/steam/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/ext/steam/steam_api.h -------------------------------------------------------------------------------- /ext/steam/steam_api_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/ext/steam/steam_api_common.h -------------------------------------------------------------------------------- /ext/steam/steam_api_flat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/ext/steam/steam_api_flat.h -------------------------------------------------------------------------------- /ext/steam/steam_api_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/ext/steam/steam_api_internal.h -------------------------------------------------------------------------------- /ext/steam/steam_gameserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/ext/steam/steam_gameserver.h -------------------------------------------------------------------------------- /ext/steam/steamclientpublic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/ext/steam/steamclientpublic.h -------------------------------------------------------------------------------- /ext/steam/steamencryptedappticket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/ext/steam/steamencryptedappticket.h -------------------------------------------------------------------------------- /ext/steam/steamhttpenums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/ext/steam/steamhttpenums.h -------------------------------------------------------------------------------- /ext/steam/steamnetworkingfakeip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/ext/steam/steamnetworkingfakeip.h -------------------------------------------------------------------------------- /ext/steam/steamnetworkingtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/ext/steam/steamnetworkingtypes.h -------------------------------------------------------------------------------- /ext/steam/steamps3params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/ext/steam/steamps3params.h -------------------------------------------------------------------------------- /ext/steam/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/ext/steam/steamtypes.h -------------------------------------------------------------------------------- /ext/steam/steamuniverse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/ext/steam/steamuniverse.h -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/main.cpp -------------------------------------------------------------------------------- /package/cream.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/package/cream.sh -------------------------------------------------------------------------------- /package/cream_api.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/package/cream_api.ini -------------------------------------------------------------------------------- /spdlog/async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/async.h -------------------------------------------------------------------------------- /spdlog/async_logger-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/async_logger-inl.h -------------------------------------------------------------------------------- /spdlog/async_logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/async_logger.h -------------------------------------------------------------------------------- /spdlog/cfg/argv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/cfg/argv.h -------------------------------------------------------------------------------- /spdlog/cfg/env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/cfg/env.h -------------------------------------------------------------------------------- /spdlog/cfg/helpers-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/cfg/helpers-inl.h -------------------------------------------------------------------------------- /spdlog/cfg/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/cfg/helpers.h -------------------------------------------------------------------------------- /spdlog/common-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/common-inl.h -------------------------------------------------------------------------------- /spdlog/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/common.h -------------------------------------------------------------------------------- /spdlog/details/backtracer-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/details/backtracer-inl.h -------------------------------------------------------------------------------- /spdlog/details/backtracer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/details/backtracer.h -------------------------------------------------------------------------------- /spdlog/details/circular_q.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/details/circular_q.h -------------------------------------------------------------------------------- /spdlog/details/console_globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/details/console_globals.h -------------------------------------------------------------------------------- /spdlog/details/file_helper-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/details/file_helper-inl.h -------------------------------------------------------------------------------- /spdlog/details/file_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/details/file_helper.h -------------------------------------------------------------------------------- /spdlog/details/fmt_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/details/fmt_helper.h -------------------------------------------------------------------------------- /spdlog/details/log_msg-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/details/log_msg-inl.h -------------------------------------------------------------------------------- /spdlog/details/log_msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/details/log_msg.h -------------------------------------------------------------------------------- /spdlog/details/log_msg_buffer-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/details/log_msg_buffer-inl.h -------------------------------------------------------------------------------- /spdlog/details/log_msg_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/details/log_msg_buffer.h -------------------------------------------------------------------------------- /spdlog/details/mpmc_blocking_q.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/details/mpmc_blocking_q.h -------------------------------------------------------------------------------- /spdlog/details/null_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/details/null_mutex.h -------------------------------------------------------------------------------- /spdlog/details/os-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/details/os-inl.h -------------------------------------------------------------------------------- /spdlog/details/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/details/os.h -------------------------------------------------------------------------------- /spdlog/details/periodic_worker-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/details/periodic_worker-inl.h -------------------------------------------------------------------------------- /spdlog/details/periodic_worker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/details/periodic_worker.h -------------------------------------------------------------------------------- /spdlog/details/registry-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/details/registry-inl.h -------------------------------------------------------------------------------- /spdlog/details/registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/details/registry.h -------------------------------------------------------------------------------- /spdlog/details/synchronous_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/details/synchronous_factory.h -------------------------------------------------------------------------------- /spdlog/details/tcp_client-windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/details/tcp_client-windows.h -------------------------------------------------------------------------------- /spdlog/details/tcp_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/details/tcp_client.h -------------------------------------------------------------------------------- /spdlog/details/thread_pool-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/details/thread_pool-inl.h -------------------------------------------------------------------------------- /spdlog/details/thread_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/details/thread_pool.h -------------------------------------------------------------------------------- /spdlog/details/udp_client-windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/details/udp_client-windows.h -------------------------------------------------------------------------------- /spdlog/details/udp_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/details/udp_client.h -------------------------------------------------------------------------------- /spdlog/details/windows_include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/details/windows_include.h -------------------------------------------------------------------------------- /spdlog/fmt/bin_to_hex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/fmt/bin_to_hex.h -------------------------------------------------------------------------------- /spdlog/fmt/bundled/args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/fmt/bundled/args.h -------------------------------------------------------------------------------- /spdlog/fmt/bundled/chrono.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/fmt/bundled/chrono.h -------------------------------------------------------------------------------- /spdlog/fmt/bundled/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/fmt/bundled/color.h -------------------------------------------------------------------------------- /spdlog/fmt/bundled/compile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/fmt/bundled/compile.h -------------------------------------------------------------------------------- /spdlog/fmt/bundled/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/fmt/bundled/core.h -------------------------------------------------------------------------------- /spdlog/fmt/bundled/fmt.license.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/fmt/bundled/fmt.license.rst -------------------------------------------------------------------------------- /spdlog/fmt/bundled/format-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/fmt/bundled/format-inl.h -------------------------------------------------------------------------------- /spdlog/fmt/bundled/format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/fmt/bundled/format.h -------------------------------------------------------------------------------- /spdlog/fmt/bundled/locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/fmt/bundled/locale.h -------------------------------------------------------------------------------- /spdlog/fmt/bundled/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/fmt/bundled/os.h -------------------------------------------------------------------------------- /spdlog/fmt/bundled/ostream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/fmt/bundled/ostream.h -------------------------------------------------------------------------------- /spdlog/fmt/bundled/printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/fmt/bundled/printf.h -------------------------------------------------------------------------------- /spdlog/fmt/bundled/ranges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/fmt/bundled/ranges.h -------------------------------------------------------------------------------- /spdlog/fmt/bundled/xchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/fmt/bundled/xchar.h -------------------------------------------------------------------------------- /spdlog/fmt/chrono.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/fmt/chrono.h -------------------------------------------------------------------------------- /spdlog/fmt/compile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/fmt/compile.h -------------------------------------------------------------------------------- /spdlog/fmt/fmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/fmt/fmt.h -------------------------------------------------------------------------------- /spdlog/fmt/ostr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/fmt/ostr.h -------------------------------------------------------------------------------- /spdlog/fmt/ranges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/fmt/ranges.h -------------------------------------------------------------------------------- /spdlog/fmt/xchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/fmt/xchar.h -------------------------------------------------------------------------------- /spdlog/formatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/formatter.h -------------------------------------------------------------------------------- /spdlog/fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/fwd.h -------------------------------------------------------------------------------- /spdlog/logger-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/logger-inl.h -------------------------------------------------------------------------------- /spdlog/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/logger.h -------------------------------------------------------------------------------- /spdlog/pattern_formatter-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/pattern_formatter-inl.h -------------------------------------------------------------------------------- /spdlog/pattern_formatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/pattern_formatter.h -------------------------------------------------------------------------------- /spdlog/sinks/android_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/sinks/android_sink.h -------------------------------------------------------------------------------- /spdlog/sinks/ansicolor_sink-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/sinks/ansicolor_sink-inl.h -------------------------------------------------------------------------------- /spdlog/sinks/ansicolor_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/sinks/ansicolor_sink.h -------------------------------------------------------------------------------- /spdlog/sinks/base_sink-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/sinks/base_sink-inl.h -------------------------------------------------------------------------------- /spdlog/sinks/base_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/sinks/base_sink.h -------------------------------------------------------------------------------- /spdlog/sinks/basic_file_sink-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/sinks/basic_file_sink-inl.h -------------------------------------------------------------------------------- /spdlog/sinks/basic_file_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/sinks/basic_file_sink.h -------------------------------------------------------------------------------- /spdlog/sinks/daily_file_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/sinks/daily_file_sink.h -------------------------------------------------------------------------------- /spdlog/sinks/dist_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/sinks/dist_sink.h -------------------------------------------------------------------------------- /spdlog/sinks/dup_filter_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/sinks/dup_filter_sink.h -------------------------------------------------------------------------------- /spdlog/sinks/hourly_file_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/sinks/hourly_file_sink.h -------------------------------------------------------------------------------- /spdlog/sinks/mongo_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/sinks/mongo_sink.h -------------------------------------------------------------------------------- /spdlog/sinks/msvc_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/sinks/msvc_sink.h -------------------------------------------------------------------------------- /spdlog/sinks/null_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/sinks/null_sink.h -------------------------------------------------------------------------------- /spdlog/sinks/ostream_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/sinks/ostream_sink.h -------------------------------------------------------------------------------- /spdlog/sinks/qt_sinks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/sinks/qt_sinks.h -------------------------------------------------------------------------------- /spdlog/sinks/ringbuffer_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/sinks/ringbuffer_sink.h -------------------------------------------------------------------------------- /spdlog/sinks/rotating_file_sink-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/sinks/rotating_file_sink-inl.h -------------------------------------------------------------------------------- /spdlog/sinks/rotating_file_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/sinks/rotating_file_sink.h -------------------------------------------------------------------------------- /spdlog/sinks/sink-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/sinks/sink-inl.h -------------------------------------------------------------------------------- /spdlog/sinks/sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/sinks/sink.h -------------------------------------------------------------------------------- /spdlog/sinks/stdout_color_sinks-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/sinks/stdout_color_sinks-inl.h -------------------------------------------------------------------------------- /spdlog/sinks/stdout_color_sinks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/sinks/stdout_color_sinks.h -------------------------------------------------------------------------------- /spdlog/sinks/stdout_sinks-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/sinks/stdout_sinks-inl.h -------------------------------------------------------------------------------- /spdlog/sinks/stdout_sinks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/sinks/stdout_sinks.h -------------------------------------------------------------------------------- /spdlog/sinks/syslog_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/sinks/syslog_sink.h -------------------------------------------------------------------------------- /spdlog/sinks/systemd_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/sinks/systemd_sink.h -------------------------------------------------------------------------------- /spdlog/sinks/tcp_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/sinks/tcp_sink.h -------------------------------------------------------------------------------- /spdlog/sinks/udp_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/sinks/udp_sink.h -------------------------------------------------------------------------------- /spdlog/sinks/win_eventlog_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/sinks/win_eventlog_sink.h -------------------------------------------------------------------------------- /spdlog/sinks/wincolor_sink-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/sinks/wincolor_sink-inl.h -------------------------------------------------------------------------------- /spdlog/sinks/wincolor_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/sinks/wincolor_sink.h -------------------------------------------------------------------------------- /spdlog/spdlog-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/spdlog-inl.h -------------------------------------------------------------------------------- /spdlog/spdlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/spdlog.h -------------------------------------------------------------------------------- /spdlog/stopwatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/stopwatch.h -------------------------------------------------------------------------------- /spdlog/tweakme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/tweakme.h -------------------------------------------------------------------------------- /spdlog/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticitizn/creamlinux/HEAD/spdlog/version.h --------------------------------------------------------------------------------