2000-07-28 00:18 UTC+0500 April White <awhite@user.rose.com>

* include/hbapi.h
     * fixed comment for hb_xgrab() declaration (was 'exists' now 'exits')

   * doc/en
     + hbapi.txt
     + hbapierr.txt
     + hbapifs.txt
     + hbapigt.txt
     + hbapiitm.txt
     + hbapilng.txt
     + hbapirdd.txt
     + hbdate.txt
     + hbmacro.txt
     + hbset.txt
     + hbvm.txt
     + hbcompat.txt

   * doc/genhtm.rsp
     + entries for above
This commit is contained in:
April White
2000-07-28 01:20:12 +00:00
parent 6c77f49ebc
commit 650485eeeb
5 changed files with 11709 additions and 1 deletions

6955
harbour/doc/en/hbapi.txt Normal file

File diff suppressed because it is too large Load Diff

4665
harbour/doc/en/hbcompat.txt Normal file

File diff suppressed because it is too large Load Diff

75
harbour/doc/en/hbset.txt Normal file
View File

@@ -0,0 +1,75 @@
/*
* $Id$
*/
/*
* The following parts are Copyright of the individual authors.
* www - http://www.harbour-project.org
*
* Copyright 1999 David G. Holm <dholm@jsd-llc.com>
* Header file for the Set API
*
* See doc/license.txt for licensing terms.
*
*/
/* $DOC$
* $FUNCNAME$
* hb_setInitialize
* $CATEGORY$
* Set API
* $ONELINER$
*
* $SYNTAX$
* hb_setInitialize( void ) --> void
* $ARGUMENTS$
*
* $RETURNS$
*
* $DESCRIPTION$
*
* $EXAMPLES$
*
* $STATUS$
* R
* $COMPLIANCE$
* Compliance is not applicable to API calls.
* $FILES$
* Library is rtl
* $PLATFORMS$
* All
* $SEEALSO$
*
* $END$
*/
/* $DOC$
* $FUNCNAME$
* hb_setRelease
* $CATEGORY$
* Set API
* $ONELINER$
*
* $SYNTAX$
* hb_setRelease( void ) --> void
* $ARGUMENTS$
*
* $RETURNS$
*
* $DESCRIPTION$
*
* $EXAMPLES$
*
* $STATUS$
* R
* $COMPLIANCE$
* Compliance is not applicable to API calls.
* $FILES$
* Library is rtl
* $PLATFORMS$
* All
* $SEEALSO$
*
* $END$
*/

View File

@@ -39,4 +39,17 @@ en\setmode.txt
en\eval.txt
en\sayget.txt
en\strotype.txt
<<<<<<< genhtm.rsp
en\hbapi.txt
en\hbapierr.txt
en\hbapifs.txt
en\hbapigt.txt
en\hbapiitm.txt
en\hbapilng.txt
en\hbapirdd.txt
en\hbdate.txt
en\hbmacro.txt
en\hbset.txt
en\hbvm.txt
en\hbcompat.txt
en\garbage.txt

View File

@@ -324,7 +324,7 @@ extern void hb_stornd( double dValue, int iParam, ... ); /* stores a double
extern void hb_xinit( void ); /* Initialize fixed memory subsystem */
extern void hb_xexit( void ); /* Deinitialize fixed memory subsystem */
extern void * hb_xalloc( ULONG ulSize ); /* allocates memory, returns NULL on failure */
extern void * hb_xgrab( ULONG ulSize ); /* allocates memory, exists on failure */
extern void * hb_xgrab( ULONG ulSize ); /* allocates memory, exits on failure */
extern void hb_xfree( void * pMem ); /* frees memory */
extern void * hb_xrealloc( void * pMem, ULONG ulSize ); /* reallocates memory */
extern ULONG hb_xsize( void * pMem ); /* returns the size of an allocated memory block */