libintrovirt v0.57.4
IntroVirt introspection library
Loading...
Searching...
No Matches
ConsoleCallServerGenericRequest.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
18#include "../const/ConsoleCallServerGenericRequestCode.hh"
19
22
23#include <cstdint>
24#include <memory>
25
26namespace introvirt {
27namespace windows {
28namespace condrv {
29
31 public:
33 uint32_t Data1() const;
34 uint32_t Data2() const;
36
39
41 const guest_ptr<void>& pRequestHeader,
42 const guest_ptr<void>& pRequestData, uint32_t requestDataLen);
44
45 private:
46 class IMPL;
47 std::unique_ptr<IMPL> pImpl;
48};
49
50} /* namespace condrv */
51} /* namespace windows */
52} /* namespace introvirt */
Definition guest_ptr.hh:88
A representation of a Windows Guest OS.
Definition WindowsGuest.hh:33
Definition ConsoleCallServerGenericRequest.hh:30
ConsoleCallServerGenericRequest(const WindowsGuest &guest, const guest_ptr< void > &pRequestHeader, const guest_ptr< void > &pRequestData, uint32_t requestDataLen)
ConsoleCallServerGenericRequestCode RequestCode() const
Type-safe guest virtual address pointer and guest_ptr template.
ConsoleCallServerGenericRequestCode
Definition ConsoleCallServerGenericRequestCode.hh:25
Core IntroVirt classes.
Definition Cr0.hh:20