adf_dump.h
上传用户:hy_wanghao
上传日期:2007-01-08
资源大小:279k
文件大小:1k
源码类别:

Shell编程

开发平台:

Visual C++

  1. #ifndef ADF_DUMP_H
  2. #define ADF_DUMP_H 1
  3. /*
  4.  *  ADF Library. (C) 1997-1998 Laurent Clevy
  5.  *
  6.  *  adf_dump.h
  7.  *
  8.  *  
  9.  */
  10. PREFIX     struct Device*
  11. adfCreateDumpDevice(char* filename, long cyl, long heads, long sec);
  12. PREFIX RETCODE adfCreateHdFile(struct Device* dev, char* volName, int volType);
  13. BOOL adfInitDumpDevice(struct Device* dev, char* name,BOOL);
  14. BOOL adfReadDumpSector(struct Device *dev, long n, int size, unsigned char* buf);
  15. BOOL adfWriteDumpSector(struct Device *dev, long n, int size, unsigned char* buf);
  16. void adfReleaseDumpDevice(struct Device *dev);
  17. #endif /* ADF_DUMP_H */
  18. /*##########################################################################*/