How plugins / Flash Runtime work in IE

How does any plug-in work in a web browser?

What language is the Flash runtime programmed in?

Plugins are part of IE or any web browser, why can't they make system calls? Are they not security threats?

0


a source to share


1 answer


They are using C ++ of course.



Creating Browser Helper Objects with Visual Studio 2005 : This article builds on Microsoft Visual Studio 2005 and the Active Template Library (ATL) for BHO development using C ++. We chose to use ATL because it conveniently implements a basic pattern that we can extend to our needs. There are other ways to create BHOs, such as using Microsoft Foundation Classes (MFC) or Win32 API and COM, but ATL is a lightweight library that automatically handles many of the details for us, including setting up the registry using the BHO class identifier (CLSID).

+1


a source







All Articles