Alexandre Julliard | cdd0923 | 1994-01-12 11:12:51 +0000 | [diff] [blame] | 1 | /* |
| 2 | * System metrics definitions |
| 3 | * |
| 4 | * Copyright 1994 Alexandre Julliard |
Alexandre Julliard | 0799c1a | 2002-03-09 23:29:33 +0000 | [diff] [blame] | 5 | * |
| 6 | * This library is free software; you can redistribute it and/or |
| 7 | * modify it under the terms of the GNU Lesser General Public |
| 8 | * License as published by the Free Software Foundation; either |
| 9 | * version 2.1 of the License, or (at your option) any later version. |
| 10 | * |
| 11 | * This library is distributed in the hope that it will be useful, |
| 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 14 | * Lesser General Public License for more details. |
| 15 | * |
| 16 | * You should have received a copy of the GNU Lesser General Public |
| 17 | * License along with this library; if not, write to the Free Software |
| 18 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
Alexandre Julliard | cdd0923 | 1994-01-12 11:12:51 +0000 | [diff] [blame] | 19 | */ |
| 20 | |
Alexandre Julliard | c6c0944 | 1997-01-12 18:32:19 +0000 | [diff] [blame] | 21 | #ifndef __WINE_SYSMETRICS_H |
| 22 | #define __WINE_SYSMETRICS_H |
Alexandre Julliard | cdd0923 | 1994-01-12 11:12:51 +0000 | [diff] [blame] | 23 | |
Alexandre Julliard | 02e9008 | 1998-01-04 17:49:09 +0000 | [diff] [blame] | 24 | extern void SYSMETRICS_Init(void); /* sysmetrics.c */ |
Andriy Palamarchuk | 676eb23 | 2001-10-02 18:35:32 +0000 | [diff] [blame] | 25 | extern INT SYSMETRICS_Set( INT index, INT value ); /* sysmetrics.c */ |
Alexandre Julliard | 02e9008 | 1998-01-04 17:49:09 +0000 | [diff] [blame] | 26 | extern void SYSCOLOR_Init(void); /* syscolor.c */ |
Andriy Palamarchuk | 2489dc9 | 2001-12-06 22:28:43 +0000 | [diff] [blame] | 27 | extern void SYSPARAMS_GetDoubleClickSize( INT *width, INT *height ); |
Andriy Palamarchuk | d3212f9 | 2001-12-21 20:31:24 +0000 | [diff] [blame] | 28 | extern INT SYSPARAMS_GetMouseButtonSwap( void ); |
Alexandre Julliard | 02e9008 | 1998-01-04 17:49:09 +0000 | [diff] [blame] | 29 | |
Alexandre Julliard | 646c562 | 2000-07-31 23:32:47 +0000 | [diff] [blame] | 30 | /* Wine extensions */ |
| 31 | #define SM_WINE_BPP (SM_CMETRICS+1) /* screen bpp */ |
| 32 | #define SM_WINE_CMETRICS SM_WINE_BPP |
| 33 | |
Alexandre Julliard | c6c0944 | 1997-01-12 18:32:19 +0000 | [diff] [blame] | 34 | #endif /* __WINE_SYSMETRICS_H */ |