Bug 470455 - test_database_sync_embed_visits.js leaks, r=sdwilsh
[wine-gecko.git] / other-licenses / ia2 / AccessibleApplication.idl
blob75e2c0e030cd831ae5cd45d6ff558b849160eb39
1 /*************************************************************************
3 * File Name (AccessibleApplication.idl)
5 * IAccessible2 IDL Specification
7 * Copyright (c) IBM Corp. 2007
8 * Copyright (c) Sun Microsystems, Inc. 2000, 2006
10 * This library is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU Lesser General Public
12 * License version 2.1, as published by the Free Software Foundation; either
13 * version 2.1 of the License, or (at your option) any later version.
15 * This library is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * Lesser General Public License for more details.
20 * You should have received a copy of the GNU Lesser General Public
21 * License along with this library; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02110-1301 USA
24 ************************************************************************/
26 import "objidl.idl";
27 import "oaidl.idl";
28 import "oleacc.idl";
30 /** @brief This interface gives access to the application's name and version information.
32 This interface provides the AT with the information it needs to differentiate
33 this application from other applications, from other versions of this
34 application, or from other versions of this application running on different
35 versions of an accessibility bridge or accessbility toolkit.
37 [object, uuid(D49DED83-5B25-43F4-9B95-93B44595979E)]
38 interface IAccessibleApplication : IUnknown
41 /** @brief Returns the application name.
42 @param [out] name
44 [propget] HRESULT appName
46 [out, retval] BSTR *name
49 /** @brief Returns the application version.
50 @param [out] version
52 [propget] HRESULT appVersion
54 [out, retval] BSTR *version
57 /** @brief Returns the toolkit/bridge name.
58 @param [out] name
60 [propget] HRESULT toolkitName
62 [out, retval] BSTR *name
65 /** @brief Returns the toolkit/bridge version.
66 @param [out] version
68 [propget] HRESULT toolkitVersion
70 [out, retval] BSTR *version
71 );