- Implement interprocess clipboard communication.
- Support for the PRIMARY and CLIPBOARD selection atoms.
- Support for the TARGETS selection format.
- Expose native Windows clipboard formats through X selection targets.

diff --git a/windows/user.c b/windows/user.c
index ea30472..9297ee7 100644
--- a/windows/user.c
+++ b/windows/user.c
@@ -153,7 +153,6 @@
 
         QUEUE_SetExitingQueue( hQueue );
         WIN_ResetQueueWindows( desktop, hQueue, (HQUEUE16)0);
-        CLIPBOARD_ResetLock( hQueue, 0 );
         QUEUE_SetExitingQueue( 0 );
 
         /* Free the message queue */
@@ -168,8 +167,13 @@
  */
 static void USER_AppExit( HINSTANCE16 hInstance )
 {
-    /* FIXME: empty clipboard if needed, maybe destroy menus (Windows
-     *	      only complains about them but does nothing);
+    /* FIXME: maybe destroy menus (Windows only complains about them
+     * but does nothing);
+     */
+
+    /*  TODO: Start up persistant WINE X clipboard server process which will
+     *  take ownership of the X selection and continue to service selection
+     *  requests from other apps.
      */
 
     /* ModuleUnload() in "Internals" */