Bitdefender Hypervisor Memory Introspection
winhkhnd.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2020 Bitdefender
3  * SPDX-License-Identifier: Apache-2.0
4  */
12 
13 #ifndef _WINHKHND_H_
14 #define _WINHKHND_H_
15 
16 #include "detours.h"
17 
19 extern const size_t gHookableApisX86Size;
20 
22 extern const size_t gHookableApisX64Size;
23 
24 #endif // !_WINHKHND_H_
25 
const size_t gHookableApisX86Size
The number of functions to be hooked for 32-bit Windows guests.
Definition: winhkhnd.c:1809
The guest detour API.
const size_t gHookableApisX64Size
The number of functions to be hooked for 64-bit Windows guests.
Definition: winhkhnd.c:4992
API_HOOK_DESCRIPTOR gHookableApisX86[]
The functions to be hooked for 32-bit Windows guests.
Definition: winhkhnd.c:61
API_HOOK_DESCRIPTOR gHookableApisX64[]
The functions to be hooked for 64-bit Windows guests.
Definition: winhkhnd.c:1816
Describes a function to be hooked.
Definition: detours.h:329