home *** CD-ROM | disk | FTP | other *** search
/ Shareware Supreme Volume 6 #1 / swsii.zip / swsii / 165 / WDFMT21.ZIP / STRUCTS.H < prev    next >
Text File  |  1990-03-20  |  730b  |  65 lines

  1.  
  2. struct type_htable
  3. {
  4.     int drv_number;
  5.     int cyl_number;
  6.     int head_number;
  7.     int sec_number;
  8.     int blk_size;
  9.     int max_cyl;
  10.     int max_head;
  11.     int max_sec;
  12.     int precomp;
  13.     int skew;
  14.     int alt_sector;
  15.     int retry;
  16.     int step;
  17.     int ileave;
  18.     int ecc_len;
  19.     int ecc;
  20.     int sec_size;
  21.     float bits_read;
  22.  
  23. };
  24.  
  25. struct type_task_file
  26. {
  27.     int error;
  28.     int secnt;
  29.     int sector;
  30.     int cyllo;
  31.     int cylhi;
  32.     int SDH;
  33.     int status;
  34.     int secstat;
  35.     int DIR;
  36. };
  37.  
  38. struct type_esfile
  39. {
  40.     int xfrlo;
  41.     int xfrhi;
  42.     int plo;
  43.     int gap;
  44.     int stat;
  45. };
  46.  
  47. union type_scan
  48. {
  49.    int    c;
  50.    char ch[2];
  51. };
  52.  
  53.  
  54. struct type_error
  55. {
  56.    int cyl;
  57.    unsigned int  offset;
  58.    unsigned char head;
  59.    unsigned char sector;
  60. };
  61.  
  62.  
  63.  
  64.  
  65.