michael@0: /* This Source Code Form is subject to the terms of the Mozilla Public michael@0: * License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: * file You can obtain one at http://mozilla.org/MPL/2.0/. */ michael@0: michael@0: #define DO_NO_IMPORTS 1 michael@0: michael@0: import "oaidl.idl"; michael@0: import "oleacc.idl"; michael@0: import "Inspectable.idl"; michael@0: michael@0: [uuid(C78B35B5-05DB-43AA-AE73-94C233A93C98)] michael@0: interface IUIABridge : IInspectable { michael@0: HRESULT Init([in] IInspectable* view, [in] IInspectable* window, [in] LONG_PTR inner); michael@0: HRESULT Disconnect(); michael@0: HRESULT FocusChangeEvent(); michael@0: }; michael@0: michael@0: [uuid(9F57311C-E8AE-4991-8D9F-E069EEE96D85)] michael@0: interface IUIAElement : IInspectable { michael@0: HRESULT SetFocusInternal([in] LONG_PTR accessible); michael@0: HRESULT ClearFocus(); michael@0: };