/*
* scamper_outfiles: hold a collection of output targets together
*
* $Id: scamper_outfiles.h,v 1.13 2006/12/15 18:38:18 mjl Exp $
*
* Matthew Luckie
*
* Copyright (C) 2004-2006 The University of Waikato
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, version 2.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
*/
#ifndef __SCAMPER_OUTFILES_H
#define __SCAMPER_OUTFILES_h
typedef struct scamper_outfile scamper_outfile_t;
struct scamper_file;
struct scamper_file *scamper_outfile_getfile(scamper_outfile_t *sof);
const char *scamper_outfile_getname(const scamper_outfile_t *sof);
int scamper_outfile_getrefcnt(const scamper_outfile_t *sof);
scamper_outfile_t *scamper_outfile_open(char *alias, char *file, char *mo);
int scamper_outfile_close(scamper_outfile_t *sof);
scamper_outfile_t *scamper_outfile_use(scamper_outfile_t *sof);
void scamper_outfile_free(scamper_outfile_t *sof);
scamper_outfile_t *scamper_outfile_openfd(char *name, int fd, char *type);
scamper_outfile_t *scamper_outfiles_get(char *alias);
void scamper_outfiles_swap(scamper_outfile_t *a, scamper_outfile_t *b);
void scamper_outfiles_foreach(void *p,
int (*func)(void *p, scamper_outfile_t *sof));
int scamper_outfiles_init(char *def_filename, char *def_type);
void scamper_outfiles_cleanup(void);
#endif
syntax highlighted by Code2HTML, v. 0.9.1