Window stations and desktops
[reactos.git] / reactos / subsys / win32k / ntuser / message.c
1 /* $Id: message.c,v 1.1 2001/06/12 17:50:29 chorns Exp $
2 *
3 * COPYRIGHT: See COPYING in the top level directory
4 * PROJECT: ReactOS kernel
5 * PURPOSE: Messages
6 * FILE: subsys/win32k/ntuser/message.c
7 * PROGRAMER: Casper S. Hornstrup (chorns@users.sourceforge.net)
8 * REVISION HISTORY:
9 * 06-06-2001 CSH Created
10 */
11 #include <ddk/ntddk.h>
12 #include <win32k/win32k.h>
13 #include <include/window.h>
14 #include <include/class.h>
15 #include <include/error.h>
16 #include <include/object.h>
17 #include <include/winsta.h>
18
19 #define NDEBUG
20 #include <debug.h>
21
22
23 NTSTATUS
24 InitMessageImpl(VOID)
25 {
26 return STATUS_SUCCESS;
27 }
28
29 NTSTATUS
30 CleanupMessageImpl(VOID)
31 {
32 return STATUS_SUCCESS;
33 }
34
35
36 LRESULT
37 STDCALL
38 NtUserDispatchMessage(
39 LPMSG lpmsg)
40 {
41 UNIMPLEMENTED
42
43 return 0;
44 }
45
46 BOOL
47 STDCALL
48 NtUserGetMessage(
49 LPMSG lpMsg,
50 HWND hWnd,
51 UINT wMsgFilterMin,
52 UINT wMsgFilterMax)
53 {
54 UNIMPLEMENTED
55
56 return FALSE;
57 }
58
59 DWORD
60 STDCALL
61 NtUserMessageCall(
62 DWORD Unknown0,
63 DWORD Unknown1,
64 DWORD Unknown2,
65 DWORD Unknown3,
66 DWORD Unknown4,
67 DWORD Unknown5,
68 DWORD Unknown6)
69 {
70 UNIMPLEMENTED
71
72 return 0;
73 }
74
75 BOOL
76 STDCALL
77 NtUserPeekMessage(
78 LPMSG lpMsg,
79 HWND hWnd,
80 UINT wMsgFilterMin,
81 UINT wMsgFilterMax,
82 UINT wRemoveMsg)
83 {
84 UNIMPLEMENTED
85
86 return 0;
87 }
88
89 BOOL
90 STDCALL
91 NtUserPostMessage(
92 HWND hWnd,
93 UINT Msg,
94 WPARAM wParam,
95 LPARAM lParam)
96 {
97 UNIMPLEMENTED
98
99 return 0;
100 }
101
102 BOOL
103 STDCALL
104 NtUserPostThreadMessage(
105 DWORD idThread,
106 UINT Msg,
107 WPARAM wParam,
108 LPARAM lParam)
109 {
110 UNIMPLEMENTED
111
112 return 0;
113 }
114
115 DWORD
116 STDCALL
117 NtUserQuerySendMessage(
118 DWORD Unknown0)
119 {
120 UNIMPLEMENTED
121
122 return 0;
123 }
124
125 BOOL
126 STDCALL
127 NtUserSendMessageCallback(
128 HWND hWnd,
129 UINT Msg,
130 WPARAM wParam,
131 LPARAM lParam,
132 SENDASYNCPROC lpCallBack,
133 ULONG_PTR dwData)
134 {
135 UNIMPLEMENTED
136
137 return 0;
138 }
139
140 BOOL
141 STDCALL
142 NtUserSendNotifyMessage(
143 HWND hWnd,
144 UINT Msg,
145 WPARAM wParam,
146 LPARAM lParam)
147 {
148 UNIMPLEMENTED
149
150 return 0;
151 }
152
153 BOOL
154 STDCALL
155 NtUserTranslateMessage(
156 LPMSG lpMsg,
157 DWORD Unknown1)
158 {
159 UNIMPLEMENTED
160
161 return 0;
162 }
163
164 BOOL
165 STDCALL
166 NtUserWaitMessage(VOID)
167 {
168 UNIMPLEMENTED
169
170 return 0;
171 }
172
173 /* EOF */