update for HEAD-2003091401
[reactos.git] / lib / user32 / windows / clipboard.c
index 920d0cd..a196f02 100644 (file)
 
 /* FUNCTIONS *****************************************************************/
 
+/*
+ * @unimplemented
+ */
 WINBOOL
 STDCALL
 CloseClipboard(VOID)
 {
+  UNIMPLEMENTED;
   return FALSE;
 }
+
+
+/*
+ * @unimplemented
+ */
 int
 STDCALL
 CountClipboardFormats(VOID)
 {
+  UNIMPLEMENTED;
   return 0;
 }
+
+
+/*
+ * @unimplemented
+ */
 WINBOOL
 STDCALL
 EmptyClipboard(VOID)
 {
+  UNIMPLEMENTED;
   return FALSE;
 }
+
+
+/*
+ * @unimplemented
+ */
 UINT
 STDCALL
 EnumClipboardFormats(
   UINT format)
 {
+  UNIMPLEMENTED;
   return 0;
 }
+
+
+/*
+ * @unimplemented
+ */
 HANDLE
 STDCALL
 GetClipboardData(
   UINT uFormat)
 {
+  UNIMPLEMENTED;
   return (HANDLE)0;
 }
 
+
+/*
+ * @unimplemented
+ */
 int
 STDCALL
 GetClipboardFormatNameA(
@@ -74,9 +106,14 @@ GetClipboardFormatNameA(
   LPSTR lpszFormatName,
   int cchMaxCount)
 {
+  UNIMPLEMENTED;
   return 0;
 }
 
+
+/*
+ * @unimplemented
+ */
 int
 STDCALL
 GetClipboardFormatNameW(
@@ -84,94 +121,161 @@ GetClipboardFormatNameW(
   LPWSTR lpszFormatName,
   int cchMaxCount)
 {
+  UNIMPLEMENTED;
   return 0;
 }
 
+
+/*
+ * @unimplemented
+ */
 HWND
 STDCALL
 GetClipboardOwner(VOID)
 {
+  UNIMPLEMENTED;
   return (HWND)0;
 }
 
+
+/*
+ * @unimplemented
+ */
 DWORD
 STDCALL
 GetClipboardSequenceNumber(VOID)
 {
+  UNIMPLEMENTED;
   return 0;
 }
 
+
+/*
+ * @unimplemented
+ */
 HWND
 STDCALL
 GetClipboardViewer(VOID)
 {
+  UNIMPLEMENTED;
   return (HWND)0;
 }
+
+
+/*
+ * @unimplemented
+ */
 HWND
 STDCALL
 GetOpenClipboardWindow(VOID)
 {
+  UNIMPLEMENTED;
   return (HWND)0;
 }
 
+
+/*
+ * @unimplemented
+ */
 int
 STDCALL
 GetPriorityClipboardFormat(
   UINT *paFormatPriorityList,
   int cFormats)
 {
+  UNIMPLEMENTED;
   return 0;
 }
+
+
+/*
+ * @unimplemented
+ */
 WINBOOL
 STDCALL
 IsClipboardFormatAvailable(
   UINT format)
 {
+  UNIMPLEMENTED;
   return FALSE;
 }
+
+
+/*
+ * @unimplemented
+ */
 WINBOOL
 STDCALL
 OpenClipboard(
   HWND hWndNewOwner)
 {
+  UNIMPLEMENTED;
   return FALSE;
 }
+
+
+/*
+ * @unimplemented
+ */
 UINT
 STDCALL
 RegisterClipboardFormatA(
   LPCSTR lpszFormat)
 {
+  UNIMPLEMENTED;
   return 0;
 }
 
+
+/*
+ * @unimplemented
+ */
 UINT
 STDCALL
 RegisterClipboardFormatW(
   LPCWSTR lpszFormat)
 {
+  UNIMPLEMENTED;
   return 0;
 }
+
+
+/*
+ * @unimplemented
+ */
 HANDLE
 STDCALL
 SetClipboardData(
   UINT uFormat,
   HANDLE hMem)
 {
+  UNIMPLEMENTED;
   return (HANDLE)0;
 }
 
+
+/*
+ * @unimplemented
+ */
 HWND
 STDCALL
 SetClipboardViewer(
   HWND hWndNewViewer)
 {
+  UNIMPLEMENTED;
   return (HWND)0;
 }
+
+
+/*
+ * @unimplemented
+ */
 WINBOOL
 STDCALL
 ChangeClipboardChain(
   HWND hWndRemove,
   HWND hWndNewNext)
 {
+  UNIMPLEMENTED;
   return FALSE;
 }