xref: /haiku/headers/os/device/graphic_driver.h (revision d734a8ce5a83e48e17a2d0d6635090d48c5ad161)
1 #if !defined(_GRAPHIC_DRIVER_H_)
2 #define _GRAPHIC_DRIVER_H_
3 
4 #include <Drivers.h>
5 
6 /* The API for driver access is C, not C++ */
7 
8 #ifdef __cplusplus
9 extern "C" {
10 #endif
11 
12 enum {
13 	B_GET_ACCELERANT_SIGNATURE = B_GRAPHIC_DRIVER_BASE
14 };
15 
16 #ifdef __cplusplus
17 }
18 #endif
19 
20 #endif
21