Use free Windows DDK and compile with latest MinGW releases.
[reactos.git] / reactos / lib / user32 / windows / clipboard.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: clipboard.c,v 1.2 2002/09/07 15:12:45 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 <user32.h>
32
33 /* FUNCTIONS *****************************************************************/
34
35 WINBOOL
36 STDCALL
37 CloseClipboard(VOID)
38 {
39 return FALSE;
40 }
41 int
42 STDCALL
43 CountClipboardFormats(VOID)
44 {
45 return 0;
46 }
47 WINBOOL
48 STDCALL
49 EmptyClipboard(VOID)
50 {
51 return FALSE;
52 }
53 UINT
54 STDCALL
55 EnumClipboardFormats(
56 UINT format)
57 {
58 return 0;
59 }
60 HANDLE
61 STDCALL
62 GetClipboardData(
63 UINT uFormat)
64 {
65 return (HANDLE)0;
66 }
67
68 int
69 STDCALL
70 GetClipboardFormatNameA(
71 UINT format,
72 LPSTR lpszFormatName,
73 int cchMaxCount)
74 {
75 return 0;
76 }
77
78 int
79 STDCALL
80 GetClipboardFormatNameW(
81 UINT format,
82 LPWSTR lpszFormatName,
83 int cchMaxCount)
84 {
85 return 0;
86 }
87
88 HWND
89 STDCALL
90 GetClipboardOwner(VOID)
91 {
92 return (HWND)0;
93 }
94
95 DWORD
96 STDCALL
97 GetClipboardSequenceNumber(VOID)
98 {
99 return 0;
100 }
101
102 HWND
103 STDCALL
104 GetClipboardViewer(VOID)
105 {
106 return (HWND)0;
107 }
108 HWND
109 STDCALL
110 GetOpenClipboardWindow(VOID)
111 {
112 return (HWND)0;
113 }
114
115 int
116 STDCALL
117 GetPriorityClipboardFormat(
118 UINT *paFormatPriorityList,
119 int cFormats)
120 {
121 return 0;
122 }
123 WINBOOL
124 STDCALL
125 IsClipboardFormatAvailable(
126 UINT format)
127 {
128 return FALSE;
129 }
130 WINBOOL
131 STDCALL
132 OpenClipboard(
133 HWND hWndNewOwner)
134 {
135 return FALSE;
136 }
137 UINT
138 STDCALL
139 RegisterClipboardFormatA(
140 LPCSTR lpszFormat)
141 {
142 return 0;
143 }
144
145 UINT
146 STDCALL
147 RegisterClipboardFormatW(
148 LPCWSTR lpszFormat)
149 {
150 return 0;
151 }
152 HANDLE
153 STDCALL
154 SetClipboardData(
155 UINT uFormat,
156 HANDLE hMem)
157 {
158 return (HANDLE)0;
159 }
160
161 HWND
162 STDCALL
163 SetClipboardViewer(
164 HWND hWndNewViewer)
165 {
166 return (HWND)0;
167 }
168 WINBOOL
169 STDCALL
170 ChangeClipboardChain(
171 HWND hWndRemove,
172 HWND hWndNewNext)
173 {
174 return FALSE;
175 }