1999-07-23 05:15:58 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
1999-06-16 03:02:41 +00:00
|
|
|
*
|
2000-06-04 07:13:40 +00:00
|
|
|
* The contents of this file are subject to the Mozilla Public
|
1999-11-06 03:40:37 +00:00
|
|
|
* License Version 1.1 (the "License"); you may not use this file
|
|
|
|
* except in compliance with the License. You may obtain a copy of
|
2000-06-04 07:13:40 +00:00
|
|
|
* the License at http://www.mozilla.org/MPL/
|
|
|
|
*
|
1999-11-06 03:40:37 +00:00
|
|
|
* Software distributed under the License is distributed on an "AS
|
|
|
|
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
|
|
|
* implied. See the License for the specific language governing
|
|
|
|
* rights and limitations under the License.
|
2000-06-04 07:13:40 +00:00
|
|
|
*
|
1999-11-06 03:40:37 +00:00
|
|
|
* The Original Code is mozilla.org code.
|
2000-06-04 07:13:40 +00:00
|
|
|
*
|
1999-11-06 03:40:37 +00:00
|
|
|
* The Initial Developer of the Original Code is Netscape
|
1999-06-16 03:02:41 +00:00
|
|
|
* Communications Corporation. Portions created by Netscape are
|
2000-06-04 07:13:40 +00:00
|
|
|
* Copyright (C) 2000 Netscape Communications Corporation.
|
|
|
|
* All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
* Stuart Parmenter <pavlov@netscape.com>
|
1999-06-16 03:02:41 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "nsISupports.idl"
|
2001-07-16 02:40:48 +00:00
|
|
|
|
|
|
|
interface nsIURL;
|
1999-06-16 03:02:41 +00:00
|
|
|
|
|
|
|
[scriptable, uuid(B148EED1-236D-11d3-B35C-00A0CC3C1CDE)]
|
|
|
|
interface nsISound : nsISupports
|
|
|
|
{
|
2000-06-04 07:13:40 +00:00
|
|
|
void play(in nsIURL aURL);
|
2001-10-10 08:08:22 +00:00
|
|
|
/**
|
|
|
|
* for playing system sounds
|
|
|
|
*/
|
|
|
|
void playSystemSound(in string soundAlias);
|
2000-06-04 07:13:40 +00:00
|
|
|
void beep();
|
1999-06-16 03:02:41 +00:00
|
|
|
};
|