xref: /haiku/headers/private/graphics/radeon/multimon.h (revision 51c74f5a0ce92da14669604cafe1e70c8f736a13)
1*51c74f5aSshadow303 /*
2*51c74f5aSshadow303 	Copyright (c) 2002, Thomas Kurschel
3*51c74f5aSshadow303 
4*51c74f5aSshadow303 
5*51c74f5aSshadow303 	Part of Radeon driver
6*51c74f5aSshadow303 
7*51c74f5aSshadow303 	Multi-Monitor Settings interface
8*51c74f5aSshadow303 */
9*51c74f5aSshadow303 
10*51c74f5aSshadow303 #ifndef _MULTIMON_H
11*51c74f5aSshadow303 #define _MULTIMON_H
12*51c74f5aSshadow303 
13*51c74f5aSshadow303 class BScreen;
14*51c74f5aSshadow303 
15*51c74f5aSshadow303 status_t GetSwapDisplays( BScreen *screen, bool *swap );
16*51c74f5aSshadow303 status_t SetSwapDisplays( BScreen *screen, bool swap );
17*51c74f5aSshadow303 status_t TestMultiMonSupport( BScreen *screen );
18*51c74f5aSshadow303 
19*51c74f5aSshadow303 #endif
20