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

Shell编程

开发平台:

Visual C++

  1. #ifndef _ADF_DISK_H
  2. #define _ADF_DISK_H 1
  3. /*
  4.  *  ADF Library. (C) 1997-1999 Laurent Clevy
  5.  *
  6.  *  adf_disk.h
  7.  *
  8.  */
  9. #include "prefix.h"
  10. #include "adf_str.h"
  11. #include "adf_defs.h"
  12. PREFIX RETCODE adfInstallBootBlock(struct Volume *vol,unsigned char*);
  13. PREFIX BOOL isSectNumValid(struct Volume *vol, SECTNUM nSect);
  14. PREFIX struct Volume* adfMount( struct Device *dev, int nPart, BOOL readOnly );
  15. PREFIX void adfUnMount(struct Volume *vol);
  16. PREFIX void adfVolumeInfo(struct Volume *vol);
  17. struct Volume* adfCreateVol( struct Device* dev, long start, long len, 
  18.     char* volName, int volType );
  19. /*void adfReadBitmap(struct Volume* , long nBlock, struct bRootBlock* root);
  20. void adfUpdateBitmap(struct Volume*);
  21. */
  22. PREFIX RETCODE adfReadBlock(struct Volume* , long nSect, unsigned char* buf);
  23. PREFIX RETCODE adfWriteBlock(struct Volume* , long nSect, unsigned char* buf);
  24. #endif /* _ADF_DISK_H */
  25. /*##########################################################################*/