Files
harbour-core/harbour/source/rtl/version.c
Viktor Szakats df0a70e6be 2008-10-28 01:52 UTC+0200 Viktor Szakats (harbour.01 syenar hu)
* include/Makefile
  * include/hbextern.ch
  + include/hbver.ch
  * source/rtl/version.c
    + Added HB_VERSION() unified version information 
      function. This can return these version related data:
      hb_version( HB_V_HARBOUR )        => <string>
      hb_version( HB_V_COMPILER )       => <string> 
      hb_version( HB_V_MAJOR )          => <num> 
      hb_version( HB_V_MINOR )          => <num> 
      hb_version( HB_V_REV )            => <num> 
      hb_version( HB_V_STATUS )         => <string> 
      hb_version( HB_V_COUNT )          => <num> 
      hb_version( HB_V_DATE_TIME )      => <string> 
      hb_version( HB_V_DATE )           => <date> 
      hb_version( HB_V_TIME )           => <string>
      hb_version( HB_V_PCODE )          => <num> 
      hb_version( HB_V_PCODE_STR )      => <string> 
      hb_version( HB_V_CHANGELOG_LAST ) => <string> 
      hb_version( HB_V_CHANGELOG_REV )  => <string> 
      hb_version( HB_V_FLAG_HARBOUR )   => <string> 
      hb_version( HB_V_FLAG_C )         => <string> 
      hb_version( HB_V_FLAG_LINKER )    => <string> 
      hb_version( HB_V_BITWIDTH )       => <num> 
      hb_version( HB_V_ENDIANNESS )     => <num> 
      This function makes deprecated following functions:
      - HB_COMPILER() => hb_version( HB_V_COMPILER )
      - HB_PCODEVER() => hb_version( HB_V_PCODE_VER_STR )
      - HB_BUILDDATE() => hb_version( HB_V_DATE_TIME )
      and macros:
      - __ARCH16BIT__
      - __ARCH32BIT__
      - __ARCH64BIT__
      - __LITTLE_ENDIAN__
      - __BIG_ENDIAN__
      - __PDP_ENDIAN__
    ; NOTE: If there are no objections, I'd remove the 
            __ARCH*BIT__ and __*ENDIAN__ predefined macros, 
            as these can be misleading on some systems.
    ; TODO: Implement HB_V_DATE and HB_V_TIME.
    ; TODO: Add HB_MTVM() functionality.
    ; TODO: Add __PLATFORM__* equivalent.
    ; TODO: Add HB_OS_UNIX_COMPATIBLE equivalent.

  * include/hbextern.ch
  * include/hbapifs.h
  * common.mak
  * source/rtl/Makefile
  + source/rtl/fscopy.c
    + Added C level hb_fsCopy() function.
    + Added .prg level HB_FCOPY() function.
2008-10-28 02:20:23 +00:00

142 lines
4.6 KiB
C

/*
* $Id$
*/
/*
* Harbour Project source code:
* OS(), VERSION(), HB_COMPILER() functions
*
* Copyright 1999 {list of individual authors and e-mail addresses}
* 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, 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 software; see the file COPYING. If not, write to
* the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
* Boston, MA 02111-1307 USA (or visit the web site http://www.gnu.org/).
*
* As a special exception, the Harbour Project gives permission for
* additional uses of the text contained in its release of Harbour.
*
* The exception is that, if you link the Harbour libraries 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 Harbour library code into it.
*
* This exception does not however invalidate any other reasons why
* the executable file might be covered by the GNU General Public License.
*
* This exception applies only to the code released by the Harbour
* Project under the name Harbour. If you copy code from other
* Harbour Project or Free Software Foundation releases into a copy of
* Harbour, as the General Public License permits, the exception does
* not apply to the code that you add in this way. To avoid misleading
* anyone as to the status of such modified files, you must delete
* this exception notice from them.
*
* If you write modifications of your own for Harbour, it is your choice
* whether to permit this exception to apply to your modifications.
* If you do not wish that, delete this exception notice.
*
*/
/*
* The following parts are Copyright of the individual authors.
* www - http://www.harbour-project.org
*
* Copyright 1999-2008 Viktor Szakats <viktor.szakats@syenar.hu>
* HB_VERSION(), HB_COMPILER()
*
* See doc/license.txt for licensing terms.
*
*/
#include "hbapi.h"
#include "hbver.ch"
HB_FUNC( OS )
{
hb_retc_buffer( hb_verPlatform() );
}
HB_FUNC( VERSION )
{
hb_retc_buffer( hb_verHarbour() );
}
HB_FUNC( HB_VERSION )
{
switch( hb_parni( 1 ) )
{
case HB_V_HARBOUR: hb_retc_buffer( hb_verHarbour() ); break;
case HB_V_COMPILER: hb_retc_buffer( hb_verCompiler() ); break;
case HB_V_VER_MAJOR: hb_retni( HB_VER_MAJOR ); break;
case HB_V_VER_MINOR: hb_retni( HB_VER_MINOR ); break;
case HB_V_VER_REV: hb_retni( HB_VER_REVISION ); break;
case HB_V_VER_STATUS: hb_retc( HB_VER_STATUS ); break;
case HB_V_VER_COUNT: hb_retni( hb_verSvnID() ); break;
case HB_V_DATE_TIME: hb_retc_buffer( hb_verBuildDate() ); break;
case HB_V_DATE: hb_retds( NULL ); break; /* TODO */
case HB_V_TIME: hb_retc( NULL ); break; /* TODO */
case HB_V_PCODE_VER: hb_retni( HB_PCODE_VER ); break;
case HB_V_PCODE_VER_STR: hb_retc_buffer( hb_verPCode() ); break;
case HB_V_CHANGELOG_LAST: hb_retc_const( hb_verSvnLastEntry() ); break;
case HB_V_CHANGELOG_REV: hb_retc_const( hb_verSvnChangeLogID() ); break;
case HB_V_FLAG_HARBOUR: hb_retc_const( hb_verFlagsPRG() ); break;
case HB_V_FLAG_C: hb_retc_const( hb_verFlagsC() ); break;
case HB_V_FLAG_LINKER: hb_retc_const( hb_verFlagsL() ); break;
case HB_V_BITWIDTH:
#if defined( HB_ARCH_16BIT )
hb_retni( 16 );
#elif defined( HB_ARCH_32BIT )
hb_retni( 32 );
#elif defined( HB_ARCH_64BIT )
hb_retni( 64 );
#else
hb_retni( 0 );
#endif
break;
case HB_V_ENDIANNESS:
#if defined( HB_LITTLE_ENDIAN )
hb_retni( HB_V_ENDIAN_LITTLE );
#elif defined( HB_BIG_ENDIAN )
hb_retni( HB_V_ENDIAN_BIG );
#elif defined( HB_PDP_ENDIAN )
hb_retni( HB_V_ENDIAN_PDP );
#else
hb_retni( 0 );
#endif
break;
}
}
/* Legacy functions */
HB_FUNC( HB_COMPILER )
{
hb_retc_buffer( hb_verCompiler() );
}
HB_FUNC( HB_PCODEVER )
{
hb_retc_buffer( hb_verPCode() );
}
HB_FUNC( HB_BUILDDATE )
{
hb_retc_buffer( hb_verBuildDate() );
}