966a49cced6fafab094434255840cdfc741470ee
[reactos.git] / lib / user32 / misc / display.c
1 /*
2  *  ReactOS kernel
3  *  Copyright (C) 1998, 1999, 2000, 2001 ReactOS Team
4  *
5  *  This program is free software; you can redistribute it and/or modify
6  *  it under the terms of the GNU General Public License as published by
7  *  the Free Software Foundation; either version 2 of the License, or
8  *  (at your option) any later version.
9  *
10  *  This program is distributed in the hope that it will be useful,
11  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
12  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  *  GNU General Public License for more details.
14  *
15  *  You should have received a copy of the GNU General Public License
16  *  along with this program; if not, write to the Free Software
17  *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18  */
19 /* $Id$
20  *
21  * PROJECT:         ReactOS user32.dll
22  * FILE:            lib/user32/misc/dde.c
23  * PURPOSE:         DDE
24  * PROGRAMMER:      Casper S. Hornstrup (chorns@users.sourceforge.net)
25  * UPDATE HISTORY:
26  *      09-05-2001  CSH  Created
27  */
28
29 /* INCLUDES ******************************************************************/
30
31 #include <windows.h>
32 #include <user32.h>
33 #include <debug.h>
34
35 /* FUNCTIONS *****************************************************************/
36
37 WINBOOL STDCALL
38 EnumDisplayDevicesA(
39   LPCSTR lpDevice,
40   DWORD iDevNum,
41   PDISPLAY_DEVICE lpDisplayDevice,
42   DWORD dwFlags)
43 {
44   return FALSE;
45 }
46
47 WINBOOL
48 STDCALL
49 EnumDisplayDevicesW(
50   LPCWSTR lpDevice,
51   DWORD iDevNum,
52   PDISPLAY_DEVICE lpDisplayDevice,
53   DWORD dwFlags)
54 {
55   return FALSE;
56 }
57
58 WINBOOL
59 STDCALL
60 EnumDisplayMonitors(
61   HDC hdc,
62   LPRECT lprcClip,
63   MONITORENUMPROC lpfnEnum,
64   LPARAM dwData)
65 {
66   return FALSE;
67 }
68
69 WINBOOL
70 STDCALL
71 EnumDisplaySettingsA(
72   LPCSTR lpszDeviceName,
73   DWORD iModeNum,
74   LPDEVMODEA lpDevMode)
75 {
76   return FALSE;
77 }
78
79 WINBOOL
80 STDCALL
81 EnumDisplaySettingsExA(
82   LPCSTR lpszDeviceName,
83   DWORD iModeNum,
84   LPDEVMODEW lpDevMode,
85   DWORD dwFlags)
86 {
87   return FALSE;
88 }
89
90 WINBOOL
91 STDCALL
92 EnumDisplaySettingsExW(
93   LPCWSTR lpszDeviceName,
94   DWORD iModeNum,
95   LPDEVMODEA lpDevMode,
96   DWORD dwFlags)
97 {
98   return FALSE;
99 }
100
101 WINBOOL
102 STDCALL
103 EnumDisplaySettingsW(
104   LPCWSTR lpszDeviceName,
105   DWORD iModeNum,
106   LPDEVMODEW lpDevMode)
107 {
108   return FALSE;
109 }
110 WINBOOL
111 STDCALL
112 GetMonitorInfoA(
113   HMONITOR hMonitor,
114   LPMONITORINFO lpmi)
115 {
116   return FALSE;
117 }
118
119 WINBOOL
120 STDCALL
121 GetMonitorInfoW(
122   HMONITOR hMonitor,
123   LPMONITORINFO lpmi)
124 {
125   return FALSE;
126 }
127 LONG
128 STDCALL
129 ChangeDisplaySettingsA(
130   LPDEVMODEA lpDevMode,
131   DWORD dwflags)
132 {
133   return 0;
134 }
135
136 LONG
137 STDCALL
138 ChangeDisplaySettingsExA(
139   LPCSTR lpszDeviceName,
140   LPDEVMODEA lpDevMode,
141   HWND hwnd,
142   DWORD dwflags,
143   LPVOID lParam)
144 {
145   return 0;
146 }
147
148 LONG
149 STDCALL
150 ChangeDisplaySettingsExW(
151   LPCWSTR lpszDeviceName,
152   LPDEVMODEW lpDevMode,
153   HWND hwnd,
154   DWORD dwflags,
155   LPVOID lParam)
156 {
157   return 0;
158 }
159
160 LONG
161 STDCALL
162 ChangeDisplaySettingsW(
163   LPDEVMODEW lpDevMode,
164   DWORD dwflags)
165 {
166   return 0;
167 }