[go: up one dir, main page]

Menu

[97a570]: / src / msgstring.h  Maximize  Restore  History

Download this file

17 lines (13 with data), 423 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
#ifndef __MSGSTRING__
/* Message string driver for message stringstructs */
/* by Mark Crispin */
void msg_string_init (STRING *s,void *data,unsigned long size);
char msg_string_next (STRING *s);
void msg_string_setpos (STRING *s,unsigned long i);
typedef struct msg_data {
MAILSTREAM *stream; /* stream */
long msgno; /* message number */
} MSGDATA;
extern STRINGDRIVER msg_string;
#define __MSGSTRING__
#endif