branch update for HEAD-2003091401
[reactos.git] / lib / user32 / windows / mdi.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/windows/input.c
23  * PURPOSE:         Input
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 /*
38  * @unimplemented
39  */
40 HWND
41 STDCALL
42 CreateMDIWindowA(
43   LPCSTR lpClassName,
44   LPCSTR lpWindowName,
45   DWORD dwStyle,
46   int X,
47   int Y,
48   int nWidth,
49   int nHeight,
50   HWND hWndParent,
51   HINSTANCE hInstance,
52   LPARAM lParam)
53 {
54   UNIMPLEMENTED;
55   return (HWND)0;
56 }
57
58
59 /*
60  * @unimplemented
61  */
62 HWND
63 STDCALL
64 CreateMDIWindowW(
65   LPCWSTR lpClassName,
66   LPCWSTR lpWindowName,
67   DWORD dwStyle,
68   int X,
69   int Y,
70   int nWidth,
71   int nHeight,
72   HWND hWndParent,
73   HINSTANCE hInstance,
74   LPARAM lParam)
75 {
76   UNIMPLEMENTED;
77   return (HWND)0;
78 }
79
80
81 /*
82  * @unimplemented
83  */
84 LRESULT
85 STDCALL
86 DefMDIChildProcA(
87   HWND hWnd,
88   UINT uMsg,
89   WPARAM wParam,
90   LPARAM lParam)
91 {
92   UNIMPLEMENTED;
93   return (LRESULT)0;
94 }
95
96
97 /*
98  * @unimplemented
99  */
100 LRESULT
101 STDCALL
102 DefMDIChildProcW(
103   HWND hWnd,
104   UINT uMsg,
105   WPARAM wParam,
106   LPARAM lParam)
107 {
108   UNIMPLEMENTED;
109   return (LRESULT)0;
110 }
111
112
113 /*
114  * @unimplemented
115  */
116 WINBOOL
117 STDCALL
118 TranslateMDISysAccel(
119   HWND hWndClient,
120   LPMSG lpMsg)
121 {
122   UNIMPLEMENTED;
123   return FALSE;
124 }