Convert HANDLE to decimal string
| 79 | |
| 80 | // Convert HANDLE to decimal string |
| 81 | std::wstring HandleToDecimal(HANDLE h) |
| 82 | { |
| 83 | std::wstringstream ss; |
| 84 | ss << reinterpret_cast<UINT_PTR>(h); |
| 85 | return ss.str(); |
| 86 | } |
| 87 | |
| 88 | bool EnableDebugPrivilege() |
| 89 | { |