MCPcopy Create free account
hub / github.com/BeneficialCode/WinArk / Callback

Method Callback

PdbParser/SymbolHandler.cpp:230–236  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

228}
229
230BOOL SymbolHandler::Callback(ULONG code, ULONG64 data) {
231 MSG msg;
232 while (::PeekMessage(&msg, nullptr, 0, 0, PM_REMOVE))
233 ::DispatchMessage(&msg);
234
235 return 0;
236}
237
238std::unique_ptr<SymbolHandler> SymbolHandler::CreateForProcess(DWORD pid, PCSTR searchPath) {
239 auto hProcess = ::OpenProcess(PROCESS_QUERY_INFORMATION | SYNCHRONIZE, FALSE, pid);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected