home *** CD-ROM | disk | FTP | other *** search
- {****************************************************************************
- * TESSTP.PAS -- Source for TP 4.0 Unit
- ***************************************************************************
- SUBTTL TesSeRact Revision Level 1
- ;--------------------------------------------------------------------------
- ; TesSeRact(tm) -- A Library of Routines for Creating Ram-Resident (TSR)
- ; programs for the IBM PC and compatible Personal
- ; Computers.
- ;
- ;The software, documentation and source code are:
- ;
- ; Copyright (C) 1986, 1987, 1988 Tesseract Development Team
- ; All Rights Reserved
- ;
- ; c/o Chip Rabinowitz
- ; Innovative Data Concepts
- ; 2084 Woodlawn Avenue
- ; Glenside, PA 19038
- ; 1-215-884-3373
- ;
- ;--------------------------------------------------------------------------
- ; This product supports the TesSeRact Standard for Ram-Resident Program
- ; Communication. For information about TesSeRact, contact the TesSeRact
- ; Development Team at:
- ; Compuserve: 70731,20
- ; MCIMAIL: 315-5415
- ; This MCIMAIL Account has been provided to the TesSeRact Development
- ; Team by Borland International, Inc. The TesSeRact Development Team
- ; is in no way associated with Borland International, Inc.
- ;--------------------------------------------------------------------------}
-
- {$R-,S-,I-,D-,T+,F-,V-,B-,N-,L+ }
-
-
-
- unit TESSTP;
-
- interface
-
- {$I TESS.TP4 }
-
- implementation
-
- function TsDoInit; external;
- procedure TsSetStack; external;
- procedure TessBeep; external;
- function TsCheckResident; external;
- function TsGetParms; external;
- function TsCheckHotkey; external;
- function TsSetUser24; external;
- function TsEnable; external;
- function TsDisable; external;
- function TsRelease; external;
- function TsRestart; external;
- function TsGetStat; external;
- function TsSetStat; external;
- function TsGetPopType; external;
- function TsCallUserProc; external;
- function TsStuffKeyboard; external;
- function TsTriggerPop; external;
- function TsTriggerBack; external;
-
- procedure TsVerify2F; external;
- procedure TsRestore2F; external;
- function TsSetExtraHot; external;
- function TsGetData; external;
- procedure TsSetAdrTP4; external;
- procedure FarRet; external; { used only for initializing }
-
- {$L TESS_TP.OBJ }
-
- begin
- TsSetAdrTP4(@farret, 0);
- TsSetAdrTP4(@farret, 1);
- TsSetAdrTP4(@farret, 2);
- TsSetAdrTP4(@farret, 3);
- TsSetAdrTP4(@farret, 4);
- TsSetAdrTP4(@farret, 5);
- end.