summaryrefslogtreecommitdiff
path: root/rtl/unix/termiosh.inc
blob: f8ff4a35c7247ebc6dc6d88741eda596de26e045 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
    This file is part of the Free Pascal run time library.
    Copyright (c) 2001 by Free Pascal development team

    Termios basic prototypes

    See the file COPYING.FPC, included in this distribution,
    for details about the copyright.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

 ***********************************************************************}

Function  TCGetAttr   (fd:cint;var tios:TermIOS):cint;
Function  TCSetAttr   (fd:cint;OptAct:cint;const tios:TermIOS):cint;
Procedure CFSetISpeed (var tios:TermIOS;speed:Cardinal);
Procedure CFSetOSpeed (var tios:TermIOS;speed:Cardinal);
Procedure CFMakeRaw   (var tios:TermIOS);
Function  TCSendBreak (fd,duration:cint):cint;
Function  TCSetPGrp   (fd,id:cint)  :cint;
Function  TCGetPGrp   (fd:cint;var id:cint):cint;
Function  TCFlush     (fd,qsel:cint):cint;
Function  TCDrain     (fd:cint)     :cint;
Function  TCFlow      (fd,act:cint) :cint;
Function  IsATTY      (Handle:cint) :cint;
Function  IsATTY      (var f:text)  :cint;
function  TTYname     (Handle:cint):string;
function  TTYname     (var F:Text) :string;