| 910 | } |
| 911 | |
| 912 | void XN_CALLBACK_TYPE AudioWatcher::HandleWaveOutputModeChange(ProductionNode& /*node*/, void* pCookie) |
| 913 | { |
| 914 | AudioWatcher *pThis = (AudioWatcher*)pCookie; |
| 915 | if (pThis == NULL) |
| 916 | { |
| 917 | XN_ASSERT(FALSE); |
| 918 | return; |
| 919 | } |
| 920 | pThis->NotifyOutputMode(); |
| 921 | } |
| 922 | |
| 923 | /******************/ |
| 924 | /* GestureWatcher */ |
nothing calls this directly
no test coverage detected