add logon requestor interface r=amusil"

This commit is contained in:
bienvenu%netscape.com 2000-02-15 07:05:27 +00:00
Родитель 4d0d9e29d4
Коммит de9bd2fa96
1 изменённых файлов: 9 добавлений и 0 удалений

Просмотреть файл

@ -24,3 +24,12 @@ interface nsIMsgLogonRedirector : nsISupports
/* reply with logon redirection data. */
void OnLogonRedirectionReply(in wstring pHost, in unsigned short pPort, in string pCookieData, in unsigned short pCookieSize);
};
/* this is the service we use to request a logon redirection */
[scriptable, uuid(0c2e96ac-e0ae-11d3-a560-0060b0fc04b7)]
interface nsIMsgLogonRedirectionRequester : nsISupports
{
void Logon(in string userName, in string password, in nsIMsgLogonRedirector listener);
void Logoff(); /* might not need this one */
};