]> de.git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - sys_win.c
Added CTRL+V paste into the console for win32 users.
[xonotic/darkplaces.git] / sys_win.c
index 4114fdcd12743a8cfa07e0212c4c5c59fb6a0059..8e3c628f850ef06d14d2beb96aa4fee1db77458e 100644 (file)
--- a/sys_win.c
+++ b/sys_win.c
@@ -93,10 +93,8 @@ void Sys_Error (const char *error, ...)
        exit (1);
 }
 
-void Sys_Quit (void)
+void Sys_Shutdown (void)
 {
-       Host_Shutdown();
-
        if (tevent)
                CloseHandle (tevent);
 
@@ -105,8 +103,6 @@ void Sys_Quit (void)
 
 // shut down QHOST hooks if necessary
        DeinitConProc ();
-
-       exit (0);
 }
 
 void Sys_PrintToTerminal(const char *text)
@@ -281,25 +277,29 @@ void Sys_Sleep(int milliseconds)
        Sleep(milliseconds);
 }
 
-
-void Sys_SendKeyEvents (void)
+char *Sys_GetClipboardData (void)
 {
-       MSG msg;
+       char *data = NULL;
+       char *cliptext;
 
-       while (PeekMessage (&msg, NULL, 0, 0, PM_NOREMOVE))
+       if (OpenClipboard (NULL) != 0)
        {
-       // we always update if there are any event, even if we're paused
-               scr_skipupdate = 0;
+               HANDLE hClipboardData;
 
-               if (!GetMessage (&msg, NULL, 0, 0))
-                       Sys_Quit ();
-
-               TranslateMessage (&msg);
-               DispatchMessage (&msg);
+               if ((hClipboardData = GetClipboardData (CF_TEXT)) != 0)
+               {
+                       if ((cliptext = GlobalLock (hClipboardData)) != 0) 
+                       {
+                               data = malloc (GlobalSize(hClipboardData)+1);
+                               strcpy (data, cliptext);
+                               GlobalUnlock (hClipboardData);
+                       }
+               }
+               CloseClipboard ();
        }
+       return data;
 }
 
-
 /*
 ==============================================================================
 
@@ -462,4 +462,3 @@ int WINAPI WinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLin
        /* return success of application */
        return true;
 }
-