我刚接触firebreath,我正在开发一个NPAPI插件,该插件将被打包到Google Chrome扩展中。我在创建一个检索DLL当前所在位置的方法时遇到了问题。有什么想法吗?
发布于 2012-01-27 01:30:02
这非常简单;您可以在FireBreath网站的Tips and Tricks页面上找到说明:
// From inside your Plugin class (that extends PluginCore)
std::string MyPlugin::getFilesystemPath()
{
return m_filesystemPath;
}https://stackoverflow.com/questions/9020968
复制相似问题