---------------------------------------------------------------------------
| 93 | } |
| 94 | //--------------------------------------------------------------------------- |
| 95 | void __fastcall TSound::Wait(DWORD msec) |
| 96 | { |
| 97 | DWORD tc = GetTickCount(); |
| 98 | while( ! Terminated && GetTickCount()-tc < msec ) |
| 99 | Sleep(1); |
| 100 | } |
| 101 | //-------------------------------------------------------------------- |
| 102 | bool TSound::AddToQueue(TSoundQueueItem * p) |
| 103 | { |
nothing calls this directly
no outgoing calls
no test coverage detected