home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / x / volume10 / xlock / part01 / blank.c next >
C/C++ Source or Header  |  1990-12-07  |  1KB  |  51 lines

  1. #ifndef lint
  2. static char sccsid[] = "@(#)blank.c    1.3 90/10/28 XLOCK SMI";
  3. #endif
  4. /*-
  5.  * blank.c - blank screen for the xlock X11 terminal locker.
  6.  *
  7.  * Copyright (c) 1990 by Sun Microsystems, Inc.
  8.  *
  9.  * Permission to use, copy, modify, and distribute this software and its
  10.  * documentation for any purpose and without fee is hereby granted,
  11.  * provided that the above copyright notice appear in all copies and that
  12.  * both that copyright notice and this permission notice appear in
  13.  * supporting documentation.
  14.  *
  15.  * This file is provided AS IS with no warranties of any kind.    The author
  16.  * shall have no liability with respect to the infringement of copyrights,
  17.  * trade secrets or any patents by this file or any part thereof.  In no
  18.  * event will the author be liable for any lost revenue or profits or
  19.  * other special, indirect and consequential damages.
  20.  *
  21.  * Comments and additions should be sent to the author:
  22.  *
  23.  *               naughton@eng.sun.com
  24.  *
  25.  *               Patrick J. Naughton
  26.  *               MS 14-01
  27.  *               Windows and Graphics Group
  28.  *               Sun Microsystems, Inc.
  29.  *               2550 Garcia Ave
  30.  *               Mountain View, CA  94043
  31.  *
  32.  * Revision History:
  33.  * 31-Aug-90: Written.
  34.  */
  35.  
  36. #include "xlock.h"
  37.  
  38. /*ARGSUSED*/
  39. void
  40. drawblank(win)
  41.     Window      win;
  42. {
  43. }
  44.  
  45. void
  46. initblank(win)
  47.     Window      win;
  48. {
  49.     XClearWindow(dsp, win);
  50. }
  51.