51c74f5a0c
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@8434 a95241bf-73f2-0310-859d-f6bbb57e9c96
20 lines
334 B
C++
20 lines
334 B
C++
/*
|
|
Copyright (c) 2002, Thomas Kurschel
|
|
|
|
|
|
Part of Radeon driver
|
|
|
|
Multi-Monitor Settings interface
|
|
*/
|
|
|
|
#ifndef _MULTIMON_H
|
|
#define _MULTIMON_H
|
|
|
|
class BScreen;
|
|
|
|
status_t GetSwapDisplays( BScreen *screen, bool *swap );
|
|
status_t SetSwapDisplays( BScreen *screen, bool swap );
|
|
status_t TestMultiMonSupport( BScreen *screen );
|
|
|
|
#endif
|