Displaying 2 results from an estimated 2 matches for "rootx".
Did you mean:
root
2006 Jan 30
4
Warning message when returning multiple items
In my function I am trying to return multiple computed items (separated by commas). The function does what I need, but I get a warning message that multi-argument returns are deprecated. Is this a warning I should heed, or is there a more elegant and warning free way of achieving the same end? Thanks
---------------------------------
[[alternative HTML version deleted]]
2003 Apr 10
1
Starcraft Patch
...TRACE( "warping to (%d,%d)\n", x, y );
@@ -518,7 +536,11 @@
*/
void X11DRV_GetCursorPos(LPPOINT pos)
{
+#ifdef HAVE_LIBXXF86DGA2
+ Display *display = DGAUsed ? gdi_display : thread_display();
+#else
Display *display = thread_display();
+#endif
Window root, child;
int rootX, rootY, winX, winY;
unsigned int xstate;
Index: tools/wineinstall
===================================================================
RCS file: /home/wine/wine/tools/wineinstall,v
retrieving revision 1.52
diff -u -r1.52 wineinstall
--- tools/wineinstall 24 Mar 2003 19:29:38 -0000 1.52
+++ tools/...