nsISDBRequest.idl (695B)
1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ 2 /* vim: set ts=2 et sw=2 tw=80: */ 3 /* This Source Code Form is subject to the terms of the Mozilla Public 4 * License, v. 2.0. If a copy of the MPL was not distributed with this 5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 6 7 #include "nsISupports.idl" 8 9 interface nsISDBCallback; 10 interface nsIVariant; 11 12 [scriptable, uuid(13f05bcf-715c-427e-aac8-df9b2c1ec1e3)] 13 interface nsISDBRequest : nsISupports 14 { 15 [must_use] readonly attribute nsIVariant result; 16 17 [must_use] readonly attribute nsresult resultCode; 18 19 [must_use] readonly attribute ACString resultName; 20 21 attribute nsISDBCallback callback; 22 };