- Cleanup user32, direct call to kernel space
[reactos.git] / reactos / dll / win32 / user32 / windows / clipboard.c
index a39b4db..2dad84d 100644 (file)
@@ -34,39 +34,6 @@ OpenClipboard(HWND hWndNewOwner)
     return ret;
 }
 
-/*
- * @implemented
- */
-BOOL
-WINAPI
-CloseClipboard(VOID)
-{
-    BOOL ret;
-    ret = NtUserCloseClipboard();
-    return ret;
-}
-
-/*
- * @implemented
- */
-INT
-WINAPI
-CountClipboardFormats(VOID)
-{
-    INT ret = NtUserCountClipboardFormats();
-    return ret;
-}
-
-/*
- * @implemented
- */
-BOOL
-WINAPI
-EmptyClipboard(VOID)
-{
-    return NtUserEmptyClipboard();
-}
-
 /*
  * @implemented
  */
@@ -173,68 +140,6 @@ GetClipboardFormatNameW(UINT format,
 
 }
 
-/*
- * @implemented
- */
-HWND
-WINAPI
-GetClipboardOwner(VOID)
-{
-    return NtUserGetClipboardOwner();
-}
-
-/*
- * @implemented
- */
-DWORD
-WINAPI
-GetClipboardSequenceNumber(VOID)
-{
-    return NtUserGetClipboardSequenceNumber();
-}
-
-/*
- * @implemented
- */
-HWND
-WINAPI
-GetClipboardViewer(VOID)
-{
-    return NtUserGetClipboardViewer();
-}
-
-/*
- * @implemented
- */
-HWND
-WINAPI
-GetOpenClipboardWindow(VOID)
-{
-    return NtUserGetOpenClipboardWindow();
-}
-
-/*
- * @implemented
- */
-INT
-WINAPI
-GetPriorityClipboardFormat(UINT *paFormatPriorityList, INT cFormats)
-{
-    INT ret = NtUserGetPriorityClipboardFormat(paFormatPriorityList, cFormats);
-    return ret;
-}
-
-/*
- * @implemented
- */
-BOOL
-WINAPI
-IsClipboardFormatAvailable(UINT format)
-{
-    BOOL ret = NtUserIsClipboardFormatAvailable(format);
-    return ret;
-}
-
 /*
  * @implemented
  */
@@ -377,27 +282,6 @@ SetClipboardData(UINT uFormat, HANDLE hMem)
 
 }
 
-/*
- * @implemented
- */
-HWND
-WINAPI
-SetClipboardViewer(HWND hWndNewViewer)
-{
-    return NtUserSetClipboardViewer(hWndNewViewer);
-}
-
-/*
- * @implemented
- */
-BOOL
-WINAPI
-ChangeClipboardChain(HWND hWndRemove,
-                     HWND hWndNewNext)
-{
-    return NtUserChangeClipboardChain(hWndRemove, hWndNewNext);
-}
-
 /*
  * @unimplemented
  */