comparison outgoing.h @ 0:04124a4423d4 noffle

[svn] Initial revision
author enz
date Tue, 04 Jan 2000 11:35:42 +0000
parents
children 526a4c34ee2e
comparison
equal deleted inserted replaced
-1:000000000000 0:04124a4423d4
1 /*
2 outgoing.h
3
4 Collection of posted articles.
5
6 $Id: outgoing.h 3 2000-01-04 11:35:42Z enz $
7 */
8
9 #ifndef OUT_H
10 #define OUT_H
11
12 #include "common.h"
13 #include "dynamicstring.h"
14
15 Bool
16 Out_add( const char *serv, const Str msgId, const DynStr *artTxt );
17
18 /* Start enumeration. Return TRUE on success. */
19 Bool
20 Out_first( const char *serv, Str msgId, DynStr *artTxt );
21
22 /* Continue enumeration. Return TRUE on success. */
23 Bool
24 Out_next( Str msgId, DynStr *s );
25
26 /* Delete article from outgoing collection */
27 void
28 Out_remove( const char *serv, Str msgId );
29
30 #endif