You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cwp/hooks.h

11 lines
287 B

#pragma once
#include <Windows.h>
#include <iostream>
namespace hooks
{
//https://docs.microsoft.com/en-us/previous-versions/windows/desktop/legacy/ms633573(v=vs.85)
LRESULT CALLBACK hkWndProc(HWND handle, UINT message, WPARAM wParam, LPARAM lParam);
bool setup();
bool destroy();
}