DosWaitNPipe  DOS-
Interrupts List by Ralf Brown, Oleg Oleinick

function DosWaitNPipe(AName: PChar; ATimeout: Longint): Integer; assembler;
asm
  push  DS
  mov   AX, 5F38h
  mov   BX, WORD PTR [ATimeout+2]
  mov   CX, WORD PTR [ATimeout]
  lds   DX, DWORD PTR [AName]
  int   21h
  jc    @End
  xor   AX, AX
@End:
  pop   DS
end;

  - 뢠   Interrupts List by Ralf Brown - ⠬  祣 .  ᯮᮡ / Title, ⮢ ,  ᥬ API  .

