libintrovirt v0.57.4
IntroVirt introspection library
Loading...
Searching...
No Matches
IMAGE_DEBUG_DIRECTORY.hh
Go to the documentation of this file.
1/*
2 * Copyright 2021 Assured Information Security, Inc.
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#pragma once
17
20
21#include <introvirt/fwd.hh>
22
23#include <cstdint>
24#include <memory>
25#include <string>
26
27namespace introvirt {
28namespace windows {
29namespace pe {
30
32 public:
33 virtual uint32_t Characteristics() const = 0;
34 virtual uint32_t TimeDateStamp() const = 0;
35 virtual uint16_t MajorVersion() const = 0;
36 virtual uint16_t MinorVersion() const = 0;
37 virtual ImageDebugType Type() const = 0;
38
44 virtual const CV_INFO* codeview_data() const = 0;
45
46 virtual ~IMAGE_DEBUG_DIRECTORY() = default;
47};
48
49} /* namespace pe */
50} /* namespace windows */
51} /* namespace introvirt */
Parser for CodeView debug information.
Definition CV_INFO.hh:28
Definition IMAGE_DEBUG_DIRECTORY.hh:31
virtual const CV_INFO * codeview_data() const =0
Get the codeview data, if the Type is IMAGE_DEBUG_TYPE_CODEVIEW.
virtual uint32_t TimeDateStamp() const =0
virtual uint16_t MinorVersion() const =0
virtual ImageDebugType Type() const =0
virtual uint32_t Characteristics() const =0
virtual uint16_t MajorVersion() const =0
ImageDebugType
Definition ImageDebugType.hh:24
Core IntroVirt classes.
Definition Cr0.hh:20