*** empty log message ***

This commit is contained in:
Paul Tucker
1999-10-06 03:32:37 +00:00
parent ca9e8d717f
commit db9c678939
2 changed files with 62 additions and 0 deletions

View File

@@ -1,3 +1,10 @@
19991005-23:20 EDT Paul Tucker <ptucker@sympatico.ca>
+ 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 <info@szelvesz.hu>
* include/extend.h
source/rtl/arrays.c

View File

@@ -0,0 +1,55 @@
/*
* $id$
*/
/*
* Harbour Project source code:
* Video subsystem for Win32 compilers
*
* Copyright 1999 Paul Tucker <ptucker@sympatico.ca>
*
* 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