summaryrefslogtreecommitdiffstats
path: root/src/gallium/auxiliary/cso_cache/cso_hash.h
diff options
context:
space:
mode:
authorJosé Fonseca <jrfonseca@tungstengraphics.com>2008-02-22 18:28:30 +0900
committerJosé Fonseca <jrfonseca@tungstengraphics.com>2008-02-23 00:51:37 +0900
commit901b03e84dce21f4241375da179b2199a3162e0c (patch)
tree600f0a99db24d805ed9d2408ff6ef922dc9e4878 /src/gallium/auxiliary/cso_cache/cso_hash.h
parent6c597238b2e168b63738ac8cc9167c1d09185aad (diff)
downloadexternal_mesa3d-901b03e84dce21f4241375da179b2199a3162e0c.zip
external_mesa3d-901b03e84dce21f4241375da179b2199a3162e0c.tar.gz
external_mesa3d-901b03e84dce21f4241375da179b2199a3162e0c.tar.bz2
gallium: Wrap decls in extern "C".
Diffstat (limited to 'src/gallium/auxiliary/cso_cache/cso_hash.h')
-rw-r--r--src/gallium/auxiliary/cso_cache/cso_hash.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/cso_cache/cso_hash.h b/src/gallium/auxiliary/cso_cache/cso_hash.h
index ffd99be..2e8b696 100644
--- a/src/gallium/auxiliary/cso_cache/cso_hash.h
+++ b/src/gallium/auxiliary/cso_cache/cso_hash.h
@@ -33,6 +33,12 @@
#ifndef CSO_HASH_H
#define CSO_HASH_H
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+
struct cso_hash;
struct cso_node;
@@ -68,4 +74,8 @@ void *cso_hash_find_data_from_template( struct cso_hash *hash,
int size );
+#ifdef __cplusplus
+}
+#endif
+
#endif