This repository has been archived on 2024-10-22. You can view files and clone it, but cannot push or open issues or pull requests.
2019-06-23 22:00:18 +02:00

17 lines
304 B
C++

#pragma once
#include "range.hpp"
namespace memory
{
class module : public range
{
public:
module(HMODULE mod);
explicit module(std::nullptr_t);
explicit module(std::string_view name);
explicit module(std::wstring_view name);
memory::handle get_export(std::string_view symbol_name);
};
}