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

  1. /* these routines work at a higher, abstract level than those in rawio.c */
  2. #ifndef FDISK_USEROPS_H
  3. #define FDISK_USEROPS_H
  4.  
  5. int fdiskReadPartitions( HardDrive *hd );
  6.  
  7. int fdiskCreatePartition( HardDrive *hd, unsigned int n );
  8.  
  9. int fdiskRemovePartition( HardDrive *hd, unsigned int n );
  10.  
  11. int fdiskSetAttrPartition( HardDrive *hd, unsigned int n, Partition *p );
  12.  
  13. int fdiskGetAttrPartition( HardDrive *hd, unsigned int n, Partition **p );
  14.  
  15. int fdiskFirstPartition( HardDrive *hd, unsigned int *first );
  16.  
  17. int fdiskLastPartition( HardDrive *hd, unsigned int *last );
  18.  
  19. int fdiskInitSunLabel( HardDrive * hd );
  20.  
  21. #endif
  22.  
  23.  
  24.