mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-07 20:17:37 +00:00
16 lines
257 B
Plaintext
16 lines
257 B
Plaintext
interface BaseAppCore
|
|
{
|
|
/* IID: { 0xbe5c13bd, 0xba9f, 0x11d2, \
|
|
{0x96, 0xc4, 0x0, 0x60, 0xb0, 0xfb, 0x99, 0x56}} */
|
|
|
|
readonly attribute wstring id;
|
|
|
|
void BaseAppCore();
|
|
void Init(in wstring id);
|
|
void SetDocumentCharset(in wstring charset);
|
|
|
|
|
|
};
|
|
|
|
|