2008-09-24 17:58 UTC+0200 Viktor Szakats (harbour.01 syenar hu)

* utils/hbrun/hbrun.prg
    + Added REQUESTs for GTSTD, GTCGI, GTPCA (these GTs are 
      available on all platforms).
    % Removed explicit GT defaulting logic (now identical to 
      the one in RTL).
This commit is contained in:
Viktor Szakats
2008-09-24 15:59:28 +00:00
parent cb7b1a831c
commit a5a960784d
2 changed files with 13 additions and 17 deletions

View File

@@ -8,6 +8,13 @@
2008-12-31 13:59 UTC+0100 Foo Bar (foo.bar foobar.org)
*/
2008-09-24 17:58 UTC+0200 Viktor Szakats (harbour.01 syenar hu)
* utils/hbrun/hbrun.prg
+ Added REQUESTs for GTSTD, GTCGI, GTPCA (these GTs are
available on all platforms).
% Removed explicit GT defaulting logic (now identical to
the one in RTL).
2008-09-24 16:18 UTC+0200 Viktor Szakats (harbour.01 syenar hu)
* source/vm/fm.c
+ Enabled dlmalloc (HB_FM_DL_ALLOC) for MSVC, BCC and MINGW builds.

View File

@@ -61,11 +61,16 @@
REQUEST __HB_EXTERN__
REQUEST HB_GT_CGI
REQUEST HB_GT_PCA
REQUEST HB_GT_STD
#define HB_HISTORY_LEN 32
#define HB_LINE_LEN 256
#define HB_PROMPT "."
STATIC s_nRow := 2, s_nCol := 0
STATIC s_nRow := 2
STATIC s_nCol := 0
STATIC s_aIncDir := {}
/* ********************************************************************** */
@@ -297,19 +302,3 @@ FUNCTION HBRawVersion()
RETURN StrTran( Version(), "Harbour ", "" )
/* ********************************************************************** */
/* request for full screen GT driver */
#if defined( __PLATFORM__WINCE )
REQUEST HB_GT_WVT_DEFAULT
#elif defined( __PLATFORM__WINDOWS )
REQUEST HB_GT_WIN_DEFAULT
#elif defined( __PLATFORM__UNIX )
REQUEST HB_GT_TRM_DEFAULT
#elif defined( __PLATFORM__DOS )
REQUEST HB_GT_DOS_DEFAULT
#elif defined( __PLATFORM__OS2 )
REQUEST HB_GT_OS2_DEFAULT
#endif
/* ********************************************************************** */