gmime-stream-fs

Name

gmime-stream-fs -- 

Synopsis



#define     GMIME_STREAM_FS_TYPE
#define     GMIME_IS_STREAM_FS              (stream)
#define     GMIME_STREAM_FS                 (stream)
GMimeStream* g_mime_stream_fs_new           (int fd);
GMimeStream* g_mime_stream_fs_new_with_bounds
                                            (int fd,
                                             off_t start,
                                             off_t end);

Description

Details

GMIME_STREAM_FS_TYPE

#define GMIME_STREAM_FS_TYPE g_str_hash ("GMimeStreamFs")


GMIME_IS_STREAM_FS()

#define GMIME_IS_STREAM_FS(stream) (((GMimeStream *) stream)->type == GMIME_STREAM_FS_TYPE)

stream : 


GMIME_STREAM_FS()

#define GMIME_STREAM_FS(stream) ((GMimeStreamFs *) stream)

stream : 


g_mime_stream_fs_new ()

GMimeStream* g_mime_stream_fs_new           (int fd);

fd : file descriptor
Returns :a stream using fd.


g_mime_stream_fs_new_with_bounds ()

GMimeStream* g_mime_stream_fs_new_with_bounds
                                            (int fd,
                                             off_t start,
                                             off_t end);

fd : file descriptor
start : start boundary
end : end boundary
Returns :a stream using fd with bounds start and end.