1 /* Copyright (c) 2003-2004 2 * Stefano Ceccherini <burton666@libero.it>. All rights reserved. 3 * This file is released under the MIT license 4 */ 5 #ifndef __DRIVER_H 6 #define __DRIVER_H 7 8 #include <Drivers.h> 9 #include <PCI.h> 10 #include "ether_driver.h" 11 12 #define DEVICE_NAME "net/wb840" 13 14 extern pci_module_info *gPci; 15 extern char* gDevNameList[]; 16 extern pci_info *gDevList[]; 17 extern device_hooks gDeviceHooks; 18 19 20 21 #endif // __WB840_H 22