michael@0: /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ michael@0: /* vim: set ts=2 et sw=2 tw=80: */ michael@0: /* This Source Code Form is subject to the terms of the Mozilla Public michael@0: * License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ michael@0: michael@0: #include "nsISupports.idl" michael@0: michael@0: [scriptable, function, uuid(3a75d80a-9258-4ab8-95fd-ec0b5f634df1)] michael@0: interface nsICursorContinueCallback : nsISupports michael@0: { michael@0: void handleContinue(); michael@0: }; michael@0: michael@0: [scriptable, builtinclass, uuid(062ea35a-5158-425a-b7bc-3ae9daa84398)] michael@0: interface nsIDOMDOMCursor : nsISupports michael@0: { michael@0: readonly attribute boolean done; michael@0: void continue(); michael@0: };