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

  1. /*********************************************************************/
  2. /*                                                                   */
  3. /*    Name:    FDRIVE.H                                              */
  4. /*                                                                   */
  5. /*    Copyright (c) Stewart A. Berman 1992,3,4 All rights reserved   */
  6. /*                                                                   */
  7. /*********************************************************************/
  8. #ifndef __FDRIVE_H__
  9. #define __FDRIVE_H__
  10.  
  11. #include "VDrive.h"
  12.  
  13. #ifdef __cplusplus
  14. extern "C" {
  15. #endif /* _cplusplus */
  16.  
  17. VOID far * FAR PASCAL FDriveCreate ( LPCSTR lpczFileName, LPCSTR lpczApplicationTitle, LPCSTR lpczVersion, lpfnHANDLESTATUS lpfnNewHandleStatus ) ;
  18. VOID       FAR PASCAL FDriveDelete ( VOID far *pCFDrive ) ;
  19. UINT       FAR PASCAL FDriveFormatTrack ( VOID far *pCFDrive, UINT nCylinder, UINT nHead ) ;
  20. UINT       FAR PASCAL FDriveForceReset ( VOID far *pCFDrive ) ;
  21. UINT       FAR PASCAL FDriveReadSectors ( VOID far *pCFDrive, UINT nCylinder, UINT nHead, UINT nSector, UINT nCount, LPBYTE lpcBuffer ) ;
  22. UINT       FAR PASCAL FDriveReset ( VOID far *pCFDrive ) ;
  23. UINT       FAR PASCAL FDriveSetRead ( VOID far *pCFDrive, UINT nTempType, UINT nCylinders ) ;
  24. UINT       FAR PASCAL FDriveSetWrite ( VOID far *pCFDrive, UINT nTempType, UINT nCylinders ) ;
  25. UINT       FAR PASCAL FDriveWriteSectors ( VOID far *pCFDrive, UINT nCylinder, UINT nHead, UINT nSector, UINT nCount, LPBYTE lpcBuffer ) ;
  26.  
  27. #ifdef __cplusplus
  28.            }
  29. #endif /* _cplusplus */
  30.  
  31. #endif /* __FDRIVE_H__ */
  32.  
  33.