return hardcoded value (1) for SM_CMONITORS.

svn path=/trunk/; revision=11188
This commit is contained in:
Jens Collin 2004-10-04 19:23:31 +00:00
parent aa496615df
commit f539cfcea7

View file

@ -16,7 +16,7 @@
* along with this program; if not, write to the Free Software * along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * 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 * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel * PROJECT: ReactOS kernel
@ -204,6 +204,9 @@ NtUserGetSystemMetrics(ULONG Index)
case SM_SHOWSOUNDS: case SM_SHOWSOUNDS:
case SM_SLOWMACHINE: case SM_SLOWMACHINE:
return(0); return(0);
case SM_CMONITORS:
return(1);
default: default:
return(0xFFFFFFFF); return(0xFFFFFFFF);
} }