duckstation

duckstation, but archived from the revision just before upstream changed it to a proprietary software project, this version is the libre one
git clone https://git.neptards.moe/u3shit/duckstation.git
Log | Files | Refs | README | LICENSE

pch.h (526B)


      1 // SPDX-FileCopyrightText: 2019-2023 Connor McLaughlin <stenzek@gmail.com>
      2 // SPDX-License-Identifier: (GPL-3.0 OR CC-BY-NC-ND-4.0)
      3 
      4 #pragma once
      5 
      6 #include "common/types.h"
      7 
      8 #include "fmt/core.h"
      9 #include "fmt/format.h"
     10 
     11 #include <array>
     12 #include <atomic>
     13 #include <cstdio>
     14 #include <cstring>
     15 #include <ctime>
     16 #include <functional>
     17 #include <initializer_list>
     18 #include <memory>
     19 #include <mutex>
     20 #include <optional>
     21 #include <span>
     22 #include <string>
     23 #include <string_view>
     24 #include <tuple>
     25 #include <utility>
     26 #include <vector>