1*ab645d52SCameron Smith #ifndef STREAMIO_H 2*ab645d52SCameron Smith #define STREAMIO_H 3*ab645d52SCameron Smith #ifdef __cplusplus 4*ab645d52SCameron Smith extern "C" { 5*ab645d52SCameron Smith #endif 6*ab645d52SCameron Smith typedef struct phio_file* phio_fp; 7*ab645d52SCameron Smith typedef struct Stream stream; 8*ab645d52SCameron Smith void streamio_setup(stream* s, phio_fp* f) 9*ab645d52SCameron Smith #ifdef __cplusplus 10*ab645d52SCameron Smith } 11*ab645d52SCameron Smith #endif 12*ab645d52SCameron Smith #endif 13