20 lines
362 B
Plaintext
20 lines
362 B
Plaintext
#include <nsISupports.idl>
|
|
|
|
|
|
[scriptable, uuid(A3F70CE4-FAE8-4bd1-98EB-0CF581E4B4DC)]
|
|
interface IMiCASAKeys : nsISupports
|
|
{
|
|
PRInt32 miCASAWriteKey(
|
|
in AUTF8String secretId,
|
|
in AUTF8String key,
|
|
in AUTF8String value
|
|
);
|
|
|
|
PRInt32 miCASAReadKey(
|
|
in AUTF8String secretId,
|
|
in AUTF8String key,
|
|
out AUTF8String value
|
|
);
|
|
};
|
|
|