view fetch.h @ 0:04124a4423d4 noffle

[svn] Initial revision
author enz
date Tue, 04 Jan 2000 11:35:42 +0000
parents
children
line wrap: on
line source

/*
  fetch.h

  Do the daily business by using client.c

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

#ifndef FETCH_H
#define FETCH_H

#include "common.h"
#include "database.h"
#include "fetchlist.h"

Bool
Fetch_init( const char *serv );

void
Fetch_close( void );

void
Fetch_getNewGrps( void );

void
Fetch_updateGrps( void );

void
Fetch_getReq_( void );

void
Fetch_postArts( void );

/* Get new articles in group "grp", using fetch mode "mode". */
void
Fetch_getNewArts( const char *grp, FetchMode mode );

#endif