Ignore:
Timestamp:
Oct 1, 2010, 4:07:50 PM (15 years ago)
Author:
markus
Message:

added evaluation version message; changed boot logo to contain adapter ID strings

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/os2ahci/os2ahci.h

    r31 r33  
    239239#define PCI_CLASS_STORAGE_OTHER         0x0180
    240240
     241/******************************************************************************
     242 * ANSI color code constants
     243 */
     244#define ANSI_CLR_BRIGHT "\x1b[1m"
     245#define ANSI_CLR_RED    "\x1b[31m"
     246#define ANSI_CLR_GREEN  "\x1b[32m"
     247#define ANSI_CLR_BLUE   "\x1b[34m"
     248#define ANSI_CLR_CYAN   "\x1b[36m"
     249#define ANSI_CLR_WHITE  "\x1b[37m"
     250#define ANSI_RESET      "\x1b[0m"
     251
     252
    241253/* ------------------------ typedefs and structures ------------------------ */
    242254
     
    255267  u32   class_mask;      /* bits to match when scanning for 'class' */
    256268  u32   board;           /* AHCI controller board type (board_* constants) */
     269  char  *chipname;       /* human readable chip ID string */
    257270} PCI_ID;
    258271
     
    434447extern int       pci_enable_int (UCHAR bus, UCHAR dev_func);
    435448extern void      pci_hack_virtualbox(void);
     449extern char     *vendor_from_id (u16 vendor);
     450extern char     *device_from_id (u16 device);
    436451
    437452/* ctxhook.c */
Note: See TracChangeset for help on using the changeset viewer.