From 58fa4a5955e9ca12859f4e99c7985df9edd83b95 Mon Sep 17 00:00:00 2001 From: Martin Baulig Date: Sun, 2 Jan 2000 14:48:49 +0000 Subject: [PATCH] New error constant. 2000-01-02 Martin Baulig * include/glibtop/errors.h (GLIBTOP_ERROR_DEMARSHAL_ERROR): New error constant. --- ChangeLog | 3 +++ include/glibtop/errors.h | 4 +++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 3d655843..2336a6ee 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2000-01-02 Martin Baulig + * include/glibtop/errors.h + (GLIBTOP_ERROR_DEMARSHAL_ERROR): New error constant. + * src/Makefile.am: Disable compilation of the `daemon' directory. * include/glibtop/command.h: Removed. diff --git a/include/glibtop/errors.h b/include/glibtop/errors.h index cb54b5a1..7ee6c35d 100644 --- a/include/glibtop/errors.h +++ b/include/glibtop/errors.h @@ -47,7 +47,9 @@ BEGIN_LIBGTOP_DECLS #define GLIBTOP_ERROR_NO_SUCH_BACKEND 10 #define GLIBTOP_ERROR_NOT_IMPLEMENTED 11 -#define GLIBTOP_MAX_ERROR 12 +#define GLIBTOP_ERROR_DEMARSHAL_ERROR 12 + +#define GLIBTOP_MAX_ERROR 13 char * glibtop_get_error_string_l (glibtop *server, unsigned error_number);