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

#include "halp.h"
#include "flash8k.h"
//
// Flash Drivers
//
// extern declarations of each known flash driver's Initialize() funcion
// are needed here for addition into the list of known drivers.
//
// FlashDriverList is an array of driver Initialize() functions used to
// identify the flash device present in the system. The last entry
// in FlashDriverList must be NULL.
//
extern PFLASH_DRIVER I28F008SA_Initialize(PUCHAR);
extern PFLASH_DRIVER Am29F080_Initialize(PUCHAR);
extern PFLASH_DRIVER Am29F040_Initialize(PUCHAR);
PFLASH_DRIVER (*FlashDriverList[])(PUCHAR) = {
I28F008SA_Initialize,
Am29F080_Initialize,
Am29F040_Initialize,
NULL};