I have successfully compiled and created npapi dll in MS based on mozilla npruntime project. Reference from: https://developer.mozilla.org/en-US/docs/Compiling_The_npruntime_Sample_Plugin_in_Visual_Studio. Starting mozilla and open about:plugins shows the plugin. But when I open "test.html" the plugin does'nt come up.
I have tested the dll by making a separate test app, where i can access the entry point functions through NP_INIT l_pInit= (NP_INIT)GetProcAddress(hModule, "NP_Initialize"); and i am able to step into my plugin dll function.
But with mozilla it doesn't work. Please suggest.