home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Simtel MSDOS 1992 June
/
SIMTEL_0692.cdr
/
msdos
/
desqview
/
desq10.arc
/
DESQ10.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1988-06-05
|
1KB
|
34 lines
{ =========================================================================== }
{ DESQ10.pas - Unit to interface DESQview with TP 4.0 ver 1.0, 06-05-88 }
{ }
{ These are the routines that are published by Quarterdeck and have been }
{ adapted for use in Turbo Pascal. Only 95 bytes of code. }
{ by James H. LeMay, CIS 76011,217 }
{ =========================================================================== }
{$R-,S-,I-,D-,T-,F-,V-,B-,N-,L+ }
UNIT DESQ;
INTERFACE
function DV_Get_Version: word;
function DV_Get_Video_Buffer (VideoSeg: word): word;
procedure DV_Pause;
procedure DV_Begin_Critical;
procedure DV_End_Critical;
IMPLEMENTATION
const
In_DV: boolean = true;
{$L DESQ10.obj }
function DV_Get_Version; external;
function DV_Get_Video_Buffer; external;
procedure DV_Pause; external;
procedure DV_Begin_Critical; external;
procedure DV_End_Critical; external;
END.