This commit is contained in:
2008-07-21 21:49:09 +00:00
parent b212e413bd
commit a2d5d649ba
6 changed files with 49 additions and 44 deletions

View File

@ -1,5 +1,5 @@
/*
* $Id: awk.h 271 2008-07-20 12:42:39Z baconevi $
* $Id: awk.h 278 2008-07-21 03:49:09Z baconevi $
*
* {License}
*/
@ -603,7 +603,9 @@ ase_awk_t* ase_awk_open (
/* memory manager */
ase_mmgr_t* mmgr,
/* size of extension area to allocate in bytes */
unsigned int extension
ase_size_t extension,
/* memory manager fuser */
ase_fuser_t mmgr_fuser
);
/*

View File

@ -147,8 +147,8 @@
/* The size of `short', as computed by sizeof. */
#undef SIZEOF_SHORT
/* The size of `void*', as computed by sizeof. */
#undef SIZEOF_VOIDP
/* The size of `void *', as computed by sizeof. */
#undef SIZEOF_VOID_P
/* The size of `wchar_t', as computed by sizeof. */
#undef SIZEOF_WCHAR_T

View File

@ -1,5 +1,5 @@
/*
* $Id: types.h 225 2008-06-26 06:48:38Z baconevi $
* $Id: types.h 278 2008-07-21 03:49:09Z baconevi $
*
* {License}
*/
@ -314,6 +314,10 @@ typedef int ase_mcint_t;
#endif
#endif
/* a fuser should fuse(copy and combine) the orginal data into the given space
* and return the pointer to its new location in the space */
typedef void* (*ase_fuser_t) (void* org, void* space, ase_size_t size);
typedef struct ase_cstr_t ase_cstr_t;
typedef struct ase_mmgr_t ase_mmgr_t;
typedef struct ase_ccls_t ase_ccls_t;