Click here to Skip to main content
15,884,099 members
Articles / Desktop Programming / MFC

Thunking MouseProc in IE add-in

Rate me:
Please Sign up or sign in to vote.
4.38/5 (7 votes)
3 Nov 20044 min read 70.4K   1K   41  
An article on thunking MouseProc in IE add-in using BHO.
#if !defined(MOUSETRACERMANAGER_H_INCLUDED)
#define MOUSETRACERMANAGER_H_INCLUDED

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

template<class TImpl = CMouseTracerManagerImpl5>
class CMouseTracerManager
{
public:
	static BOOL SetupMouseTracer(HINSTANCE hMod = NULL, DWORD dwThreadID = 0) { return TImpl::SetupMouseTracer(hMod, dwThreadID); }
	static void RemoveMouseTracer(DWORD dwThreadID = 0) { TImpl::RemoveMouseTracer(dwThreadID); }
};

#endif	// #if !defined(MOUSETRACERMANAGER_H_INCLUDED)

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
Other
Canada Canada
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions