bef581e771421d2fb25c5f3d4be53905d8e1657a
[reactos.git] / reactos / lib / user32 / windows / messagebox.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: messagebox.c,v 1.3 2002/09/08 10:23:12 chorns Exp $
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 int
38 STDCALL
39 MessageBoxA(
40 HWND hWnd,
41 LPCSTR lpText,
42 LPCSTR lpCaption,
43 UINT uType)
44 {
45 return 0;
46 }
47
48 int
49 STDCALL
50 MessageBoxExA(
51 HWND hWnd,
52 LPCSTR lpText,
53 LPCSTR lpCaption,
54 UINT uType,
55 WORD wLanguageId)
56 {
57 return 0;
58 }
59
60 int
61 STDCALL
62 MessageBoxExW(
63 HWND hWnd,
64 LPCWSTR lpText,
65 LPCWSTR lpCaption,
66 UINT uType,
67 WORD wLanguageId)
68 {
69 return 0;
70 }
71
72 int
73 STDCALL
74 MessageBoxIndirectA(
75 CONST LPMSGBOXPARAMS lpMsgBoxParams)
76 {
77 return 0;
78 }
79
80 int
81 STDCALL
82 MessageBoxIndirectW(
83 CONST LPMSGBOXPARAMS lpMsgBoxParams)
84 {
85 return 0;
86 }
87
88 int
89 STDCALL
90 MessageBoxW(
91 HWND hWnd,
92 LPCWSTR lpText,
93 LPCWSTR lpCaption,
94 UINT uType)
95 {
96 return 0;
97 }