Added atspi-accessible-private.h
authorAlejandro Piñeiro <apinheiro@igalia.com>
Tue, 4 Feb 2014 11:17:13 +0000 (12:17 +0100)
committerAlejandro Piñeiro <apinheiro@igalia.com>
Tue, 4 Feb 2014 16:56:20 +0000 (17:56 +0100)
On commit
6395af932862454ed292d3623c18c59218ecbe7e
atspi-accessible-private.h started to be used, but not included.

https://bugzilla.gnome.org/show_bug.cgi?id=723601

atspi/atspi-accessible-private.h [new file with mode: 0644]

diff --git a/atspi/atspi-accessible-private.h b/atspi/atspi-accessible-private.h
new file mode 100644 (file)
index 0000000..496f7d7
--- /dev/null
@@ -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_ */