LIEF: Library to Instrument Executable Formats Version 0.15.0
Loading...
Searching...
No Matches
ResourceVarFileInfo.hpp
1/* Copyright 2017 - 2024 R. Thomas
2 * Copyright 2017 - 2024 Quarkslab
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16#ifndef LIEF_PE_RESOURCE_VAR_FILE_INFO_H
17#define LIEF_PE_RESOURCE_VAR_FILE_INFO_H
18#include <ostream>
19#include <sstream>
20#include <cstdint>
21#include <vector>
22
23#include "LIEF/visibility.h"
24
25#include "LIEF/Object.hpp"
26namespace LIEF {
27namespace PE {
28
29class ResourcesManager;
30class ResourceVersion;
31struct ResourcesParser;
32
36class LIEF_API ResourceVarFileInfo : public Object {
37
38 friend class ResourcesManager;
39 friend class ResourceVersion;
40 friend struct ResourcesParser;
41
42 public:
44 ResourceVarFileInfo(uint16_t type, std::u16string key);
47 ~ResourceVarFileInfo() override;
48
52 uint16_t type() const;
53
56 const std::u16string& key() const;
57
63 const std::vector<uint32_t>& translations() const;
64 std::vector<uint32_t>& translations();
65
66 void type(uint16_t type);
67
68 void key(const std::u16string& key);
69 void key(const std::string& key);
70
71 void translations(const std::vector<uint32_t>& translations);
72
73 void accept(Visitor& visitor) const override;
74
75
76 LIEF_API friend std::ostream& operator<<(std::ostream& os, const ResourceVarFileInfo& entry);
77
78 private:
79 uint16_t type_ = 0;
80 std::u16string key_;
81 std::vector<uint32_t> translations_;
82
83};
84}
85}
86
87#endif
Definition Object.hpp:25
This object describes information about languages supported by the application.
Definition ResourceVarFileInfo.hpp:36
const std::u16string & key() const
Signature of the structure: Must be the unicode string "VarFileInfo".
uint16_t type() const
The type of data in the version resource.
const std::vector< uint32_t > & translations() const
List of languages that the application supports.
Representation of the data associated with the RT_VERSION entry.
Definition ResourceVersion.hpp:38
The Resource Manager provides an enhanced API to manipulate the resource tree.
Definition ResourcesManager.hpp:38
Definition Visitor.hpp:219
LIEF namespace.
Definition Abstract/Binary.hpp:32