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