xref: /haiku/src/add-ons/accelerants/vesa/dpms.cpp (revision 5412911f7f8ca41340b0f5cb928ed9726322ab44)
1 /*
2  * Copyright 2005, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
3  * Distributed under the terms of the MIT License.
4  */
5 
6 
7 #include "accelerant_protos.h"
8 #include "accelerant.h"
9 
10 
11 uint32
12 vesa_dpms_capabilities(void)
13 {
14 	return B_DPMS_ON;
15 }
16 
17 
18 uint32
19 vesa_dpms_mode(void)
20 {
21 	return B_DPMS_ON;
22 }
23 
24 
25 status_t
26 vesa_set_dpms_mode(uint32 dpms_flags)
27 {
28 	return B_ERROR;
29 }
30 
31