开发者

Gecko NSModule: ContractIDEntry "nsID const *"?

开发者 https://www.devze.com 2023-01-23 01:46 出处:网络
I created a FireFox addon a while a go, and noticed it stopped working on FireFox 3.6 Apparently, NSGetModule is being replaced with an NSModule structure, so I have to adapt.

I created a FireFox addon a while a go, and noticed it stopped working on FireFox 3.6 Apparently, NSGetModule is being replaced with an NSModule structure, so I have to adapt. I'm coding my product with Delphi, so I have to port the new code to Object Pascal.

If I look over this code: http://mxr.mozilla.org/mozilla-central/source/xpcom/components/Module.h

I notice that the "cid"开发者_StackOverflow中文版 property of the ContractIDEntry struct, is defined as nsID const *

Does this mean that there's a pointer to a nsID variable in the struct, or that the nsID value is itself part of the struct?


The full declaration is this:

struct ContractIDEntry
{
  const char* contractid;
  nsID const * cid;
};

Just as the declaration of contractid means that the struct contains a pointer to a char and not that the char is part of the struct, the declaration of cid means the struct contains a pointer to an nsID. The struct does not contain an nsID, merely a pointer to one.

Technically, it's a pointer that is not allowed to be used to modify the pointed-to value, but Delphi doesn't have that concept, so declare it as just an ordinary pointer.

0

精彩评论

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