Index: experimental/windows_debugger/debugger/base/debug_utils.h |
diff --git a/experimental/windows_debugger/debugger/base/debug_utils.h b/experimental/windows_debugger/debugger/base/debug_utils.h |
deleted file mode 100644 |
index a27a5402f429bd9125205340ad60b7adcf7103ad..0000000000000000000000000000000000000000 |
--- a/experimental/windows_debugger/debugger/base/debug_utils.h |
+++ /dev/null |
@@ -1,18 +0,0 @@ |
-#pragma once |
-#include <string> |
-#include <windows.h> |
-#include <Psapi.h> |
-#include <Winternl.h> |
-#include <Tlhelp32.h> |
- |
-namespace debug { |
-class Utils { |
- public: |
- static bool GetProcessName(int pid, std::string* name); |
- static bool GetProcessName(HANDLE ProcessHandle, std::string* name); |
- static bool GetProcessCmdLine(HANDLE ProcessHandle, std::string* cmd_line); |
- static int GetProcessorWordSizeInBits(HANDLE h); |
- static std::string ReadUNICODE_STRING(HANDLE ProcessHandle, const UNICODE_STRING& str); |
- static bool ReadUnucodeStr(HANDLE ProcessHandle, const void* addr, std::string* str); |
-}; |
-} // namespace debug |