зеркало из https://github.com/mozilla/pjs.git
21 строка
686 B
Plaintext
21 строка
686 B
Plaintext
#include "nsISupports.idl"
|
|
|
|
/* XXX should be built in */
|
|
native nsID(nsID *);
|
|
|
|
[scriptable, uuid(948c2080-0398-11d3-915e-0000863011c4)]
|
|
|
|
interface nsIProxyCreateInstance : nsISupports
|
|
{
|
|
[noscript] void CreateInstanceByIID(in nsIIDRef cid,
|
|
in nsISupports aOuter,
|
|
in nsIIDRef iid,
|
|
out voidStar result);
|
|
|
|
[noscript] void CreateInstanceByProgID(in string aProgID,
|
|
in nsISupports aOuter,
|
|
in nsIIDRef iid,
|
|
out voidStar result);
|
|
};
|
|
|