mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
return hardcoded value (1) for SM_CMONITORS.
svn path=/trunk/; revision=11188
This commit is contained in:
parent
aa496615df
commit
f539cfcea7
1 changed files with 16 additions and 13 deletions
|
@ -16,7 +16,7 @@
|
|||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
*/
|
||||
/* $Id: metric.c,v 1.21 2004/05/14 23:57:32 weiden Exp $
|
||||
/* $Id: metric.c,v 1.22 2004/10/04 19:23:31 jc Exp $
|
||||
*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS kernel
|
||||
|
@ -204,6 +204,9 @@ NtUserGetSystemMetrics(ULONG Index)
|
|||
case SM_SHOWSOUNDS:
|
||||
case SM_SLOWMACHINE:
|
||||
return(0);
|
||||
case SM_CMONITORS:
|
||||
return(1);
|
||||
|
||||
default:
|
||||
return(0xFFFFFFFF);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue