home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Black Box 4
/
BlackBox.cdr
/
progpas
/
tegl6b.arj
/
INTROPAK.EXE
/
lha
/
TWWINDOW.DOC
< prev
next >
Wrap
Text File
|
1991-08-16
|
1KB
|
31 lines
{-----------------------------------------------------------------------------}
{ TEGL Windows ToolKit II }
{ Copyright (C) 1990, 1991 TEGL Systems Corporation }
{ All Rights Reserved. }
{-----------------------------------------------------------------------------}
UNIT twWindow;
INTERFACE
USES
TEGLFont,
fastgrph,
twcommon,
twkernel;
Procedure twCrtAssign(wf : WinFramePtr);
Procedure twCrtON;
Procedure twCrtOFF;
Procedure twGotoXy(wf : WinFramePtr; x_,y_ : Integer);
Function twHiX(wf : WinFramePtr; x_ : Integer) : Integer;
Function twHiY(wf : WinFramePtr; y_ : Integer) : Integer;
Function twLoX(wf : WinFramePtr; x_ : Integer) : Integer;
Function twLoY(wf : WinFramePtr; y_ : Integer) : Integer;
Procedure twSetTextColor(wf : WinFramePtr; Color : Byte);
Procedure twSetTextBackGround(wf : WinFramePtr; Color : byte);
Procedure twWriteChar(wf: WinFramePtr; c : char);
Procedure twWriteString(wf: WinFramePtr; s : string);
Procedure twWriteXY(wf : WinFramePtr; col,row :Integer; s : string);
IMPLEMENTATION