Bitdefender Hypervisor Memory Introspection
lixkernel.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2020 Bitdefender
3  * SPDX-License-Identifier: Apache-2.0
4  */
5 #ifndef _LIXKERNEL_H_
6 #define _LIXKERNEL_H_
7 
8 #include "introtypes.h"
9 
12  void
13  );
14 
17  void
18  );
19 
20 void
22  void
23  );
24 
25 void
27  void
28  );
29 
30 #endif // _LIXKERNEL_H_
INTSTATUS IntLixKernelReadProtect(void)
Activates kernel protection.
Definition: lixkernel.c:781
int INTSTATUS
The status data type.
Definition: introstatus.h:24
void IntLixKernelReadUnprotect(void)
Deactivates the kernel protection against read.
Definition: lixkernel.c:883
void IntLixKernelWriteUnprotect(void)
Deactivates the kernel protection against write.
Definition: lixkernel.c:866
INTSTATUS IntLixKernelWriteProtect(void)
Activates kernel protection.
Definition: lixkernel.c:754