summaryrefslogtreecommitdiff
path: root/include/libwapcaplet/libwapcaplet.h
diff options
context:
space:
mode:
authorDaniel Silverstone <dsilvers@netsurf-browser.org>2009-02-14 15:56:52 +0000
committerDaniel Silverstone <dsilvers@netsurf-browser.org>2009-02-14 15:56:52 +0000
commit41124cff3e5e20f7b7542bdfec653ef8e852c306 (patch)
treea73fb0bfe92f66cb127312a31e29cb69980a77a6 /include/libwapcaplet/libwapcaplet.h
parentbe1ffaeca7cdb002d30817383aeb1f47fe9df79b (diff)
downloadlibwapcaplet-41124cff3e5e20f7b7542bdfec653ef8e852c306.tar.gz
libwapcaplet-41124cff3e5e20f7b7542bdfec653ef8e852c306.tar.bz2
100% of tests pass. Ship it.
svn path=/trunk/libwapcaplet/; revision=6497
Diffstat (limited to 'include/libwapcaplet/libwapcaplet.h')
-rw-r--r--include/libwapcaplet/libwapcaplet.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/include/libwapcaplet/libwapcaplet.h b/include/libwapcaplet/libwapcaplet.h
index 0294eec..ded5d58 100644
--- a/include/libwapcaplet/libwapcaplet.h
+++ b/include/libwapcaplet/libwapcaplet.h
@@ -10,6 +10,7 @@
#define libwapcaplet_h_
#include <sys/types.h>
+#include <stdbool.h>
/**
* Memory allocator type
@@ -30,9 +31,9 @@ typedef struct lwc_string_s lwc_string;
* Error codes which libwapcaplet might return.
*/
typedef enum lwc_error_e {
- lwc_error_ok = 0,
- lwc_error_oom = 1,
- lwc_error_range = 2,
+ lwc_error_ok = 0,
+ lwc_error_oom = 1,
+ lwc_error_range = 2,
} lwc_error;
/**