mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-07 04:05:49 +00:00
19 lines
379 B
Plaintext
19 lines
379 B
Plaintext
interface PrefsCore : BaseAppCore
|
|
{
|
|
/* IID: { 0x55af8384, 0xe11e, 0x11d2, \
|
|
{0x91, 0x5f, 0xa0, 0x53, 0xf0, 0x5f, 0xf7, 0xbc}} */
|
|
|
|
void PrefsCore();
|
|
|
|
void ShowWindow(in Window currentFrontWin);
|
|
|
|
void ChangePanel(in wstring url);
|
|
void PanelLoaded(in Window win);
|
|
|
|
void SavePrefs();
|
|
void CancelPrefs();
|
|
void SetSubstitutionVar(in int stringnum, in string val);
|
|
};
|
|
|
|
|