view outgoing.h @ 8:ffb0b14fc8d9 noffle

[svn] Online mode/authentication bug
author enz
date Sat, 12 Feb 2000 11:54:42 +0000
parents 04124a4423d4
children 526a4c34ee2e
line wrap: on
line source

/*
  outgoing.h

  Collection of posted articles.

  $Id: outgoing.h 3 2000-01-04 11:35:42Z enz $
*/

#ifndef OUT_H
#define OUT_H

#include "common.h"
#include "dynamicstring.h"

Bool
Out_add( const char *serv, const Str msgId, const DynStr *artTxt );

/* Start enumeration. Return TRUE on success. */
Bool
Out_first( const char *serv, Str msgId, DynStr *artTxt );

/* Continue enumeration. Return TRUE on success. */
Bool
Out_next( Str msgId, DynStr *s );

/* Delete article from outgoing collection */
void
Out_remove( const char *serv, Str msgId );

#endif