Example #1
0
tstring dbug_ioctl(unsigned long IoctlID)
{
    std::basic_ostringstream<wchar_t> ssIoctlID;

    ssIoctlID << IoctlID << _T(":") << dbug_ioctl2str(IoctlID);

    return ssIoctlID.str();
}
Example #2
0
void Print_IOCtl_Cmd( unsigned long IoctlID )
{
	LOGW(HELPERFUNC,_T("IOCTL Command: %d [%s]"),IoctlID, dbug_ioctl2str(IoctlID));
}