/*
 * h.eval
 *
 * $Log: eval,v $
 * Revision 1.5  1998/08/30 13:10:00  joseph
 * Fetching ordered is now more defined - pages closer to the root, and
 * actual pages (as opposed to inlines) at the same line level are favoured.
 *
 * Revision 1.4  1998/08/10 19:21:10  joseph
 * Added following / rewriting of <meta http-equiv="REFRESH"...> tag
 *
 * Revision 1.3  1998/04/05 16:11:56  jogu
 * Added processing of <frame src="..">
 *
 * Revision 1.2  1998/04/05 11:35:32  jogu
 * Add processing of inline images
 *
 * Revision 1.1  1998/03/21 20:29:32  jogu
 * Created. Evaluates url to see if we want to fetch them.
 *
 *
 */

#ifndef EVAL_H
#define EVAL_H

/* NB. Next structure is organised in order of 'importance' - ie. what order
 * we'll end up fetching things in - see url_getnext() */
typedef enum
{
  inline_not,
  inline_metarefresh,
  inline_frame,
  inline_image
} eval_inline;

int eval_url( int no, char *tofetch, eval_inline inline );

#endif
