diff options
Diffstat (limited to 'src/spawn.h')
-rw-r--r-- | src/spawn.h | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/src/spawn.h b/src/spawn.h index 64ee999..3e01b84 100644 --- a/src/spawn.h +++ b/src/spawn.h @@ -23,6 +23,8 @@ #include "sciteco.h" #include "parser.h" #include "qregisters.h" +#include "error.h" +#include "eol.h" namespace SciTECO { @@ -42,10 +44,12 @@ public: tecoInt from, to; tecoInt start; bool text_added; - gint stdin_state; - gint stdout_state; - gint eol_style; - GError *error; + + EOLWriterGIO *stdin_writer; + EOLReaderGIO *stdout_reader; + + Error *error; + tecoBool rc; }; private: |