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