194 lines
4.9 KiB
C++
194 lines
4.9 KiB
C++
|
|
// ------------------------------------------------------------------
|
|
// GoldED+
|
|
// Copyright (C) 1990-1999 Odinn Sorensen
|
|
// Copyright (C) 1999-2000 Alexander S. Aganichev
|
|
// ------------------------------------------------------------------
|
|
// 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., 59 Temple Place, Suite 330, Boston,
|
|
// MA 02111-1307 USA
|
|
// ------------------------------------------------------------------
|
|
// $Id$
|
|
// ------------------------------------------------------------------
|
|
// Global data.
|
|
// ------------------------------------------------------------------
|
|
|
|
|
|
// ------------------------------------------------------------------
|
|
|
|
extern glog LOG;
|
|
|
|
extern gareafile* AFILE;
|
|
extern CfgGed* CFG;
|
|
extern LangGed* LNG;
|
|
extern NodeIxl* NODE;
|
|
extern Qwk* QWK;
|
|
extern GoldedCfgEdit* EDIT;
|
|
|
|
// GCCFGG.CPP
|
|
extern bool cfgingroup;
|
|
|
|
// GCKEYS.CPP
|
|
extern CmdKey DefaultKeyset[];
|
|
|
|
// GEAREA.CPP
|
|
extern int area_pos;
|
|
extern int area_width;
|
|
extern int marked_pos;
|
|
extern int marked_width;
|
|
extern const char marked_char;
|
|
extern int desc_pos;
|
|
extern int desc_width;
|
|
extern int count_pos;
|
|
extern int count_width;
|
|
extern int pmark_pos;
|
|
extern int pmark_width;
|
|
extern const char pmark_char;
|
|
extern int unread_pos;
|
|
extern int unread_width;
|
|
extern int changed_pos;
|
|
extern int changed_width;
|
|
extern const char changed_char;
|
|
extern int echoid_pos;
|
|
extern int echoid_width;
|
|
extern int groupid_pos;
|
|
extern int groupid_width;
|
|
|
|
// GEFILE.CPP
|
|
extern int fspecs;
|
|
extern int specfiles;
|
|
extern FileSpec* fspec;
|
|
|
|
// GEMENU.CPP
|
|
extern GMsg* MenuMsgPtr;
|
|
|
|
// GEPOST.CPP
|
|
extern uint position;
|
|
extern ulong msgcount;
|
|
|
|
// GEREAD.CPP
|
|
extern int reader_finished;
|
|
extern int reader_done;
|
|
extern int reader_topline;
|
|
extern int reader_keyok;
|
|
extern int reader_direction;
|
|
extern int reader_rcv_noise;
|
|
extern gkey reader_keycode;
|
|
extern GMsgHeaderView *HeaderView;
|
|
extern GMsgBodyView *BodyView;
|
|
|
|
// Other
|
|
|
|
extern uint locpost, netpost, echopost;
|
|
|
|
extern Subj information;
|
|
|
|
extern Area* AA;
|
|
|
|
extern char m_title[];
|
|
extern int m_titlepos;
|
|
extern int m_titleattr;
|
|
|
|
extern int AreaKeys, ReadKeys, ListKeys, NodeKeys, EditKeys, FileKeys, AddressbookKeys, HeaderKeys;
|
|
extern std::list<CmdKey>::iterator AreaKey, ReadKey, ListKey, NodeKey, EditKey, FileKey, AddressbookKey, HeaderKey;
|
|
|
|
extern int inforow;
|
|
|
|
extern char goldmark;
|
|
|
|
extern int startecho;
|
|
extern Echo stecho;
|
|
|
|
extern int fieldupd;
|
|
|
|
extern int CurrArea;
|
|
extern int OrigArea;
|
|
|
|
extern Esc* MNETable;
|
|
extern Esc* I51Table;
|
|
extern Esc* CompTable;
|
|
extern Chs* CharTable;
|
|
extern EscTab* CompTP;
|
|
extern EscTab* I51TP;
|
|
extern EscTab* MNETP;
|
|
extern ChsTab* ChsTP;
|
|
|
|
//extern char gversion[];
|
|
|
|
extern bool quiet;
|
|
extern bool ignore;
|
|
extern int cfgerrors;
|
|
extern bool veryverbose;
|
|
extern bool shellvid;
|
|
extern vsavebuf* oldscreen;
|
|
|
|
extern int keysread;
|
|
|
|
extern bool disablesound;
|
|
|
|
extern int _in_editor;
|
|
extern int _in_msglist;
|
|
extern int savedirect;
|
|
|
|
extern void(*SIGINT_OldHandler)(void);
|
|
|
|
extern bool cmdlinedebughg;
|
|
extern bool cmdlineimportsoup;
|
|
extern bool cmdlineoldkeyw;
|
|
extern int cmdlinesharemode;
|
|
|
|
extern Win gold_color1[];
|
|
extern Win gold_color2[];
|
|
extern Win gold_mono1[];
|
|
|
|
extern Echo area_maybe;
|
|
|
|
extern int blanked;
|
|
|
|
extern int startupscan_success;
|
|
|
|
|
|
// ------------------------------------------------------------------
|
|
// Global compile constants
|
|
|
|
extern const char* __gver_vendor_name__;
|
|
extern const char* __gver_vendor_fido__;
|
|
extern const char* __gver_vendor_email__;
|
|
extern const char* __gver_prename__;
|
|
extern const char* __gver_preshortname__;
|
|
extern const char* __gver_name__;
|
|
extern const char* __gver_shortname__;
|
|
extern const char* __gver_shortlogname__;
|
|
extern const char* __gver_postshortname__;
|
|
extern const char* __gver_postname__;
|
|
extern const char* __gver_platform__;
|
|
extern const char* __gver_shortplatform__;
|
|
extern const char* __gver_cfgext__;
|
|
extern const char* __gver_preversion__;
|
|
extern const char* __gver_postversion__;
|
|
extern int __gver_major__;
|
|
extern int __gver_minor__;
|
|
extern int __gver_release__;
|
|
extern const char* __gver_releasename__;
|
|
extern const char* __gver_date__;
|
|
extern const char* __gver_time__;
|
|
extern const char* __gver_longpid__;
|
|
extern const char* __gver_shortpid__;
|
|
extern const char* __gver_ver__;
|
|
extern const char* __gver_shortver__;
|
|
|
|
|
|
// ------------------------------------------------------------------
|
|
|