diff options
author | corvid <corvid@lavabit.com> | 2009-05-17 12:34:17 -0400 |
---|---|---|
committer | corvid <corvid@lavabit.com> | 2009-05-17 12:34:17 -0400 |
commit | 43d665c593b1845a1fb2f7d54e4ca4c9ee60250e (patch) | |
tree | ece1febcfae59b731d73723bb2d7f035f91d1c65 /dlib/dlib.h | |
parent | 5ff1a29d501f97a01c983ef62f4e6b76b7814785 (diff) |
Added DLIB_MSG() macro for dlib's messages
Diffstat (limited to 'dlib/dlib.h')
-rw-r--r-- | dlib/dlib.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/dlib/dlib.h b/dlib/dlib.h index 246f9adb..b2e87415 100644 --- a/dlib/dlib.h +++ b/dlib/dlib.h @@ -7,6 +7,7 @@ #include <string.h> /* for strerror */ #include <strings.h> /* for strcasecmp, strncasecmp (POSIX 2001) */ +#include "d_size.h" #ifdef __cplusplus extern "C" { @@ -161,6 +162,11 @@ void *dList_find_sorted (Dlist *lp, const void *data, dCompareFunc func); int dParser_parse_rc_line(char **line, char **name, char **value); /* + *- Dlib messages ------------------------------------------------------------- + */ +void dLib_show_messages(bool_t show); + +/* *- Misc utility functions ---------------------------------------------------- */ char *dGetcwd (); |