view fetch.h @ 41:92b59cfcf364 noffle

[svn] Replaces identical local server name strings by constant
author enz
date Fri, 05 May 2000 09:32:53 +0100
parents 04124a4423d4
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