NS_IMETHODIMP 在 XPCOM 中意味着什么?

发布于 2024-10-19 17:19:20 字数 176 浏览 2 评论 0原文

我很难在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

你不是我要的菜∠ 2024-10-26 17:19:20

这取决于您的平台,但一般来说它只是 nsresult#define。在 Windows 上,它有点不同,它是 nsresult __stdcall#define

It depends on your platform, but in general it's just a #define for nsresult. On Windows, it's a bit different, and it's a #define for nsresult __stdcall.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文