repo.or.cz
/
haiku.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Restore the "GPL licensing not permitted" in GLUT license headers.
[haiku.git]
/
headers
/
os
/
device
/
graphic_driver.h
blob
098d1e0daca05ed382474aea4528692d6113e51c
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