home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / evbl0627.zip / everblue_20010627.zip / x11 / Xlib_Focus.c < prev    next >
C/C++ Source or Header  |  1999-11-02  |  435b  |  17 lines

  1. #include "Xlib_private.h"
  2.  
  3. int XGetInputFocus(Display *display, Window *focus_return, int *revert_to_return)
  4. {
  5.  DBUG_ENTER("XGetInputFocus");
  6.  *focus_return = WinQueryFocus(HWND_DESKTOP);
  7.  *revert_to_return = RevertToNone;
  8.  DBUG_RETURN(True);
  9. }
  10.  
  11. int XSetInputFocus(Display *display, Window focus, int revert_to, Time time)
  12. {
  13.    DBUG_ENTER("XSetInputFocus");
  14.    WinSetFocus(HWND_DESKTOP, focus);
  15.    DBUG_RETURN(True);
  16. }
  17.