home *** CD-ROM | disk | FTP | other *** search
- /*
- * $Source: /mit/sipbsrc/uus/src/xscreensaver/RCS/action.h,v $
- * $Author: jik $
- * $Header: action.h,v 1.4 89/02/28 06:54:49 jik Exp $
- *
- * This file is part of xscreensaver. It contains a list of action
- * procedures used by main to add action procedures to the toolkit.
- *
- * Author: Jonathan Kamens, MIT Project Athena and
- * MIT Student Information Processing Board
- *
- * Copyright (c) 1989 by Jonathan Kamens. This code may be
- * distributed freely as long as this notice is kept intact in its
- * entirety and every effort is made to send all corrections and
- * improvements to the code back to the author. Also, don't try to
- * make any money off of it or pretend that you wrote it.
- */
-
- extern void RaiseRoot(), ClickSave(), ActivateRoot(), ActivateMenu(),
- RemoveRoot(), GetPassword(), IconOn(), IconOff(), check_lock();
-
- static XtActionsRec actionTable[] = {
- {"RaiseRoot", RaiseRoot},
- {"ActivateRoot", ActivateRoot},
- {"ClickSave", ClickSave},
- {"ActivateMenu", ActivateMenu},
- {"RemoveRoot", RemoveRoot},
- {"GetPassword", GetPassword},
- {"IconOn", IconOn},
- {"IconOff", IconOff},
- {"check_lock", check_lock}
- };
-