| 50 | // - which is called from WM_DESTROY (when both restarting VM & exiting the app) |
| 51 | |
| 52 | VOICE::~VOICE(void) |
| 53 | { |
| 54 | if (lpDSBvoice) |
| 55 | { |
| 56 | DSVoiceStop(this); |
| 57 | DSReleaseSoundBuffer(this); |
| 58 | } |
| 59 | } |
| 60 | |
| 61 | //----------------------------------------------------------------------------- |
| 62 |
nothing calls this directly
no test coverage detected