home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c021 / 7.img / INCLUDE.ZIP / BIOS.H < prev    next >
Encoding:
C/C++ Source or Header  |  1990-05-04  |  728 b   |  34 lines

  1. /*    bios.h
  2.  
  3.     Access to bios services.
  4.  
  5.         Copyright (c) Borland International 1987,1988,1990
  6.     All Rights Reserved.
  7. */
  8. #if __STDC__
  9. #define _Cdecl
  10. #else
  11. #define _Cdecl    cdecl
  12. #endif
  13.  
  14. #ifndef __PAS__
  15. #define _CType _Cdecl
  16. #else
  17. #define _CType pascal
  18. #endif
  19.  
  20. #ifdef __cplusplus
  21. extern "C" {
  22. #endif
  23. int    _Cdecl bioscom(int __cmd, char __abyte, int __port);
  24. int    _Cdecl biosdisk(int __cmd, int __drive, int __head, int __track, int __sector,
  25.             int __nsects, void *__buffer);
  26. int    _Cdecl biosequip(void);
  27. int    _Cdecl bioskey(int __cmd);
  28. int    _Cdecl biosmemory(void);
  29. int    _Cdecl biosprint(int __cmd, int __abyte, int __port);
  30. long    _Cdecl biostime(int __cmd, long __newtime);
  31. #ifdef __cplusplus
  32. }
  33. #endif
  34.