libintrovirt
v0.57.4
IntroVirt introspection library
Loading...
Searching...
No Matches
ConsoleCallServerGenericRequestCode.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 <cstdint>
19
#include <string>
20
21
namespace
introvirt
{
22
namespace
windows {
23
namespace
condrv {
24
25
enum class
ConsoleCallServerGenericRequestCode
: uint32_t {
26
GetConsoleCP
= 0x1000000,
27
GetConsoleMode
= 0x1000001,
28
SetConsoleMode
= 0x1000002,
29
ReadConsole
= 0x1000005,
30
WriteConsole
= 0x1000006,
31
SetTEBLangID
= 0x1000008,
32
FillConsoleOutput
= 0x2000000,
33
GetConsoleScreenBufferInfoEx
= 0x2000007,
34
GetConsoleTitle
= 0x2000014,
35
SetConsoleTitle
= 0x2000015,
36
SetConsoleCursorPosition
= 0x200000a,
37
SetConsoleTextAttribute
= 0x200000d,
38
GetConsoleWindow
= 0x300001f,
39
40
Unknown
= 0xFFFFFFFF,
41
};
42
46
const
std::string&
to_string
(
ConsoleCallServerGenericRequestCode
);
47
48
}
/* namespace condrv */
49
}
/* namespace windows */
50
}
/* namespace introvirt */
introvirt::windows::condrv::ConsoleCallServerGenericRequestCode
ConsoleCallServerGenericRequestCode
Definition
ConsoleCallServerGenericRequestCode.hh:25
introvirt::windows::condrv::ConsoleCallServerGenericRequestCode::GetConsoleWindow
@ GetConsoleWindow
introvirt::windows::condrv::ConsoleCallServerGenericRequestCode::GetConsoleTitle
@ GetConsoleTitle
introvirt::windows::condrv::ConsoleCallServerGenericRequestCode::SetConsoleCursorPosition
@ SetConsoleCursorPosition
introvirt::windows::condrv::ConsoleCallServerGenericRequestCode::SetConsoleTextAttribute
@ SetConsoleTextAttribute
introvirt::windows::condrv::ConsoleCallServerGenericRequestCode::ReadConsole
@ ReadConsole
introvirt::windows::condrv::ConsoleCallServerGenericRequestCode::FillConsoleOutput
@ FillConsoleOutput
introvirt::windows::condrv::ConsoleCallServerGenericRequestCode::Unknown
@ Unknown
introvirt::windows::condrv::ConsoleCallServerGenericRequestCode::WriteConsole
@ WriteConsole
introvirt::windows::condrv::ConsoleCallServerGenericRequestCode::SetTEBLangID
@ SetTEBLangID
introvirt::windows::condrv::ConsoleCallServerGenericRequestCode::GetConsoleMode
@ GetConsoleMode
introvirt::windows::condrv::ConsoleCallServerGenericRequestCode::GetConsoleScreenBufferInfoEx
@ GetConsoleScreenBufferInfoEx
introvirt::windows::condrv::ConsoleCallServerGenericRequestCode::SetConsoleTitle
@ SetConsoleTitle
introvirt::windows::condrv::ConsoleCallServerGenericRequestCode::GetConsoleCP
@ GetConsoleCP
introvirt::windows::condrv::ConsoleCallServerGenericRequestCode::SetConsoleMode
@ SetConsoleMode
introvirt::windows::condrv::to_string
const std::string & to_string(ConsoleCallServerGenericRequestCode)
introvirt
Core IntroVirt classes.
Definition
Cr0.hh:20