From eb8beff0d06ff13821616f78f45d6f33b5200c96 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Mon, 4 Oct 1999 16:58:44 +0000 Subject: [PATCH] 19991004-18:42 GMT+1 --- harbour/ChangeLog | 23 +++++++++++++++++--- harbour/include/{classes.ch => hbclass.ch} | 0 harbour/include/{external.ch => hbextern.ch} | 0 harbour/include/{memvars.ch => hbmemvar.ch} | 0 harbour/source/debug/debugger.prg | 4 ++-- harbour/source/debug/tbrwtext.prg | 2 +- harbour/source/rtl/memvarbl.prg | 2 +- harbour/source/rtl/menuto.prg | 2 +- harbour/source/rtl/tbcolumn.prg | 2 +- harbour/source/rtl/tbrowse.prg | 2 +- harbour/source/rtl/tget.prg | 2 +- harbour/source/rtl/tgetlist.prg | 2 +- harbour/tests/working/classch.prg | 4 ++-- 13 files changed, 31 insertions(+), 14 deletions(-) rename harbour/include/{classes.ch => hbclass.ch} (100%) rename harbour/include/{external.ch => hbextern.ch} (100%) rename harbour/include/{memvars.ch => hbmemvar.ch} (100%) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 08236c04d8..ac92a8b92d 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -1,8 +1,25 @@ +19991004-18:42 GMT+1 Victor Szel + * include/classes.ch -> include/hbclass.ch + include/external.ch -> include/hbextern.ch + include/memvars.ch -> include/hbmemvar.ch + source/debug/debugger.prg + source/debug/tbrwtext.prg + source/rtl/tbcolumn.prg + source/rtl/tbrowse.prg + source/rtl/tget.prg + source/rtl/tgetlist.prg + tests/working/classch.prg + source/runner/stdalone/hbrun.prg + source/rtl/memvarbl.prg + source/rtl/menuto.prg + * Non-Clipper compatible Harbour .CH filenames prefixed with "HB" to avoid + possible name collisions with existing header files. + 19991004-18:06 GMT+1 Victor Szel + source/rtl/mlcount.c source/rtl/Makefile doc/funclist.txt - + MLCOUNT() added + + MLCOUNT() added (thanks to Ignacio Ortiz de Zúniga ) - source/runner/stdalone/runner.prg - Removed (now for sure) @@ -39,7 +56,7 @@ * libs directory name changed to lib, the win16 and win32 subdirs have been removed. * win32 dir is no longer needed, since now the windows terminal.lib - is named termwin.lib. + is named termwin.lib. ! HARBOUR_USE_GTAPI defines changed to HARBOUR_USE_WIN_GTAPI ; !!! PLEASE TEST THESE WITH BORLAND AND MSVC !!! (or wait a bit more since more changes are coming) @@ -233,7 +250,7 @@ NOTE: You have to recompile all PRG sources! * the basic documentation for harbour compiler *source/rtl/console.c - * hb_cursor_enum -> HB_cursor_enum + * hb_cursor_enum -> HB_cursor_enum 19991001-00:25 EDT Paul Tucker * makefile.vc diff --git a/harbour/include/classes.ch b/harbour/include/hbclass.ch similarity index 100% rename from harbour/include/classes.ch rename to harbour/include/hbclass.ch diff --git a/harbour/include/external.ch b/harbour/include/hbextern.ch similarity index 100% rename from harbour/include/external.ch rename to harbour/include/hbextern.ch diff --git a/harbour/include/memvars.ch b/harbour/include/hbmemvar.ch similarity index 100% rename from harbour/include/memvars.ch rename to harbour/include/hbmemvar.ch diff --git a/harbour/source/debug/debugger.prg b/harbour/source/debug/debugger.prg index 8644b37ebf..642005228e 100644 --- a/harbour/source/debug/debugger.prg +++ b/harbour/source/debug/debugger.prg @@ -33,10 +33,10 @@ * */ +#include "hbclass.ch" +#include "hbmemvar.ch" #include "box.ch" -#include "classes.ch" #include "inkey.ch" -#include "memvars.ch" #include "common.ch" #xcommand MENU [] => [ := ] TDbMenu():New() diff --git a/harbour/source/debug/tbrwtext.prg b/harbour/source/debug/tbrwtext.prg index 69b22d3fa2..f81de3e48e 100644 --- a/harbour/source/debug/tbrwtext.prg +++ b/harbour/source/debug/tbrwtext.prg @@ -33,7 +33,7 @@ * */ -#include "classes.ch" +#include "hbclass.ch" #include "common.ch" #include "fileio.ch" diff --git a/harbour/source/rtl/memvarbl.prg b/harbour/source/rtl/memvarbl.prg index 1fab6314ae..33dd817530 100644 --- a/harbour/source/rtl/memvarbl.prg +++ b/harbour/source/rtl/memvarbl.prg @@ -34,7 +34,7 @@ */ #include "common.ch" -#include "memvars.ch" +#include "hbmemvar.ch" /* $DOC$ * $FUNCNAME$ diff --git a/harbour/source/rtl/menuto.prg b/harbour/source/rtl/menuto.prg index f8740bed18..448e2fb0e5 100644 --- a/harbour/source/rtl/menuto.prg +++ b/harbour/source/rtl/menuto.prg @@ -27,7 +27,7 @@ #include "color.ch" #include "common.ch" #include "inkey.ch" -#include "memvars.ch" +#include "hbmemvar.ch" #include "setcurs.ch" static aLevel := {} diff --git a/harbour/source/rtl/tbcolumn.prg b/harbour/source/rtl/tbcolumn.prg index 6b5082e627..00df8e458f 100644 --- a/harbour/source/rtl/tbcolumn.prg +++ b/harbour/source/rtl/tbcolumn.prg @@ -33,7 +33,7 @@ * */ -#include "classes.ch" +#include "hbclass.ch" #include "common.ch" CLASS TBColumn diff --git a/harbour/source/rtl/tbrowse.prg b/harbour/source/rtl/tbrowse.prg index 2ea38dedb4..c245cd59da 100644 --- a/harbour/source/rtl/tbrowse.prg +++ b/harbour/source/rtl/tbrowse.prg @@ -33,7 +33,7 @@ * */ -#include "classes.ch" +#include "hbclass.ch" #include "color.ch" CLASS TBrowse diff --git a/harbour/source/rtl/tget.prg b/harbour/source/rtl/tget.prg index 4f1d9f00ff..b20b16572c 100644 --- a/harbour/source/rtl/tget.prg +++ b/harbour/source/rtl/tget.prg @@ -33,7 +33,7 @@ * */ -#include "classes.ch" +#include "hbclass.ch" #include "color.ch" #include "common.ch" diff --git a/harbour/source/rtl/tgetlist.prg b/harbour/source/rtl/tgetlist.prg index 622583e0ca..d7dea10d00 100644 --- a/harbour/source/rtl/tgetlist.prg +++ b/harbour/source/rtl/tgetlist.prg @@ -33,7 +33,7 @@ * */ -#include "classes.ch" +#include "hbclass.ch" #include "common.ch" #include "getexit.ch" #include "inkey.ch" diff --git a/harbour/tests/working/classch.prg b/harbour/tests/working/classch.prg index 0db746bea3..d4bfd61e08 100644 --- a/harbour/tests/working/classch.prg +++ b/harbour/tests/working/classch.prg @@ -2,9 +2,9 @@ // $Id$ // -// Testing Harbour classes.ch commands +// Testing Harbour hbclass.ch commands -#include "classes.ch" +#include "hbclass.ch" //--------------------------------------------------------------------//