gecko-dev/editor/idl/nsIEditorLogging.idl

24 строки
629 B
Plaintext
Исходник Обычный вид История

/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2012-05-21 15:12:37 +04:00
/* 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
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
1999-08-09 05:34:04 +04:00
#include "nsISupports.idl"
1999-08-09 05:34:04 +04:00
interface nsIFile;
1999-08-09 05:34:04 +04:00
[scriptable, uuid(4805e681-49b9-11d3-9ce4-ed60bd6cb5bc)]
1999-08-09 05:34:04 +04:00
interface nsIEditorLogging : nsISupports
1999-08-09 05:34:04 +04:00
{
/** Start logging.
* @param aLogFile The file to which the log should be written.
*/
void startLogging(in nsIFile aLogFile);
1999-08-09 05:34:04 +04:00
/** Stop logging.
*/
void stopLogging();
1999-08-09 05:34:04 +04:00
};