home *** CD-ROM | disk | FTP | other *** search
/ Power Programming / powerprogramming1994.iso / progtool / graphics / tcxl.arc / TCXLDSK.H < prev    next >
C/C++ Source or Header  |  1988-04-08  |  1KB  |  42 lines

  1.  
  2. /*
  3.    ┌──────────────────────────────────────────────────────────────────────────┐
  4.    │                                                                          │
  5.    │  TCXLDSK.H - TCXL (c) 1987, 1988 by Mike Smedley.                        │
  6.    │                                                                          │
  7.    │  This header file contains function prototypes and definitions for       │
  8.    │  disk functions.                                                         │
  9.    │                                                                          │
  10.    └──────────────────────────────────────────────────────────────────────────┘
  11. */
  12.  
  13.  
  14. #if __STDC__
  15. #define _Cdecl
  16. #else
  17. #define _Cdecl cdecl
  18. #endif
  19.  
  20.  
  21. /*---------------------------[ Function Prototypes ]-------------------------*/
  22.  
  23. int      _Cdecl disktoscrn(char *fname);
  24. int      _Cdecl disktowin(char *fname);
  25. int      _Cdecl fcmpdatm(char *fname1,char *fname2);
  26. int      _Cdecl fexist(char *fname);
  27. unsigned _Cdecl getktot(int drive);
  28. char    *_Cdecl getvol(char drive);
  29. int      _Cdecl scrntodisk(char *fname);
  30. int      _Cdecl wintodisk(int srow,int scol,int erow,int ecol,char *fname);
  31.  
  32.  
  33. /*-----------------------[ video RAM segment address ]-----------------------*/
  34.  
  35. extern unsigned _videoseg;
  36.  
  37.  
  38. /*-----------------------[ Macro-Function Definitions ]----------------------*/
  39.  
  40. #define fhide(a)            _chmod(a,1,2)
  41.  
  42.