home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / diskacc.zip / diskacc.h < prev    next >
C/C++ Source or Header  |  1979-12-31  |  719b  |  28 lines

  1. /* DISKACC.H
  2.  *
  3.  * Autor:    Kai Uwe Rommel
  4.  * Datum:    Thu 28-Dec-1989
  5.  *
  6.  * Compiler: MS C ab 5.00
  7.  * System:   PC/MS-DOS ab 3.20, OS/2 ab 1.1
  8.  *
  9.  * Direct disk access routines for OS/2 protected mode and MS-DOS.
  10.  */
  11.  
  12. #ifndef APIENTRY
  13. #include <os2def.h>
  14. #endif
  15.  
  16. INT APIENTRY DskOpen(USHORT drive, PUSHORT sides,
  17.                      PUSHORT tracks, PUSHORT sectors);
  18.  
  19. VOID APIENTRY DskClose(USHORT handle);
  20.  
  21. INT APIENTRY DskRead(USHORT handle, USHORT side, USHORT  track,
  22.                      USHORT sector, USHORT nsects, PVOID buf);
  23.  
  24. INT APIENTRY DskWrite(USHORT handle, USHORT side, USHORT  track,
  25.                       USHORT sector, USHORT nsects, PVOID buf);
  26.  
  27. /* Ende DISKACC.H */
  28.