1 /* 2 * Copyright 2005, Axel Dörfler, axeld@pinc-software.de. All rights reserved. 3 * Distributed under the terms of the MIT License. 4 */ 5 #ifndef DRIVER_H 6 #define DRIVER_H 7 8 9 #include <KernelExport.h> 10 #include <PCI.h> 11 12 #include "vesa_info.h" 13 #include "lock.h" 14 15 16 extern char *gDeviceNames[]; 17 extern vesa_info *gDeviceInfo[]; 18 extern lock gLock; 19 20 #endif /* DRIVER_H */ 21