tcp: Add APICall trace entry and move TRACEs into locked parts.
[haiku.git] / src / add-ons / accelerants / vesa / accelerant.h
blob51bf68cd40c99e44639b95112aa0977891e39cf4
1 /*
2 * Copyright 2005-2008, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
3 * Distributed under the terms of the MIT License.
4 */
5 #ifndef VESA_ACCELERANT_H
6 #define VESA_ACCELERANT_H
9 #include "vesa_info.h"
12 typedef struct accelerant_info {
13 int device;
14 bool is_clone;
16 area_id shared_info_area;
17 vesa_shared_info *shared_info;
19 area_id mode_list_area;
20 // cloned list of standard display modes
21 display_mode *mode_list;
23 vesa_mode *vesa_modes;
24 } accelerant_info;
26 extern accelerant_info *gInfo;
28 extern status_t create_mode_list(void);
30 #endif /* VESA_ACCELERANT_H */