Click here to Skip to main content
15,895,011 members
Articles / Programming Languages / C++

HookAPI source code

Rate me:
Please Sign up or sign in to vote.
3.09/5 (36 votes)
31 Jan 20052 min read 392.4K   9.6K   117  
A system wide api source code for windows api hook developpers
#ifndef _FILTER_H_

typedef struct
{
	UINT id;
	//char msg[40];
	char win_caption[256];
}FILTER_INFO;

class CMsgFilter
{
public:
	CMsgFilter();
	~CMsgFilter();

	FILTER_INFO *m_pFilterInfo;
	int m_nFilterInfoCount;
	int Filter(HWND, UINT, WPARAM, LPARAM);
	int FilterSendMessage(HWND hWnd, UINT msg, WPARAM, LPARAM);
	int FilterPostMessage(HWND hWnd, UINT msg, WPARAM, LPARAM);
	int FilterCallWindowProc(HWND hWnd, UINT msg, WPARAM, LPARAM);
	int FilterDispatchMessage(HWND hWnd, UINT msg, WPARAM, LPARAM);
};

#endif

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
China China
An old C programmer in China.

Comments and Discussions