MCPcopy Create free account
hub / github.com/ZDoom/Raze / StopTimer

Method StopTimer

libraries/ZWidget/src/window/win32/win32window.cpp:689–697  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

687}
688
689void Win32Window::StopTimer(void* timerID)
690{
691 auto it = Timers.find((UINT_PTR)timerID);
692 if (it != Timers.end())
693 {
694 Timers.erase(it);
695 KillTimer(0, (UINT_PTR)timerID);
696 }
697}
698
699std::list<Win32Window*> Win32Window::Windows;
700bool Win32Window::ExitRunLoop;

Callers

nothing calls this directly

Calls 3

findMethod · 0.45
endMethod · 0.45
eraseMethod · 0.45

Tested by

no test coverage detected