summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Janik <timj@gtk.org>2000-02-22 07:58:50 +0000
committerTim Janik <timj@src.gnome.org>2000-02-22 07:58:50 +0000
commit572cec3f4c9e6466d85dc7baedb9a88fbdd9df17 (patch)
treece1770938a386b91b22d67b54db0a5c7437c0958
parenta53000aa9522550612c358dd4d2e466d34b1bf8b (diff)
downloadgdk-pixbuf-572cec3f4c9e6466d85dc7baedb9a88fbdd9df17.tar.gz
add extern "C" scope.
Tue Feb 22 08:52:52 2000 Tim Janik <timj@gtk.org> * gtk/gtkthemes.h: add extern "C" scope.
-rw-r--r--ChangeLog4
-rw-r--r--ChangeLog.pre-2-04
-rw-r--r--ChangeLog.pre-2-104
-rw-r--r--ChangeLog.pre-2-24
-rw-r--r--ChangeLog.pre-2-44
-rw-r--r--ChangeLog.pre-2-64
-rw-r--r--ChangeLog.pre-2-84
-rw-r--r--gtk/gtkthemes.h12
8 files changed, 40 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index c0a38c681..7eac0fe87 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Tue Feb 22 08:52:52 2000 Tim Janik <timj@gtk.org>
+
+ * gtk/gtkthemes.h: add extern "C" scope.
+
Mon Feb 21 20:16:42 2000 Lars Hamann <lars@gtk.org>
* gtk/gtkclist.c: applied patch from Guy Harris <guy@netapp.com>
diff --git a/ChangeLog.pre-2-0 b/ChangeLog.pre-2-0
index c0a38c681..7eac0fe87 100644
--- a/ChangeLog.pre-2-0
+++ b/ChangeLog.pre-2-0
@@ -1,3 +1,7 @@
+Tue Feb 22 08:52:52 2000 Tim Janik <timj@gtk.org>
+
+ * gtk/gtkthemes.h: add extern "C" scope.
+
Mon Feb 21 20:16:42 2000 Lars Hamann <lars@gtk.org>
* gtk/gtkclist.c: applied patch from Guy Harris <guy@netapp.com>
diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10
index c0a38c681..7eac0fe87 100644
--- a/ChangeLog.pre-2-10
+++ b/ChangeLog.pre-2-10
@@ -1,3 +1,7 @@
+Tue Feb 22 08:52:52 2000 Tim Janik <timj@gtk.org>
+
+ * gtk/gtkthemes.h: add extern "C" scope.
+
Mon Feb 21 20:16:42 2000 Lars Hamann <lars@gtk.org>
* gtk/gtkclist.c: applied patch from Guy Harris <guy@netapp.com>
diff --git a/ChangeLog.pre-2-2 b/ChangeLog.pre-2-2
index c0a38c681..7eac0fe87 100644
--- a/ChangeLog.pre-2-2
+++ b/ChangeLog.pre-2-2
@@ -1,3 +1,7 @@
+Tue Feb 22 08:52:52 2000 Tim Janik <timj@gtk.org>
+
+ * gtk/gtkthemes.h: add extern "C" scope.
+
Mon Feb 21 20:16:42 2000 Lars Hamann <lars@gtk.org>
* gtk/gtkclist.c: applied patch from Guy Harris <guy@netapp.com>
diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4
index c0a38c681..7eac0fe87 100644
--- a/ChangeLog.pre-2-4
+++ b/ChangeLog.pre-2-4
@@ -1,3 +1,7 @@
+Tue Feb 22 08:52:52 2000 Tim Janik <timj@gtk.org>
+
+ * gtk/gtkthemes.h: add extern "C" scope.
+
Mon Feb 21 20:16:42 2000 Lars Hamann <lars@gtk.org>
* gtk/gtkclist.c: applied patch from Guy Harris <guy@netapp.com>
diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6
index c0a38c681..7eac0fe87 100644
--- a/ChangeLog.pre-2-6
+++ b/ChangeLog.pre-2-6
@@ -1,3 +1,7 @@
+Tue Feb 22 08:52:52 2000 Tim Janik <timj@gtk.org>
+
+ * gtk/gtkthemes.h: add extern "C" scope.
+
Mon Feb 21 20:16:42 2000 Lars Hamann <lars@gtk.org>
* gtk/gtkclist.c: applied patch from Guy Harris <guy@netapp.com>
diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8
index c0a38c681..7eac0fe87 100644
--- a/ChangeLog.pre-2-8
+++ b/ChangeLog.pre-2-8
@@ -1,3 +1,7 @@
+Tue Feb 22 08:52:52 2000 Tim Janik <timj@gtk.org>
+
+ * gtk/gtkthemes.h: add extern "C" scope.
+
Mon Feb 21 20:16:42 2000 Lars Hamann <lars@gtk.org>
* gtk/gtkclist.c: applied patch from Guy Harris <guy@netapp.com>
diff --git a/gtk/gtkthemes.h b/gtk/gtkthemes.h
index 398d050e6..a9903606b 100644
--- a/gtk/gtkthemes.h
+++ b/gtk/gtkthemes.h
@@ -32,6 +32,12 @@
#include <gtk/gtkstyle.h>
#include <gtk/gtkwidget.h>
+
+#ifdef __cplusplus
+extern "C" {
+#endif /* __cplusplus */
+
+
struct _GtkThemeEngine {
/* Fill in engine_data pointer in a GtkRcStyle by parsing contents
* of brackets. Returns G_TOKEN_NONE if succesfull, otherwise returns
@@ -82,4 +88,10 @@ void gtk_theme_engine_ref (GtkThemeEngine *engine);
void gtk_theme_engine_unref (GtkThemeEngine *engine);
+
+#ifdef __cplusplus
+}
+#endif /* __cplusplus */
+
+
#endif /* __GTK_THEMES_H__ */