/*******************************************************************************
*
* Project: seft (search engine for text)
*
* File: output.h
*
* Author: Owen de Kretser ([email protected])
*
* Organisation: Dept. of CS&SE, University of Melbourne
*
* Date: April 1999
*
* Purpose: window printing functions
*
*******************************************************************************/
#ifndef __OUTPUT
#define __OUTPUT
/***** #includes **************************************************************/
#include "main.h"
/***** #defines and Macros ****************************************************/
/***** Function Prototypes ****************************************************/
void output_window(query_data*, WORD*, int rank, int score);
/******************************************************************************/
#endif
|