fix baseline build (old cairo) - 'cairo_rectangle_int_t' does not name a type
[LibreOffice.git] / winaccessibility / source / UAccCOMIDL / defines.idl
blob2902b4f920ff9258418457f9a67d47797d64d54c
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 import "objidl.idl";
21 import "oaidl.idl";
22 import "oleacc.idl";
24 interface IMAccessible;
26 const long UACC_NO_FOCUS=0xFFFF;
28 typedef struct {
29 long m_dChildID;//identify a unique child node
30 IMAccessible* m_pIMAccessible;
31 }AccChildNode;
33 typedef struct Location {
34 long m_dLeft;
35 long m_dTop;
36 long m_dWidth;
37 long m_dHeight;
38 }Location;
40 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */