home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 1999 May / pcp151c.iso / misc / src / install / hints.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-08-07  |  677 b   |  34 lines

  1. #ifndef H_HINTS
  2. #define H_HINTS
  3.  
  4. #define HINT_SKIPNTSYSV        (1 << 0)
  5. #define HINT_AUTOFORMAT        (1 << 1)
  6. #define HINT_SKIPPRINTER    (1 << 2)
  7. #define HINT_SKIPBOOTDISK    (1 << 3)
  8. #define HINT_AUTOSWAP        (1 << 4)
  9. #define HINT_SKIPBOOTLOADER    (1 << 5)
  10. #define HINT_FORCEDDRUID    (1 << 6)
  11. #define HINT_AUTOSCSI        (1 << 7)
  12. #define HINT_NOLOGMESSAGE    (1 << 8)
  13.  
  14. struct hintsBootloader {
  15.     char * options;
  16.     int flags;
  17. };
  18.  
  19. struct hintsPartitioning {
  20.     int flags;
  21.     struct attemptedPartition * attempts;
  22. };
  23.  
  24. struct hints {
  25.     int flags;
  26.     struct hintsBootloader bootloader;
  27.     struct hintsPartitioning partitioning;
  28.     char * component;
  29. };
  30.  
  31. void ksToHints(struct hints * hints);
  32.  
  33. #endif
  34.