NS_IMETHODIMP 在 XPCOM 中意味着什么?
我很难在 XPCOM 中找到他的 NS_IMETHODIMP 的含义,我想了解这个函数的签名:
NS_IMETHODIMP myConfig::GetProperty(const char *name, char **_retval NS_OUTPARAM)
{
//...
}
I'm having trouble to find the meaning of his NS_IMETHODIMP in a XPCOM, and I would like to understand this function's signature:
NS_IMETHODIMP myConfig::GetProperty(const char *name, char **_retval NS_OUTPARAM)
{
//...
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这取决于您的平台,但一般来说它只是
nsresult
的#define
。在 Windows 上,它有点不同,它是nsresult __stdcall
的#define
。It depends on your platform, but in general it's just a
#define
fornsresult
. On Windows, it's a bit different, and it's a#define
fornsresult __stdcall
.