From db9c678939bd2270ae99d02df6d8c0c856b6647f Mon Sep 17 00:00:00 2001 From: Paul Tucker Date: Wed, 6 Oct 1999 03:32:37 +0000 Subject: [PATCH] *** empty log message *** --- harbour/ChangeLog | 7 +++++ harbour/include/harbour.ch | 55 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 62 insertions(+) create mode 100644 harbour/include/harbour.ch diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 222b58791b..9e188bca6f 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -1,3 +1,10 @@ +19991005-23:20 EDT Paul Tucker + + include/harbour.ch + * This file is meant as a repository of defines or translations needed + to allow CA-Clipper to compile programs that take advantage of any + Harbour specific extensions or additions to the language. + Currently, it only handles a substitute for HB_OsNewLine() + 19991006-03:02 GMT+1 Victor Szel * include/extend.h source/rtl/arrays.c diff --git a/harbour/include/harbour.ch b/harbour/include/harbour.ch new file mode 100644 index 0000000000..957f5c041f --- /dev/null +++ b/harbour/include/harbour.ch @@ -0,0 +1,55 @@ +/* + * $id$ + */ +/* + * Harbour Project source code: + * Video subsystem for Win32 compilers + * + * Copyright 1999 Paul Tucker + * + * www - http://www.harbour-project.org + * + * 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, with one exception: + * + * The exception is that if you link the Harbour Runtime Library (HRL) + * and/or the Harbour Virtual Machine (HVM) with other files to produce + * an executable, this does not by itself cause the resulting executable + * to be covered by the GNU General Public License. Your use of that + * executable is in no way restricted on account of linking the HRL + * and/or HVM code into it. + * + * 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 (or visit + * their web site at http://www.gnu.org/). + * + */ + +/* + * NOTE: This file is meant to be included in CA-Clipper applications + * that were written to take advantage of specific Harbour extensions + * or platform dependent features. + */ + +/* + * Extend as needed + */ + +#ifndef __HARBOUR__ + +#ifndef _HARBOUR_INCLUDED +#define _HARBOUR_INCLUDED + +#xtranslate HB_OsNewLine() => Chr(13)+Chr(10) + +#endif + +#endif