summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenoît Dejean <benoit@placenet.org>2006-08-10 20:36:58 +0000
committerBenoît Dejean <bdejean@src.gnome.org>2006-08-10 20:36:58 +0000
commit383b4c480ef27319410b15bcaa67ccfa4e6362e3 (patch)
treeaa8a73946c9da9ba0736a22aa4a7a6a89a4e76e6
parent610c0071cc139d3b035fcb387301cc24f1dbbb25 (diff)
downloadlibgtop-383b4c480ef27319410b15bcaa67ccfa4e6362e3.tar.gz
Bumped version number.
2006-08-10 Benoît Dejean <benoit@placenet.org> * configure.in: Bumped version number. * glibtop.h: * include/glibtop/init_hooks.h: Added missing G_(BEGIN|END)_DECLS.
-rw-r--r--ChangeLog11
-rw-r--r--configure.in2
-rw-r--r--glibtop.h6
-rw-r--r--include/glibtop/init_hooks.h4
4 files changed, 22 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 1d3cf595..cf349a7d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,14 @@
+2006-08-10 Benoît Dejean <benoit@placenet.org>
+
+ * configure.in:
+
+ Bumped version number.
+
+ * glibtop.h:
+ * include/glibtop/init_hooks.h:
+
+ Added missing G_(BEGIN|END)_DECLS.
+
2006-07-27 Benoît Dejean <benoit@placenet.org>
* NEWS:
diff --git a/configure.in b/configure.in
index e5d246f4..98b2e944 100644
--- a/configure.in
+++ b/configure.in
@@ -4,7 +4,7 @@ dnl
m4_define([libgtop_major_version], [2])
m4_define([libgtop_minor_version], [14])
-m4_define([libgtop_micro_version], [2])
+m4_define([libgtop_micro_version], [3])
m4_define([libgtop_version], [libgtop_major_version.libgtop_minor_version.libgtop_micro_version])
dnl increment if the interface has additions, changes, removals.
diff --git a/glibtop.h b/glibtop.h
index 8e5defa2..58cb5872 100644
--- a/glibtop.h
+++ b/glibtop.h
@@ -24,6 +24,10 @@
#ifndef __GLIBTOP_H__
#define __GLIBTOP_H__
+#include <glib/gmacros.h>
+
+G_BEGIN_DECLS
+
typedef struct _glibtop glibtop;
/**
@@ -108,4 +112,6 @@ glibtop_init_s (glibtop **server_ptr,
unsigned long features,
unsigned flags);
+G_END_DECLS
+
#endif
diff --git a/include/glibtop/init_hooks.h b/include/glibtop/init_hooks.h
index e26be6ec..f2deef92 100644
--- a/include/glibtop/init_hooks.h
+++ b/include/glibtop/init_hooks.h
@@ -3,9 +3,13 @@
#include <glibtop.h>
+G_BEGIN_DECLS
+
typedef void (*glibtop_init_func_t)(glibtop *);
extern const glibtop_init_func_t _glibtop_init_hook_s[];
extern const glibtop_init_func_t _glibtop_init_hook_p[];
+G_END_DECLS
+
#endif /* H_LIBGTOP_INIT_HOOKS_1122955666 */