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