Jump to content

PIPEINFO: Difference between revisions

From EDM2
No edit summary
Ak120 (talk | contribs)
mNo edit summary
Line 1: Line 1:
== PIPEINFO ==
== PIPEINFO ==
Level-1 pipe information.  
Level-1 pipe information.  


=== Type ===  
=== Type ===  
 
  [[USHORT]]  cbOut
  [[OS2 API:DataType:USHORT|USHORT]]  cbOut
  USHORT  cbIn
  [[OS2 API:DataType:USHORT|USHORT]] cbIn
  [[BYTE]]    cbMaxInst
  [[OS2 API:DataType:BYTE|BYTE]]    cbMaxInst
  BYTE    cbCurInst
  [[OS2 API:DataType:BYTE|BYTE]]   cbCurInst
  BYTE    cbName
  [[OS2 API:DataType:BYTE|BYTE]]   cbName
  [[CHAR]]    szName[1]
  [[OS2 API:DataType:CHAR|CHAR]]    szName[1]


==== C Declaration Method ====
==== C Declaration Method ====
typedef struct
typedef struct


=== Fields ===
=== Fields ===
;cbOut:Actual size of the buffer for outbound data.
;cbIn:Actual size of the buffer for inbound data.
;cbMaxInst:Maximum number of pipe instances.
;cbCurInst:Current number of pipe instances.
;cbName:Length of szName.
;szName[1]:Name of the pipe.
:The name of the pipe (including \\ComputerName if the pipe is on a remote system).


cbOut      Actual size of the buffer for outbound data.
[[Category:Data type]]
cbIn      Actual size of the buffer for inbound data.
cbMaxInst  Maximum number of pipe instances.
cbCurInst  Current number of pipe instances.
cbName    Length of szName.
szName[1]  Name of the pipe.
            The name of the pipe (including \\ComputerName if the pipe is on a
            remote system).
 
[[OS2_API | Back to OS/2 API]]
 
 
[[Category:The OS/2 API Project]]

Revision as of 13:52, 31 October 2016

PIPEINFO

Level-1 pipe information.

Type

USHORT  cbOut
USHORT  cbIn
BYTE    cbMaxInst
BYTE    cbCurInst
BYTE    cbName
CHAR    szName[1]

C Declaration Method

typedef struct

Fields

cbOut
Actual size of the buffer for outbound data.
cbIn
Actual size of the buffer for inbound data.
cbMaxInst
Maximum number of pipe instances.
cbCurInst
Current number of pipe instances.
cbName
Length of szName.
szName[1]
Name of the pipe.
The name of the pipe (including \\ComputerName if the pipe is on a remote system).