mpr: Don't stop enumeration on the first failing network provider.
[wine.git] / include / highlevelmonitorconfigurationapi.h
blob429b75d607b59900ff2bcee14c60877469b666d4
1 /*
2 * Copyright 2014 Michael Müller for Pipelight
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19 #ifndef __WINE_HIGHLEVELMONITORCONFIGURATIONAPI_H
20 #define __WINE_HIGHLEVELMONITORCONFIGURATIONAPI_H
22 #ifdef __cplusplus
23 extern "C" {
24 #endif
26 typedef enum _MC_COLOR_TEMPERATURE
28 MC_COLOR_TEMPERATURE_UNKNOWN,
29 MC_COLOR_TEMPERATURE_4000K,
30 MC_COLOR_TEMPERATURE_5000K,
31 MC_COLOR_TEMPERATURE_6500K,
32 MC_COLOR_TEMPERATURE_7500K,
33 MC_COLOR_TEMPERATURE_8200K,
34 MC_COLOR_TEMPERATURE_9300K,
35 MC_COLOR_TEMPERATURE_10000K,
36 MC_COLOR_TEMPERATURE_11500K
37 } MC_COLOR_TEMPERATURE, *LPMC_COLOR_TEMPERATURE;
39 typedef enum _MC_POSITION_TYPE
41 MC_HORIZONTAL_POSITION,
42 MC_VERTICAL_POSITION
43 } MC_POSITION_TYPE;
45 typedef enum _MC_SIZE_TYPE
47 MC_WIDTH,
48 MC_HEIGHT
49 } MC_SIZE_TYPE;
51 typedef enum _MC_DRIVE_TYPE
53 MC_RED_DRIVE,
54 MC_GREEN_DRIVE,
55 MC_BLUE_DRIVE
56 } MC_DRIVE_TYPE;
58 typedef enum _MC_GAIN_TYPE
60 MC_RED_GAIN,
61 MC_GREEN_GAIN,
62 MC_BLUE_GAIN
63 } MC_GAIN_TYPE;
65 typedef enum _MC_DISPLAY_TECHNOLOGY_TYPE
67 MC_SHADOW_MASK_CATHODE_RAY_TUBE,
68 MC_APERTURE_GRILL_CATHODE_RAY_TUBE,
69 MC_THIN_FILM_TRANSISTOR,
70 MC_LIQUID_CRYSTAL_ON_SILICON,
71 MC_PLASMA,
72 MC_ORGANIC_LIGHT_EMITTING_DIODE,
73 MC_ELECTROLUMINESCENT,
74 MC_MICROELECTROMECHANICAL,
75 MC_FIELD_EMISSION_DEVICE
76 } MC_DISPLAY_TECHNOLOGY_TYPE, *LPMC_DISPLAY_TECHNOLOGY_TYPE;
78 #ifdef __cplusplus
80 #endif
82 #endif /* __WINE_HIGHLEVELMONITORCONFIGURATIONAPI_H */