home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 1999 May / pcp151c.iso / misc / src / install / libfdisk / extended.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-01-06  |  876 b   |  30 lines

  1. /* included file for extended.c */
  2. #ifndef FDISK_EXTENDED_H
  3. #define FDISK_EXTENDED_H
  4.  
  5. int fdiskIsExtended(unsigned int type);
  6.  
  7. int fdiskRenumberLogical( HardDrive *hd );
  8.  
  9. int fdiskAppendLogical( HardDrive *hd, unsigned int *num);
  10.  
  11. int fdiskRemoveLogical( HardDrive *hd, unsigned int num);
  12.  
  13. int fdiskSetAttrLogical( HardDrive *hd, unsigned int num, Partition *p );
  14.  
  15. int fdiskGetAttrLogical( HardDrive *hd, unsigned int num, Partition **p );
  16.  
  17. int fdiskSetAttrExtended( HardDrive *hd, unsigned int num, Partition *p );
  18.  
  19. int fdiskGetAttrExtended( HardDrive *hd, unsigned int num, Partition **p );
  20.  
  21. int fdiskQueryPEP( HardDrive *hd, unsigned int *start, unsigned int *size );
  22. int fdiskFindLogical( HardDrive *hd, unsigned int l, Partition **p );
  23.  
  24. int fdiskFirstLogical( HardDrive *hd, unsigned int *first );
  25.  
  26. int fdiskLastLogical( HardDrive *hd, unsigned int *last );
  27. #endif
  28.  
  29.              
  30.