diff options
| author | David Bremner <david@tethera.net> | 2017-05-27 13:51:11 -0300 |
|---|---|---|
| committer | David Bremner <david@tethera.net> | 2017-05-30 09:01:46 -0300 |
| commit | 1e7dbf7abcf58407a5171e9030056f2ff9bec15a (patch) | |
| tree | 120a91335e0c505a80daeb56ee218d43af9c3b21 /util/gmime-extra.h | |
| parent | 427fa5e6e66eb238783f6cace56cbdcafc9c648d (diff) | |
util: convenience function to create gmime stream for stdout
It turns out that our use of GMimeStreamPipe has only succeeded
because gmime has been ignoring some seek failures; this will no
longer be the case in gmime 3.0, so we use a GMimeStreamPipe, which
does not assume seekability, wrapped in a buffering stream.
Diffstat (limited to 'util/gmime-extra.h')
| -rw-r--r-- | util/gmime-extra.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/util/gmime-extra.h b/util/gmime-extra.h new file mode 100644 index 00000000..e0432a94 --- /dev/null +++ b/util/gmime-extra.h @@ -0,0 +1,6 @@ +#ifndef _GMIME_EXTRA_H +#define _GMIME_EXTRA_H +#include <gmime/gmime.h> + +GMimeStream *g_mime_stream_stdout_new(void); +#endif |
