From a1a531212aa1b73e5cfbf503e59cd5ae28370ccc Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Sun, 16 May 2021 02:03:49 +0300 Subject: export Process to winapi-common --- include/pdb/all.hpp | 2 -- include/pdb/handle.hpp | 29 ----------------------------- include/pdb/process.hpp | 38 -------------------------------------- 3 files changed, 69 deletions(-) delete mode 100644 include/pdb/handle.hpp delete mode 100644 include/pdb/process.hpp (limited to 'include/pdb') diff --git a/include/pdb/all.hpp b/include/pdb/all.hpp index 3e6c3e8..968e85d 100644 --- a/include/pdb/all.hpp +++ b/include/pdb/all.hpp @@ -8,8 +8,6 @@ #include "address.hpp" #include "call_stack.hpp" #include "dbghelp.hpp" -#include "handle.hpp" #include "module.hpp" -#include "process.hpp" #include "repo.hpp" #include "symbol.hpp" diff --git a/include/pdb/handle.hpp b/include/pdb/handle.hpp deleted file mode 100644 index 319a581..0000000 --- a/include/pdb/handle.hpp +++ /dev/null @@ -1,29 +0,0 @@ -// Copyright (c) 2017 Egor Tensin -// This file is part of the "winapi-debug" project. -// For details, see https://github.com/egor-tensin/winapi-debug. -// Distributed under the MIT License. - -#pragma once - -#include "workarounds.hpp" - -#include - -#include -#include - -namespace pdb { - -struct CloseHandle { - void operator()(HANDLE raw) const { - if (raw == NULL || raw == INVALID_HANDLE_VALUE) - return; - const auto ret = ::CloseHandle(raw); - assert(ret); - PDB_UNUSED_PARAMETER(ret); - } -}; - -typedef std::unique_ptr Handle; - -} // namespace pdb diff --git a/include/pdb/process.hpp b/include/pdb/process.hpp deleted file mode 100644 index 7639536..0000000 --- a/include/pdb/process.hpp +++ /dev/null @@ -1,38 +0,0 @@ -// Copyright (c) 2020 Egor Tensin -// This file is part of the "winapi-debug" project. -// For details, see https://github.com/egor-tensin/winapi-debug. -// Distributed under the MIT License. - -#pragma once - -#include "handle.hpp" - -#include - -#include - -namespace pdb { - -class Process { -public: - using ID = DWORD; - - static Process current(); - static Process open(ID); - - ID get_id() const { return id; } - - const Handle& get_handle() const { return handle; } - - std::string get_executable_path() const; - static std::string get_executable_path(const Handle&); - -private: - explicit Process(Handle&&); - Process(ID, Handle&&); - - ID id; - Handle handle; -}; - -} // namespace pdb -- cgit v1.2.3