mirror of
https://github.com/momo5502/hypervisor.git
synced 2025-07-05 18:51:53 +00:00
Extract into library
This commit is contained in:
9
src/library/process.hpp
Normal file
9
src/library/process.hpp
Normal file
@ -0,0 +1,9 @@
|
||||
#pragma once
|
||||
#include "native_handle.hpp"
|
||||
|
||||
namespace process
|
||||
{
|
||||
native_handle open(uint32_t process_id, DWORD access);
|
||||
std::vector<HMODULE> get_modules(const native_handle& process);
|
||||
std::string get_module_filename(const native_handle& process, HMODULE module);
|
||||
}
|
Reference in New Issue
Block a user