| 1668 | } |
| 1669 | |
| 1670 | int CCECClient::QueueCommandHandler(const cec_command& command) |
| 1671 | { |
| 1672 | CCallbackWrap *wrapState = new CCallbackWrap(command, true); |
| 1673 | m_callbackCalls.Push(wrapState); |
| 1674 | int result(wrapState->Result(1000)); |
| 1675 | |
| 1676 | if (wrapState->m_keepResult) |
| 1677 | delete wrapState; |
| 1678 | return result; |
| 1679 | } |
| 1680 | |
| 1681 | void* CCECClient::Process(void) |
| 1682 | { |
no test coverage detected