mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-07 20:17:37 +00:00
16 lines
463 B
Plaintext
16 lines
463 B
Plaintext
interface ProfileCore : BaseAppCore
|
|
{
|
|
/* IID: { 0x0573a2a3, 0xf838, 0x11d2, \
|
|
{0x90, 0x6d, 0x00, 0x80, 0x5f, 0x8a, 0x08, 0xdc}} */
|
|
|
|
void ProfileCore();
|
|
|
|
void CreateNewProfile(in wstring data);
|
|
void RenameProfile(in wstring oldName, in wstring newName);
|
|
void DeleteProfile(in wstring profileName);
|
|
wstring GetProfileList();
|
|
void StartCommunicator(in wstring profileName);
|
|
wstring GetCurrentProfile();
|
|
void MigrateProfile(in wstring profileName);
|
|
};
|