2012-05-21 11:12:37 +00: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/. */
|
2007-01-30 05:14:50 +00:00
|
|
|
|
|
|
|
#include "nsISupports.idl"
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A scriptable interface used on Windows only to do some work from
|
|
|
|
* a special process that gets created with elevated privileges.
|
|
|
|
*
|
|
|
|
* @status UNSTABLE - This interface is not frozen and will probably change in
|
|
|
|
* future releases.
|
|
|
|
*/
|
|
|
|
|
2009-01-05 23:17:40 +00:00
|
|
|
[scriptable, uuid(dc263ca8-b257-47eb-b5b7-339d9e0b90f7)]
|
2007-01-30 05:14:50 +00:00
|
|
|
interface nsIWinAppHelper : nsISupports
|
|
|
|
{
|
2007-09-20 16:54:00 +00:00
|
|
|
readonly attribute boolean userCanElevate;
|
2007-01-30 05:14:50 +00:00
|
|
|
};
|