home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / x / volume3 / xsaver / part03 / action.h next >
Encoding:
C/C++ Source or Header  |  1989-03-10  |  1.2 KB  |  33 lines

  1. /*
  2.  * $Source: /mit/sipbsrc/uus/src/xscreensaver/RCS/action.h,v $
  3.  * $Author: jik $
  4.  * $Header: action.h,v 1.4 89/02/28 06:54:49 jik Exp $
  5.  * 
  6.  * This file is part of xscreensaver.  It contains a list of action
  7.  * procedures used by main to add action procedures to the toolkit.
  8.  *
  9.  * Author: Jonathan Kamens, MIT Project Athena and
  10.  *                          MIT Student Information Processing Board
  11.  *
  12.  * Copyright (c) 1989 by Jonathan Kamens.  This code may be
  13.  * distributed freely as long as this notice is kept intact in its
  14.  * entirety and every effort is made to send all corrections and
  15.  * improvements to the code back to the author.  Also, don't try to
  16.  * make any money off of it or pretend that you wrote it.
  17.  */
  18.  
  19. extern void RaiseRoot(), ClickSave(), ActivateRoot(), ActivateMenu(),
  20.      RemoveRoot(), GetPassword(), IconOn(), IconOff(), check_lock();
  21.  
  22. static XtActionsRec actionTable[] = {
  23.      {"RaiseRoot",        RaiseRoot},
  24.      {"ActivateRoot",        ActivateRoot},
  25.      {"ClickSave",        ClickSave},
  26.      {"ActivateMenu",        ActivateMenu},
  27.      {"RemoveRoot",        RemoveRoot},
  28.      {"GetPassword",        GetPassword},
  29.      {"IconOn",            IconOn},
  30.      {"IconOff",        IconOff},
  31.      {"check_lock",        check_lock}
  32. };
  33.