//===-- ResourceSerializator.h ----------------------------------*- C++-*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===---------------------------------------------------------------------===// // // This defines a visitor serializing resources to a .res stream. // //===---------------------------------------------------------------------===// #ifndef LLVM_TOOLS_LLVMRC_RESOURCESERIALIZATOR_H #define LLVM_TOOLS_LLVMRC_RESOURCESERIALIZATOR_H #include "ResourceScriptStmt.h" #include "ResourceVisitor.h" #include "llvm/ADT/StringRef.h" #include "llvm/Support/Endian.h" namespace llvm { class MemoryBuffer; namespace rc { enum CodePage { … }; struct WriterParams { … }; class ResourceFileWriter : public Visitor { … }; } // namespace rc } // namespace llvm #endif