mirror of
https://dev.lirent.ru/Vatrog/vm-introspection-engine.git
synced 2026-06-18 02:06:36 +03:00
Rename project w32ms -> vmi-engine
Library vmie (libvmie.a), CLI vmie_cli, guest agent vmie-startup.exe, symbol prefix VMIE_ (header guards, the LTO build option). No behavior change.
This commit is contained in:
+3
-3
@@ -16,8 +16,8 @@
|
||||
* pointer past the call that received it, unless explicitly stated.
|
||||
*/
|
||||
|
||||
#ifndef W32MS_INCLUDE_H
|
||||
#define W32MS_INCLUDE_H
|
||||
#ifndef VMIE_INCLUDE_H
|
||||
#define VMIE_INCLUDE_H
|
||||
#include <stdint.h>
|
||||
#include <stddef.h>
|
||||
|
||||
@@ -169,4 +169,4 @@ int proc_modules(gva_ctx* ctx, const process* pr, pmodule* dst, size_t nmax);
|
||||
int gva_regions(gva_ctx* ctx, uintptr_t cr3, uint64_t lo, uint64_t hi,
|
||||
uint32_t prot_any, vregion* out, int nmax);
|
||||
|
||||
#endif /* W32MS_INCLUDE_H */
|
||||
#endif /* VMIE_INCLUDE_H */
|
||||
+3
-3
@@ -6,8 +6,8 @@
|
||||
* pointer chains; the gva_sig_* bridges build mem_view_t windows out of guest
|
||||
* memory and feed them to the signature matcher.
|
||||
*/
|
||||
#ifndef W32MS_SCAN_H
|
||||
#define W32MS_SCAN_H
|
||||
#ifndef VMIE_SCAN_H
|
||||
#define VMIE_SCAN_H
|
||||
#include <stdint.h>
|
||||
#include <stddef.h>
|
||||
#include "include.h" /* gva_ctx, process (vregion - internal) */
|
||||
@@ -60,4 +60,4 @@ int gva_pe_section(gva_ctx* ctx, uintptr_t cr3, uint64_t module_base,
|
||||
const char* name, uint8_t* buf, size_t bufcap, mem_view_t* out);
|
||||
int gva_sig_phys (gva_ctx* ctx, const sig_pattern_t* p, uint64_t* out, int max);
|
||||
|
||||
#endif /* W32MS_SCAN_H */
|
||||
#endif /* VMIE_SCAN_H */
|
||||
|
||||
+3
-3
@@ -10,8 +10,8 @@
|
||||
* guest memory, build views from the gva layer (see scan.h: gva_sig_scan,
|
||||
* gva_pe_section, gva_sig_phys) and feed them here.
|
||||
*/
|
||||
#ifndef W32MS_SIGSCAN_H
|
||||
#define W32MS_SIGSCAN_H
|
||||
#ifndef VMIE_SIGSCAN_H
|
||||
#define VMIE_SIGSCAN_H
|
||||
#include <stdint.h>
|
||||
#include <stddef.h>
|
||||
#include <stdbool.h>
|
||||
@@ -102,4 +102,4 @@ bool pe_find_section(mem_view_t v, uint64_t module_base, const char* name,
|
||||
bool pe_section(mem_view_t v, uint64_t module_base, const char* name,
|
||||
mem_view_t* out);
|
||||
|
||||
#endif /* W32MS_SIGSCAN_H */
|
||||
#endif /* VMIE_SIGSCAN_H */
|
||||
Reference in New Issue
Block a user