#ifndef LLD_COFF_CONFIG_H
#define LLD_COFF_CONFIG_H
#include "llvm/ADT/MapVector.h"
#include "llvm/ADT/SetVector.h"
#include "llvm/ADT/SmallVector.h"
#include "llvm/ADT/StringMap.h"
#include "llvm/ADT/StringRef.h"
#include "llvm/Object/COFF.h"
#include "llvm/Support/CachePruning.h"
#include "llvm/Support/VirtualFileSystem.h"
#include <cstdint>
#include <map>
#include <set>
#include <string>
namespace lld::coff {
IMAGE_FILE_MACHINE_UNKNOWN;
WindowsSubsystem;
StringRef;
class DefinedAbsolute;
class StringChunk;
class Symbol;
class InputFile;
class SectionChunk;
static const auto AMD64 = …;
static const auto ARM64 = …;
static const auto ARM64EC = …;
static const auto ARM64X = …;
static const auto ARMNT = …;
static const auto I386 = …;
enum class ExportSource { … };
enum class EmitKind { … };
struct Export { … };
enum class DebugType { … };
enum GuardCFLevel { … };
enum class ICFLevel { … };
enum class BuildIDHash { … };
struct Configuration { … };
}
#endif