Convert ActiveX to NPAPI

How to convert ActiveX application to NPAPI application?

All I've found is a way to enter entry and display points for NPAPI. (NPP_GetEntryPoints ...) Is this the only way other than re-writing the application with the Framework?

any help would be appreciated. Thank.

+3


source to share


1 answer


You need to write a layer that translates between NPAPI and the ActiveX control (for both directions). While it should be possible to solve mostly mostly, I don't know what code you can use.



If you're considering using FireBreath , this ActiveX wrapper example should help you. Note that if you can afford to port your plugin to FireBreath, it already generates NPAPI and ActiveX plugins from the same source base for you.

+4


source







All Articles