diff options
Diffstat (limited to 'camel/camel-exception.h')
-rw-r--r-- | camel/camel-exception.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/camel/camel-exception.h b/camel/camel-exception.h index 1284608e91..ef484db111 100644 --- a/camel/camel-exception.h +++ b/camel/camel-exception.h @@ -36,7 +36,7 @@ extern "C" { #endif /* __cplusplus }*/ #include <glib.h> - +#include "camel-types.h" typedef enum { #include "camel-exception-list.def" @@ -44,12 +44,12 @@ typedef enum { } ExceptionId; -typedef struct { +struct _CamelException { /* do not access the fields directly */ ExceptionId id; char *desc; -} CamelException; +}; |