MCPcopy Create free account
hub / github.com/AppleWin/AppleWin / SoundCore_StopTimer

Function SoundCore_StopTimer

source/SoundCore.cpp:312–325  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

310}
311
312void SoundCore_StopTimer()
313{
314 if(!g_bTimerActive)
315 return;
316
317 if(KillTimer(NULL, g_nTimerID) == FALSE)
318 {
319 fprintf(stderr, "Error killing timer\n");
320 _ASSERT(0);
321 return;
322 }
323
324 g_bTimerActive = false;
325}
326
327bool SoundCore_GetTimerState()
328{

Callers 2

SoundCore_TimerFuncFunction · 0.85
DSUninitFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected