2011-01-20 18:48 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)

* contrib/hbmxml/hbmxml.hbx
    ! Updated.

  * contrib/hblzf/hblzf.hbp
  + contrib/hblzf/hblzf.hbx
  + contrib/hblzf/hblzfx.prg
  * contrib/hbxdiff/hbxdiff.hbp
  + contrib/hbxdiff/hbxdiff.hbx
  + contrib/hbxdiff/hbxdiffx.prg
    + Added extern puller parts.
This commit is contained in:
Viktor Szakats
2011-01-20 17:48:37 +00:00
parent 076030bc1a
commit 68cd610785
8 changed files with 214 additions and 2 deletions

View File

@@ -16,6 +16,18 @@
The license applies to all entries newer than 2009-04-28.
*/
2011-01-20 18:48 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)
* contrib/hbmxml/hbmxml.hbx
! Updated.
* contrib/hblzf/hblzf.hbp
+ contrib/hblzf/hblzf.hbx
+ contrib/hblzf/hblzfx.prg
* contrib/hbxdiff/hbxdiff.hbp
+ contrib/hbxdiff/hbxdiff.hbx
+ contrib/hbxdiff/hbxdiffx.prg
+ Added extern puller parts.
2011-01-20 18:28 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)
* package/harbour.spec
* package/harbour-win.spec.in

View File

@@ -19,5 +19,6 @@
-instfile=inc:hblzf.ch
hblzf.c
hblzfx.prg
3rd/liblzf/lzf.hbc{HBMK_HAS_LZF_LOCAL}

View File

@@ -0,0 +1,39 @@
/*
* $Id$
*/
/* -------------------------------------------------------------------- */
/* NOTE: You can add manual override which functions to include or */
/* exclude from automatically generated EXTERNAL/DYNAMIC list. */
/* Syntax: // HB_FUNC_INCLUDE <func> */
/* // HB_FUNC_EXCLUDE <func> */
/* -------------------------------------------------------------------- */
/* -------------------------------------------------------------------- */
/* WARNING: Automatically generated code below. DO NOT EDIT! */
/* Regenerate with HB_REBUILD_EXTERN=yes while using GCC */
/* compiler family. [vszakats] */
/* -------------------------------------------------------------------- */
#ifndef __HBEXTERN_CH__HBLZF__
#define __HBEXTERN_CH__HBLZF__
#ifdef __HBEXTERN__HBLZF__ANNOUNCE
ANNOUNCE __HBEXTERN__HBLZF__
#endif
#ifdef __HBEXTERN__HBLZF__REQUEST
#command DYNAMIC <fncs,...> => EXTERNAL <fncs>
#endif
DYNAMIC HB_LZF_COMPRESS
DYNAMIC HB_LZF_COMPRESSBOUND
DYNAMIC HB_LZF_DECOMPRESS
DYNAMIC HB_LZF_OPTIMIZED_FOR_SPEED
DYNAMIC HB_LZF_VERSION
#ifdef __HBEXTERN__HBLZF__REQUEST
#uncommand DYNAMIC <fncs,...> => EXTERNAL <fncs>
#endif
#endif

View File

@@ -0,0 +1,55 @@
/*
* $Id$
*/
/*
* Harbour Project source code:
* extern puller
*
* Copyright 2011 Viktor Szakats (harbour.01 syenar.hu)
* www - http://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.
*
*/
#define __HBEXTERN__HBLZF__ANNOUNCE
#define __HBEXTERN__HBLZF__REQUEST
#include "hblzf.hbx"

View File

@@ -26,6 +26,9 @@
#command DYNAMIC <fncs,...> => EXTERNAL <fncs>
#endif
DYNAMIC HB_MXMLGETATTRS
DYNAMIC HB_MXMLGETATTRSARRAY
DYNAMIC HB_MXMLGETATTRSCOUNT
DYNAMIC HB_MXMLVERSION
DYNAMIC MXMLADD
DYNAMIC MXMLDELETE
@@ -69,9 +72,7 @@ DYNAMIC MXMLNEWREAL
DYNAMIC MXMLNEWTEXT
DYNAMIC MXMLNEWTEXTF
DYNAMIC MXMLNEWXML
DYNAMIC MXMLRELEASE
DYNAMIC MXMLREMOVE
DYNAMIC MXMLRETAIN
DYNAMIC MXMLSAVEALLOCSTRING
DYNAMIC MXMLSAVEFILE
DYNAMIC MXMLSAVESTRING

View File

@@ -19,5 +19,6 @@
-instfile=inc:hbxdiff.ch
hbxdiff.c
hbxdiffx.prg
3rd/libxdiff/xdiff.hbc{HBMK_HAS_XDIFF_LOCAL}

View File

@@ -0,0 +1,48 @@
/*
* $Id$
*/
/* -------------------------------------------------------------------- */
/* NOTE: You can add manual override which functions to include or */
/* exclude from automatically generated EXTERNAL/DYNAMIC list. */
/* Syntax: // HB_FUNC_INCLUDE <func> */
/* // HB_FUNC_EXCLUDE <func> */
/* -------------------------------------------------------------------- */
/* -------------------------------------------------------------------- */
/* WARNING: Automatically generated code below. DO NOT EDIT! */
/* Regenerate with HB_REBUILD_EXTERN=yes while using GCC */
/* compiler family. [vszakats] */
/* -------------------------------------------------------------------- */
#ifndef __HBEXTERN_CH__HBXDIFF__
#define __HBEXTERN_CH__HBXDIFF__
#ifdef __HBEXTERN__HBXDIFF__ANNOUNCE
ANNOUNCE __HBEXTERN__HBXDIFF__
#endif
#ifdef __HBEXTERN__HBXDIFF__REQUEST
#command DYNAMIC <fncs,...> => EXTERNAL <fncs>
#endif
DYNAMIC XDL_BDIFF
DYNAMIC XDL_BDIFF_TGSIZE
DYNAMIC XDL_BPATCH
DYNAMIC XDL_DIFF
DYNAMIC XDL_INIT_MMFILE
DYNAMIC XDL_MMFILE_CMP
DYNAMIC XDL_MMFILE_COMPACT
DYNAMIC XDL_MMFILE_ISCOMPACT
DYNAMIC XDL_MMFILE_SIZE
DYNAMIC XDL_PATCH
DYNAMIC XDL_RABDIFF
DYNAMIC XDL_READ_MMFILE
DYNAMIC XDL_SEEK_MMFILE
DYNAMIC XDL_WRITE_MMFILE
#ifdef __HBEXTERN__HBXDIFF__REQUEST
#uncommand DYNAMIC <fncs,...> => EXTERNAL <fncs>
#endif
#endif

View File

@@ -0,0 +1,55 @@
/*
* $Id$
*/
/*
* Harbour Project source code:
* extern puller
*
* Copyright 2011 Viktor Szakats (harbour.01 syenar.hu)
* www - http://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.
*
*/
#define __HBEXTERN__HBXDIFF__ANNOUNCE
#define __HBEXTERN__HBXDIFF__REQUEST
#include "hbxdiff.hbx"