MCPcopy Create free account
hub / github.com/TwoSevenOneT/WSASS / HandleToDecimal

Function HandleToDecimal

WSASS.cpp:81–86  ·  view source on GitHub ↗

Convert HANDLE to decimal string

Source from the content-addressed store, hash-verified

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

Callers 1

DumpRunFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected