2004-07-20 05:23:55 +04:00
|
|
|
/*
|
|
|
|
Copyright (c) 2002, Thomas Kurschel
|
|
|
|
|
|
|
|
|
|
|
|
Part of Radeon driver
|
|
|
|
|
|
|
|
Multi-Monitor Settings interface
|
|
|
|
*/
|
|
|
|
#ifndef _MULTIMON_H
|
|
|
|
#define _MULTIMON_H
|
|
|
|
|
2006-03-11 18:13:19 +03:00
|
|
|
|
|
|
|
#include <SupportDefs.h>
|
|
|
|
|
|
|
|
|
2004-07-20 05:23:55 +04:00
|
|
|
class BScreen;
|
|
|
|
|
|
|
|
status_t GetSwapDisplays( BScreen *screen, bool *swap );
|
|
|
|
status_t SetSwapDisplays( BScreen *screen, bool swap );
|
2005-04-01 18:16:38 +04:00
|
|
|
|
|
|
|
status_t GetUseLaptopPanel( BScreen *screen, bool *use );
|
|
|
|
status_t SetUseLaptopPanel( BScreen *screen, bool use );
|
|
|
|
|
|
|
|
status_t GetNthSupportedTVStandard( BScreen *screen, int idx, uint32 *standard );
|
|
|
|
status_t GetTVStandard( BScreen *screen, uint32 *standard );
|
|
|
|
status_t SetTVStandard( BScreen *screen, uint32 standard );
|
|
|
|
|
2004-07-20 05:23:55 +04:00
|
|
|
status_t TestMultiMonSupport( BScreen *screen );
|
|
|
|
|
2006-03-11 18:13:19 +03:00
|
|
|
#endif // _MULTIMON_H
|