X-Git-Url: http://git.tdb.fi/?p=libs%2Fcore.git;a=blobdiff_plain;f=source%2Fio%2Fpipe.h;h=4e4e42b031796f3588dea1a88a3f4c607f84928f;hp=71edf7eb3246f125ceb09ccd90495381807c8b85;hb=378ec811c8df431f5b4e7094eb1949476d3a79fe;hpb=3b8384a993aed55b348bf51bb02900b3aa010ef8 diff --git a/source/io/pipe.h b/source/io/pipe.h index 71edf7e..4e4e42b 100644 --- a/source/io/pipe.h +++ b/source/io/pipe.h @@ -9,15 +9,10 @@ namespace IO { class Pipe: public Base { private: + struct Private; + Handle handle[2]; -#ifdef WIN32 - OVERLAPPED *overlapped; - Handle event; - unsigned buf_size; - char *buffer; - unsigned buf_avail; - char *buf_next; -#endif + Private *priv; public: Pipe();