◄Up► ◄Next► ◄Previous► ──────────────────────────────────────────────────────────────────────────── #define INCL_DOSNMPIPES typedef struct _PIPEINFO { /* nmpinf */ USHORT cbOut; USHORT cbIn; BYTE cbMaxInst; BYTE cbCurInst; BYTE cbName; CHAR szName[1]; } PIPEINFO; The PIPEINFO structure contains named-pipe information retrieved by using the DosQNmPipeInfo function. The length of the structure varies depending on the length of the szName field. Field Description ──────────────────────────────────────────────────────────────────────────── cbOut Specifies the size of the buffer for outgoing data. cbIn Specifies the size of the buffer for incoming data. cbMaxInst Specifies the maximum number of pipe instances that can be created. cbCurInst Specifies the number of current pipe instances. cbName Specifies the length of the pipe name. szName[1] Contains a null-terminated string with the pipe name, including the computer name if the pipe is remote. See Also DosQNmPipeInfo ♦