home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Source Code 1993 July / THE_SOURCE_CODE_CD_ROM.iso / X / mit / clients / xmodmap / xmodmap.h < prev    next >
Encoding:
C/C++ Source or Header  |  1991-07-17  |  1.4 KB  |  40 lines

  1. /*
  2.  * xmodmap - program for loading keymap definitions into server
  3.  *
  4.  * $XConsortium: xmodmap.h,v 1.7 91/07/17 22:26:31 rws Exp $
  5.  *
  6.  * Copyright 1988 Massachusetts Institute of Technology
  7.  *
  8.  * Permission to use, copy, modify, and distribute this software and its
  9.  * documentation for any purpose and without fee is hereby granted, provided
  10.  * that the above copyright notice appear in all copies and that both that
  11.  * copyright notice and this permission notice appear in supporting
  12.  * documentation, and that the name of M.I.T. not be used in advertising or
  13.  * publicity pertaining to distribution of the software without specific,
  14.  * written prior permission.  M.I.T. makes no representations about the
  15.  * suitability of this software for any purpose.  It is provided "as is"
  16.  * without express or implied warranty.
  17.  *
  18.  * Author:  Jim Fulton, MIT X Consortium
  19.  */
  20.  
  21. extern char *ProgramName;
  22. extern Display *dpy;
  23. extern int min_keycode, max_keycode;
  24. extern Bool verbose;
  25. extern Bool dontExecute;
  26. extern char *inputFilename;
  27. extern int lineno;
  28. extern int parse_errors;
  29.  
  30. extern void initialize_map ();
  31. extern void process_file ();
  32. extern void process_line ();
  33. extern void handle_line ();
  34. extern void print_opcode ();
  35. extern void print_work_queue ();
  36. extern int execute_work_queue ();
  37. extern void print_modifier_map ();
  38. extern void print_key_table ();
  39. extern void print_pointer_map ();
  40.