Re: How to see all the methods of a NPAPI plugin?
Ashish Mittal <[email protected]>
| Newsgroups | gmane.comp.mozilla.devel.plugins |
|---|---|
| Organization | http://groups.google.com |
| Message-ID | <8b0533da-d47d-4938-a700-cadb806adbc4@d12g2000prg.googlegroups.com> |
On Dec 12, 9:24 am, Xiexin <[email protected]> wrote: > Hi all, I'm new to NPAPI, now I have a NPAPI DLL from another company, how > could I get all the methods of this plugin ? > > In the IE OCX, we can use the OLEViewer to do this, does here has a tool > likes this for the NPAPI plugin ? > > Thanks You can just write a dll that follows npapi standards. NP_GetEntryPoints, NP_Initialize and NP_Shutdown being exported from your dll. Inside NP_GetENtryPoints of your dll you can load third party npapi dll and can query for NPP functions of third party dll from here.