| 10 | #include "constants.hpp" |
| 11 | |
| 12 | LRESULT CALLBACK CallWndProc(int nCode, WPARAM wParam, LPARAM lParam) noexcept |
| 13 | { |
| 14 | // Placeholder |
| 15 | return CallNextHookEx(nullptr, nCode, wParam, lParam); |
| 16 | } |
| 17 | |
| 18 | HHOOK InjectExplorerHook(HWND window) noexcept |
| 19 | { |
nothing calls this directly
no outgoing calls
no test coverage detected