| 3 | #include "IPCContext.hpp" |
| 4 | |
| 5 | GAPIProxyFrameGrabber::GAPIProxyFrameGrabber(HANDLE syncRunMutex) { |
| 6 | LARGE_INTEGER liFreq; |
| 7 | QueryPerformanceFrequency(&liFreq); |
| 8 | m_liFreq.QuadPart = liFreq.QuadPart / 1000; |
| 9 | m_pcOverall.QuadPart = 0; |
| 10 | m_pcOriginal.QuadPart = 0; |
| 11 | m_syncRunMutex = syncRunMutex; |
| 12 | } |
| 13 | |
| 14 | GAPIProxyFrameGrabber::~GAPIProxyFrameGrabber() { |
| 15 | if (this->isHooksInstalled()) |
nothing calls this directly
no outgoing calls
no test coverage detected