Windows NT 4.0 source code leak
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
674 B

5 years ago
  1. #include "halp.h"
  2. #include "flash8k.h"
  3. //
  4. // Flash Drivers
  5. //
  6. // extern declarations of each known flash driver's Initialize() funcion
  7. // are needed here for addition into the list of known drivers.
  8. //
  9. // FlashDriverList is an array of driver Initialize() functions used to
  10. // identify the flash device present in the system. The last entry
  11. // in FlashDriverList must be NULL.
  12. //
  13. extern PFLASH_DRIVER I28F008SA_Initialize(PUCHAR);
  14. extern PFLASH_DRIVER Am29F080_Initialize(PUCHAR);
  15. extern PFLASH_DRIVER Am29F040_Initialize(PUCHAR);
  16. PFLASH_DRIVER (*FlashDriverList[])(PUCHAR) = {
  17. I28F008SA_Initialize,
  18. Am29F080_Initialize,
  19. Am29F040_Initialize,
  20. NULL};