Revision control
Copy as Markdown
Other Tools
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
#include "nsISupports.idl"
interface IGraphCalendarDiscoveryListener;
interface IGraphCalendarInfo;
[scriptable, uuid(2df1d00a-8419-4292-826a-15b143b78544)]
interface IGraphCalendarClient : nsISupports
{
void detectCalendars(in IGraphCalendarDiscoveryListener listener);
};
[scriptable, uuid(54e4b644-a8a3-4d46-8920-81880f9208ec)]
interface IGraphCalendarDiscoveryListener : nsISupports
{
void onCalendarDiscovered(in AUTF8String id, in AUTF8String name, in boolean readOnly);
void onComplete(in nsresult statusCode);
};