mirror of
https://github.com/ivellioscolin/pykd.git
synced 2025-04-21 21:03:23 +08:00
12 lines
160 B
C++
12 lines
160 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
namespace utils
|
|
{
|
|
|
|
std::string GetWinErrorText(DWORD dwError);
|
|
|
|
std::string GetLastErrorStr();
|
|
|
|
} // namespace utils
|