summaryrefslogtreecommitdiff
path: root/hook/hook.c
blob: 9af7ced15f0f6f74427ead9a03251170d9edbba1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
// 
// AUTHOR
// Stef Walter
//
// LICENSE
// This software is in the public domain.
//
// The software is provided "as is", without warranty of any kind,
// express or implied, including but not limited to the warranties
// of merchantability, fitness for a particular purpose, and
// noninfringement. In no event shall the author(s) be liable for any
// claim, damages, or other liability, whether in an action of
// contract, tort, or otherwise, arising from, out of, or in connection
// with the software or the use or other dealings in the software.
// 
// SUPPORT
// Send bug reports to: <stef@memberwebs.com>
//

#define WIN32_LEAN_AND_MEAN		// Exclude rarely-used stuff from Windows headers
#include <windows.h>
#include "hook.h"

#ifndef ASSERT
	#include <assert.h>
	#define ASSERT assert
#endif

HMODULE g_hMod = NULL;

#pragma data_seg(".shared")
HHOOK g_hHook = NULL;
LONG g_nCur = 0;
#pragma data_seg()


BOOL APIENTRY DllMain( HINSTANCE hModule, 
                       DWORD  ul_reason_for_call, 
                       LPVOID lpReserved )
{
    switch (ul_reason_for_call)
	{
		case DLL_PROCESS_ATTACH:
			g_hMod = hModule;
			break;
		case DLL_PROCESS_DETACH:
			g_hMod = NULL;
			break;
    }
    return TRUE;
}

LRESULT CALLBACK KeyboardProc(int code, WPARAM wParam, LPARAM lParam)
{
	ASSERT(g_hHook);

	if(code == HC_ACTION)
	{
		if(!(HIWORD(lParam) & KF_UP))
		{
			// Although this is not perfect, it's good enough as the
			// keyboard will usually only be used by one thread at a time
			InterlockedExchange(&g_nCur, (LONG)(g_nCur + LOWORD(lParam)));
		}
	}

	return (int)CallNextHookEx(g_hHook, code, wParam, lParam); 
}

HOOK_API HRESULT InstallSpeedHook()
{
	ASSERT(g_hMod);
	g_hHook = SetWindowsHookEx(WH_KEYBOARD, KeyboardProc, g_hMod, 0);

	if(!g_hHook)
		return HRESULT_FROM_WIN32(GetLastError());

	return S_OK;
}

HOOK_API HRESULT RemoveSpeedHook()
{
	ASSERT(g_hHook);
	return UnhookWindowsHookEx(g_hHook) ? S_OK : HRESULT_FROM_WIN32(GetLastError());
}

HOOK_API int GetCurSpeedCount()
{
	return g_nCur;
}

HOOK_API void ClearSpeedCount()
{
	InterlockedExchange(&g_nCur, 0L);
}