1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126
|
/* $Header: /home/yav/catty/fkiss/RCS/work.h,v 1.30 2000/09/28 07:54:00 yav Exp $
* fkiss global variables
* written by yav <yav@bigfoot.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
extern char str_fullname[];
extern char str_version[];
extern char str_author[];
extern char *coptions[];
extern char kiss_magic_number[];
extern int oargc;
extern char **oargv;
extern Display *dsp;
extern int scr;
extern int screen_depth;
extern Visual *vis;
extern Window rootwin;
extern unsigned long spx[];
extern GC sysgc[];
extern int debug_mode;
extern int test_mode;
extern char *extract_dir;
extern char *conf_dir;
extern char *conf_file;
extern char *str_font;
extern char *str_font8;
extern char *str_font16;
extern Pixmap iconp;
extern int iconw, iconh;
extern Window topwin;
extern int topw, toph;
extern XFontStruct *fsp;
extern XFontStruct *fsp8;
extern XFontStruct *fsp16;
extern int font_ascent;
extern int font_descent;
extern int font8_ascent;
extern int font8_descent;
extern int font16_ascent;
extern int font16_descent;
extern Window mnwin;
extern Window viewwin;
extern int vieww, viewh;
extern int mnx, mny, mnw, mnh, mnbw;
extern int setcnt;
extern int palcnt;
extern Bool quit_flag;
extern int cset;
extern int cpal;
extern char *str_geometry;
extern int imgw0;
extern int imgh0;
extern int imgx, imgy, imgw, imgh, imgbw;
extern int scrdx, scrdy;
extern int celcnt;
extern int objcnt;
extern int objcnt2;
extern int motion_compress;
extern unsigned char hatch_ptrn[];
extern int arcfilecnt;
extern char **arcfilelist;
extern int verbose_mode;
extern int sound_mode;
extern char active_set[];
extern int border_color;
extern int max_fix;
extern CELL *cell;
extern OBJECT *object;
extern int colorfilecnt;
extern COLOR *kcflist;
extern SETINFO kset[];
extern char *midi_player;
extern Colormap cmap;
extern int gray_mode;
extern int colcnt;
extern XColor *xcol[MAXPAL];
extern KISSCOLOR *kcol[MAXPAL];
extern short *colindex;
extern char *str_curs_fore;
extern char *str_curs_back;
extern int cursor_mode;
extern int event_mode;
extern Bool event_detect;
extern int sleep_tick;
extern int private_color_mode;
extern int private_colormap_mode;
extern char infostr0[];
extern char infostr[];
extern int cnf_comment_cnt;
extern char **cnf_comment;
extern int coding_type;
extern int objpos_first_align;
extern int oldcnf_comaptible;
extern char *hes_keyword;
extern Window infowin;
extern int evn;
extern int enable_event_shell;
extern char *evid;
extern int randseed;
extern char *str_sound_cache_limit;
extern long sound_cache_limit;
extern int wkiss_bug_emulation;
extern int transparency_mode;
extern Window comwin;
extern int combw;
extern int comment_mode;
extern int comment_linenum;
extern int auto_adjust;
/* End of file */
|