mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-13 18:27:35 +00:00
db2e8339d4
and renamed all the CIDs to uppercase
14 lines
276 B
Plaintext
14 lines
276 B
Plaintext
interface AppCoresManager
|
|
{
|
|
/* IID: { 0x18c2f981, 0xb09f, 0x11d2, \
|
|
{0xbc, 0xde, 0x00, 0x80, 0x5f, 0x0e, 0x13, 0x53}} */
|
|
|
|
void Startup();
|
|
void Shutdown();
|
|
|
|
void Add(in BaseAppCore appcore);
|
|
void Remove(in BaseAppCore appcore);
|
|
|
|
BaseAppCore Find(in wstring id);
|
|
};
|