Skip to content
Snippets Groups Projects
Commit ea4731fe authored by Uwe Schulzweida's avatar Uwe Schulzweida
Browse files

afterburner: added support for output pipes

parent 1469de89
No related branches found
No related tags found
No related merge requests found
......@@ -619,6 +619,7 @@ src/process.h -text
src/pstream.c -text
src/pstream.h -text
src/pstream_int.h -text
src/pstream_write.h -text
src/pthread_debug.c -text
src/pthread_debug.h -text
src/readline.c -text
......
/*
This file is part of CDO. CDO is a collection of Operators to
manipulate and analyse Climate model Data.
Copyright (C) 2003-2015 Uwe Schulzweida, <uwe.schulzweida AT mpimet.mpg.de>
See COPYING file for copying and redistribution conditions.
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 of the License.
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.
*/
#ifndef _PSTREAM_WRITE_H
#define _PSTREAM_WRITE_H
#define streamOpenWrite pstreamOpenWrite
#define streamDefVlist pstreamDefVlist
#define streamDefTimestep pstreamDefTimestep
#define streamDefRecord pstreamDefRecord
#define streamWriteRecord pstreamWriteRecord
#define streamWriteRecordF pstreamWriteRecordF
int pstreamOpenWrite(const argument_t *argument, int filetype);
void pstreamClose(int pstreamID);
void pstreamDefVlist(int pstreamID, int vlistID);
void pstreamDefTimestep(int pstreamID, int tsID);
void pstreamDefRecord(int pstreamID, int varID, int levelID);
void pstreamWriteRecord(int pstreamID, double *data, int nmiss);
void pstreamWriteRecordF(int pstreamID, float *data, int nmiss);
#endif /* _PSTREAM_WRITE_H */
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment