home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1994 #1 / monster.zip / monster / WIN_UTL2 / SAMDU260.ZIP / MDRIVE.H < prev    next >
Text File  |  1994-04-01  |  2KB  |  34 lines

  1. /*********************************************************************/
  2. /*                                                                   */
  3. /*    Name:    MDRIVE.H                                              */
  4. /*                                                                   */
  5. /*    Copyright (c) Stewart A. Berman 1992,3,4 All rights reserved   */
  6. /*                                                                   */
  7. /*********************************************************************/
  8. #ifndef __MDRIVE_H__
  9. #define __MDRIVE_H__
  10.  
  11. #include "VDrive.h"
  12.  
  13. #ifdef __cplusplus
  14. extern "C" {
  15. #endif /* _cplusplus */
  16.  
  17. VOID far * FAR PASCAL MDriveCreate ( UINT nMemory, lpfnHANDLESTATUS lpfnNewHandleStatus ) ;
  18. VOID       FAR PASCAL MDriveDelete ( VOID far *pCMDrive ) ;
  19. UINT       FAR PASCAL MDriveForceReset ( VOID far *pCMDrive ) ;
  20. UINT       FAR PASCAL MDriveFormatTrack ( VOID far *pCMDrive, UINT nCylinder, UINT nHead ) ;
  21. UINT       FAR PASCAL MDriveReadSectors ( VOID far *pCMDrive, UINT nCylinder, UINT nHead, UINT nSector, UINT nCount, LPBYTE lpcBuffer ) ;
  22. UINT       FAR PASCAL MDriveReset ( VOID far *pCMDrive ) ;
  23. UINT       FAR PASCAL MDriveSetRead ( VOID far *pCMDrive, UINT nTempType, UINT nCylinders ) ;
  24. UINT       FAR PASCAL MDriveSetWrite ( VOID far *pCMDrive, UINT nTempType, UINT nCylinders ) ;
  25. UINT       FAR PASCAL MDriveType ( VOID far *pCMDrive ) ;
  26. UINT       FAR PASCAL MDriveWriteSectors ( VOID far *pCMDrive, UINT nCylinder, UINT nHead, UINT nSector, UINT nCount, LPBYTE lpcBuffer ) ;
  27.  
  28. #ifdef __cplusplus
  29.            }
  30. #endif /* _cplusplus */
  31.  
  32. #endif /* __MDRIVE_H__ */
  33.  
  34.