summaryrefslogtreecommitdiff
path: root/atspi/atspi-accessible-private.h
diff options
context:
space:
mode:
authorAlejandro Piñeiro <apinheiro@igalia.com>2014-02-04 12:17:13 +0100
committerAlejandro Piñeiro <apinheiro@igalia.com>2014-02-04 17:56:20 +0100
commit7d4280e5b05018b67409664c4683494ef6a43690 (patch)
treeb148c1b23a72fe2a43c36217d852fdeb7f06e769 /atspi/atspi-accessible-private.h
parentb6db56dfa26af144dd02a9657e02e8027e729d69 (diff)
downloadat-spi2-core-7d4280e5b05018b67409664c4683494ef6a43690.tar.gz
Added atspi-accessible-private.h
On commit 6395af932862454ed292d3623c18c59218ecbe7e atspi-accessible-private.h started to be used, but not included. https://bugzilla.gnome.org/show_bug.cgi?id=723601
Diffstat (limited to 'atspi/atspi-accessible-private.h')
-rw-r--r--atspi/atspi-accessible-private.h46
1 files changed, 46 insertions, 0 deletions
diff --git a/atspi/atspi-accessible-private.h b/atspi/atspi-accessible-private.h
new file mode 100644
index 00000000..496f7d79
--- /dev/null
+++ b/atspi/atspi-accessible-private.h
@@ -0,0 +1,46 @@
+/*
+ * AT-SPI - Assistive Technology Service Provider Interface
+ * (Gnome Accessibility Project; http://developer.gnome.org/projects/gap)
+ *
+ * Copyright 2002 Ximian, Inc.
+ * 2002 Sun Microsystems Inc.
+ * Copyright 2010, 2011 Novell, Inc.
+ *
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Library General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Library General Public License for more details.
+ *
+ * You should have received a copy of the GNU Library General Public
+ * License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ */
+
+#ifndef _ATSPI_ACCESSIBLE_PRIVATE_H_
+#define _ATSPI_ACCESSIBLE_PRIVATE_H_
+
+G_BEGIN_DECLS
+
+#include "atspi-accessible.h"
+
+struct _AtspiAccessiblePrivate
+{
+ GHashTable *cache;
+ guint cache_ref_count;
+};
+
+GHashTable *
+_atspi_accessible_ref_cache (AtspiAccessible *accessible);
+
+void
+_atspi_accessible_unref_cache (AtspiAccessible *accessible);
+G_END_DECLS
+
+#endif /* _ATSPI_ACCESSIBLE_H_ */