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
17extern char* gDeviceNames[];
18extern vesa_info* gDeviceInfo[];
19extern isa_module_info* gISA;
20extern mutex gLock;
21
22#endif  /* DRIVER_H */
23