| 14799 | |
| 14800 | |
| 14801 | BOOL MsgMonitorList::IsMonitoring(UINT aMsg, UCHAR aMsgType) |
| 14802 | { |
| 14803 | for (int i = 0; i < mCount; ++i) |
| 14804 | if (mMonitor[i].msg == aMsg && mMonitor[i].msg_type == aMsgType) |
| 14805 | return TRUE; |
| 14806 | return FALSE; |
| 14807 | } |
| 14808 | |
| 14809 | |
| 14810 | BOOL MsgMonitorList::IsRunning(UINT aMsg, UCHAR aMsgType) |
no outgoing calls
no test coverage detected