home *** CD-ROM | disk | FTP | other *** search
/ ftp.wwiv.com / ftp.wwiv.com.zip / ftp.wwiv.com / pub / PROTOCOL / TPHYD100.ZIP / H_WIN.PAS < prev    next >
Pascal/Delphi Source File  |  1993-08-18  |  2KB  |  41 lines

  1. {$A+,B-,D-,E-,F-,I-,L-,N-,O+,R-,S-,V-}
  2. (******************************************************************************)
  3. (*                      Hydra Bi-directional Protocol                         *)
  4. (*                        ─────────────────────────                           *)
  5. (*                                                                            *)
  6. (*                         Low Level Screen Handler                           *)
  7. (*                                                                            *)
  8. (* BY: Adam Blake                                      Wandoo Valley Software *)
  9. (*     Arjen Lentz                                         and Lentz Software *)
  10. (* VER: 1.00                                                      Development *)
  11. (* DATE: 5th August 1993                                   (c) Copyright 1993 *)
  12. (* LANGUAGE: Turbo Pascal v6.0                  All Rights Reserved Worldwide *)
  13. (******************************************************************************)
  14. Unit h_Win;
  15. Interface
  16.  
  17. var
  18.   hWin_OpenWindow       : Procedure;
  19.   hWin_CloseWindow      : Procedure;
  20.   hWin_ClearTxWindow    : Procedure;
  21.   hWin_ClearRxWindow    : Procedure;
  22.   hWin_ShowTxFileName   : Procedure( FileName : string );
  23.   hWin_ShowRxFileName   : Procedure( FileName : string );
  24.   hWin_ShowTxFileSize   : Procedure( FileSize : longint );
  25.   hWin_ShowRxFileSize   : Procedure( FileSize : longint );
  26.   hWin_ShowTxBytes      : Procedure( Bytes, StartTime : longint );
  27.   hWin_ShowRxBytes      : Procedure( Bytes, StartTime : longint );
  28.   hWin_Message          : Procedure( Str : string );
  29.   hWin_Complete         : Procedure( FileName : string; Bytes : longint );
  30.  
  31.   hWin_RemChat          : Procedure( var Buffer; Len : word );
  32.   hWin_KeyCheck         : Function : boolean;
  33.  
  34. (******************************************************************************)
  35. Implementation
  36.  
  37. (**********************************MAINLINE************************************)
  38.  
  39. end.
  40.  
  41.