コード例 #1
0
ファイル: shim_debug.cpp プロジェクト: bombilee/j2534-logger
tstring dbug_ioctl(unsigned long IoctlID)
{
    std::basic_ostringstream<wchar_t> ssIoctlID;

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

    return ssIoctlID.str();
}
コード例 #2
0
ファイル: helper.cpp プロジェクト: beyerch/SardineCAN-Win32
void Print_IOCtl_Cmd( unsigned long IoctlID )
{
	LOGW(HELPERFUNC,_T("IOCTL Command: %d [%s]"),IoctlID, dbug_ioctl2str(IoctlID));
}