mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
15 lines
426 B
JavaScript
15 lines
426 B
JavaScript
const XULAPPINFO_CONTRACTID = "@mozilla.org/xre/app-info;1";
|
|
const XULAPPINFO_CID = Components.ID("{4ba645d3-be6f-40d6-a42a-01b2f40091b8}");
|
|
|
|
const Cc = Components.classes;
|
|
const Ci = Components.interfaces;
|
|
const Cr = Components.results;
|
|
|
|
|
|
function registerManifests(manifests)
|
|
{
|
|
var reg = Components.manager.QueryInterface(Ci.nsIComponentRegistrar);
|
|
for each (var manifest in manifests)
|
|
reg.autoRegister(manifest);
|
|
}
|