1 #ifndef PHSOLVER_PHIO_STREAM_H 2 #define PHSOLVER_PHIO_STREAM_H 3 #include "phio_base.h" 4 #include "phstream.h" 5 struct streamio_file : phio_file { 6 RStream* rs; 7 GRStream* grs; 8 }; 9 typedef struct streamio_file* stream_fp; 10 void stream_openfile( 11 const char filename[], 12 phio_fp fileDescriptor); 13 void stream_closefile( 14 phio_fp fileDescriptor); 15 void stream_constructname( 16 const char* in, 17 char* out); 18 #endif 19