2000-02-25 11:04:07 +00:00
|
|
|
|
|
|
|
// ------------------------------------------------------------------
|
|
|
|
// 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$
|
|
|
|
// ------------------------------------------------------------------
|
|
|
|
// Main include file. (For precompiled headers)
|
|
|
|
// ------------------------------------------------------------------
|
|
|
|
|
|
|
|
#ifndef __GOLDED_H
|
|
|
|
#define __GOLDED_H
|
|
|
|
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------
|
|
|
|
// Standard library headers
|
|
|
|
|
|
|
|
#include <csignal>
|
|
|
|
#include <iostream>
|
2006-10-04 19:05:51 +00:00
|
|
|
#if defined(__GNUC__)
|
|
|
|
#if __GNUC__ > 2
|
|
|
|
#include <sstream>
|
|
|
|
#endif
|
|
|
|
#elif defined(_MSC_VER)
|
|
|
|
#include <sstream>
|
|
|
|
#endif
|
2000-02-25 11:04:07 +00:00
|
|
|
#include <iomanip>
|
|
|
|
// Wrappers for certain mostly DOS/Borland headers
|
|
|
|
#include <gshare.h>
|
|
|
|
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------
|
|
|
|
// Goldware Library headers
|
|
|
|
|
|
|
|
#include <gdefs.h>
|
2006-05-14 16:51:32 +00:00
|
|
|
#include <gstrall.h>
|
2000-02-25 11:04:07 +00:00
|
|
|
#include <gcrcall.h>
|
|
|
|
#include <gdbgerr.h>
|
|
|
|
#include <gmemdbg.h>
|
|
|
|
#include <gdbgtrk.h>
|
|
|
|
#include <gfile.h>
|
|
|
|
#include <gfilutil.h>
|
|
|
|
#include <gftnall.h>
|
|
|
|
#include <gkbdbase.h>
|
|
|
|
#include <gkbdcode.h>
|
|
|
|
#include <glog.h>
|
|
|
|
#include <gmemall.h>
|
|
|
|
#include <gmoubase.h>
|
|
|
|
#include <gmsgattr.h>
|
|
|
|
#include <gprnall.h>
|
|
|
|
#include <gsearch.h>
|
|
|
|
#include <gstrbags.h>
|
|
|
|
#include <gtimall.h>
|
|
|
|
#include <gtxtpara.h>
|
|
|
|
#include <gutlgrp.h>
|
|
|
|
#include <gutlmisc.h>
|
|
|
|
#include <gutlmtsk.h>
|
|
|
|
#include <gutltag.h>
|
|
|
|
#include <gvidall.h>
|
|
|
|
#include <gwildmat.h>
|
|
|
|
#include <gwinall.h>
|
|
|
|
#include <gwinhelp.h>
|
|
|
|
#include <gwinpick.h>
|
2005-11-28 20:06:38 +00:00
|
|
|
#include <gespell.h>
|
2000-02-25 11:04:07 +00:00
|
|
|
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------
|
|
|
|
// GoldED specific headers
|
2006-05-14 16:51:32 +00:00
|
|
|
#include <gehelp.h>
|
|
|
|
#include <gekeys.h>
|
|
|
|
#include <gelang.h>
|
|
|
|
#include <gmarea.h>
|
|
|
|
#include <gecfgg.h>
|
2000-02-25 11:04:07 +00:00
|
|
|
|
|
|
|
#include <geqwks.h>
|
|
|
|
#include <gectnr.h>
|
|
|
|
#include <geview.h>
|
|
|
|
#include <geglob.h>
|
|
|
|
#include <geprot.h>
|
|
|
|
#include <gemnus.h>
|
|
|
|
#include <gefn.h>
|
2006-05-14 14:33:21 +00:00
|
|
|
#include "gehelp.h"
|
2000-02-25 11:04:07 +00:00
|
|
|
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------
|