开发者

javascript arguments are messed up when passed to NPAPI plugin function

I am using a simple NPAPI example from https://github.com/mikma/npsim开发者_如何学Pythonple.

When I try to pass arguments from javascript to the NPAPI invoke function, the parameters recieved by the NPAPI function are garbage, though argument count is passed correctly. The following is the definition of the function in which I am trying to print the "args" array after converting them to char*:

invoke(NPObject* obj, NPIdentifier methodName, const NPVariant *args, uint32_t argCount, NPVariant *result)

Am I missing something here?


It is really hard to tell what you're trying to do based on what you have given us. Specifically, as smorgan requested, we need to know how you are trying to convert the args array to char*.

You are aware of how the NPVariant works? If it's a string, the NPVariant type will be NPVariantType_String and you will need to use both the UTF8Characters member of the NPString struct (which in turn is part of the NPVariant union) and the UTF8Length member, since the string may or may not be null terminated.

Also, keep in mind that depending on what you put in, it may or may not be valid to make your NPVariant a char*. If that helps, great; if it doesn't, please post the contents of the function in which you are trying to handle the input as well as the specific javascript calls that you are making. You haven't given us enough to work with to give you more than guesses as to what problem you may be having.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜