├── .bzrignore ├── Makefile ├── README.md ├── common.c ├── common.h ├── createAndReadPipe-main.c ├── createAndWritePipe-main.c └── target.mk /.bzrignore: -------------------------------------------------------------------------------- 1 | ./build 2 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psmay/windows-named-pipe-utils/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psmay/windows-named-pipe-utils/HEAD/README.md -------------------------------------------------------------------------------- /common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psmay/windows-named-pipe-utils/HEAD/common.c -------------------------------------------------------------------------------- /common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psmay/windows-named-pipe-utils/HEAD/common.h -------------------------------------------------------------------------------- /createAndReadPipe-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psmay/windows-named-pipe-utils/HEAD/createAndReadPipe-main.c -------------------------------------------------------------------------------- /createAndWritePipe-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psmay/windows-named-pipe-utils/HEAD/createAndWritePipe-main.c -------------------------------------------------------------------------------- /target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psmay/windows-named-pipe-utils/HEAD/target.mk --------------------------------------------------------------------------------