1/*
2	Copyright (c) 2002, Thomas Kurschel
3
4
5	Part of Radeon driver
6
7	Multi-Monitor Settings interface
8*/
9#ifndef _MULTIMON_H
10#define _MULTIMON_H
11
12
13#include <SupportDefs.h>
14
15
16class BScreen;
17
18status_t GetSwapDisplays( BScreen *screen, bool *swap );
19status_t SetSwapDisplays( BScreen *screen, bool swap );
20
21status_t GetUseLaptopPanel( BScreen *screen, bool *use );
22status_t SetUseLaptopPanel( BScreen *screen, bool use );
23
24status_t GetNthSupportedTVStandard( BScreen *screen, int idx, uint32 *standard );
25status_t GetTVStandard( BScreen *screen, uint32 *standard );
26status_t SetTVStandard( BScreen *screen, uint32 standard );
27
28status_t TestMultiMonSupport( BScreen *screen );
29
30#endif	// _MULTIMON_H
31