server 0.0.1
basicserverinfrastructure

include/interface/stream_reader.h

Go to the documentation of this file.
00001 #ifndef __STREAM_READER_H__
00002 #define __STREAM_READER_H__
00003 
00004 #include <sys/types.h>
00005 
00006 typedef size_t (* fptr_streamReaderRead)(void *, int fd);
00007 
00008 extern const struct interface i_StreamReader;
00009 
00010 struct i_StreamReader {
00011         const struct interface * const _;
00012         fptr_streamReaderRead          read;
00013 };
00014 
00015 extern size_t streamReaderRead(void *, int fd);
00016 
00017 #endif // __STREAM_READER_H__
00018 
00019 // vim: set ts=4 sw=4:
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Defines