我是 firebreath 的新手,我正在开发一个 NPAPI 插件,以打包到 Google Chrome 扩展程序中。我在创建一个检索 DLL 当前所在位置的方法时遇到了麻烦。有什么想法吗?
问问题
228 次
1 回答
1
这很容易;您可以在 FireBreath 网站的提示和技巧页面上找到说明:
// From inside your Plugin class (that extends PluginCore)
std::string MyPlugin::getFilesystemPath()
{
return m_filesystemPath;
}
于 2012-01-26T17:30:02.247 回答