Re: [webkit-dev] How to develop NPAPI plugin with webkit lib

2009-07-13 Thread Hieu Le Trung
50 PM To: Harry Zhang Cc: webkit-dev@lists.webkit.org; webkit-h...@lists.webkit.org Subject: Re: [webkit-dev] How to develop NPAPI plugin with webkit lib Are you calling NPN_CreateObject using the function pointers that were exchanged during initialization? You're probably aware that t

Re: [webkit-dev] How to develop NPAPI plugin with webkit lib

2009-07-13 Thread Jack Wootton
Are you calling NPN_CreateObject using the function pointers that were exchanged during initialization? You're probably aware that the browser provides pointers to the browser side of the NPAPI and it is your job as the plugin author to populate the function pointers that make up the plugin side o

Re: [webkit-dev] How to develop NPAPI plugin with webkit lib

2009-07-12 Thread Harry Zhang
Besides the issue of missing NPAPI headers, i also failed to find npruntime symbols such as NPN_CreateObject in libwekbit-1.0 (i used objdump -t to check the symbols), so i got "undefined reference to NPN_CreateObject" during the link phase, somehow confused. I'm a newbie in this NPAPI plugin area,