aboutsummaryrefslogtreecommitdiff
path: root/src/ioJpegGH.h
diff options
context:
space:
mode:
authortradke <tradke@eff87b29-5268-4891-90a3-a07138403961>2004-06-09 10:41:29 +0000
committertradke <tradke@eff87b29-5268-4891-90a3-a07138403961>2004-06-09 10:41:29 +0000
commit5bd25031160e9e8d0d7438a85f966d9f5988e926 (patch)
treea539f3f25da369492caec5681bea1f65903122a9 /src/ioJpegGH.h
parent7981e82e495d13d442170442b55dbcaa4b0e985a (diff)
After setup, do an initial I/O parameter parsing and warn/stop on parsing errors
(depending on IO::strict_io_parameter_check). You will also need to update CactusBase/IOUtil. git-svn-id: http://svn.cactuscode.org/arrangements/CactusIO/IOJpeg/trunk@100 eff87b29-5268-4891-90a3-a07138403961
Diffstat (limited to 'src/ioJpegGH.h')
-rw-r--r--src/ioJpegGH.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/ioJpegGH.h b/src/ioJpegGH.h
index 94c0f66..868f945 100644
--- a/src/ioJpegGH.h
+++ b/src/ioJpegGH.h
@@ -36,6 +36,9 @@ typedef struct IOJpegGH
sp2xyz[maxdim][perpendicular direction] */
int **sp2xyz;
+ /* stop on I/O parameter parsing errors ? */
+ int stop_on_parse_errors;
+
} ioJpegGH;
@@ -47,6 +50,7 @@ int IOJpeg_TriggerOutput (const cGH *GH, int vindex);
/* other function prototypes */
int IOJpeg_Write (const cGH *GH, CCTK_INT vindex, const char *alias);
+void IOJpeg_CheckSteerableParameters (ioJpegGH *myGH);
/* routines called from JPEG.c */
int WriteJPEGToFileRGB (int nx, int ny, void *data, int Quality, FILE* outfile);