See ChangeLog entry 19990617-02:15 EDT David G. Holm <dholm@jsd-llc.com>

This commit is contained in:
David G. Holm
1999-06-17 07:20:46 +00:00
parent 4c975027ea
commit b792edd136
4 changed files with 60 additions and 4 deletions

View File

@@ -1,3 +1,11 @@
19990617-02:15 EDT David G. Holm <dholm@jsd-llc.com>
* include/extend.api
- Moved fixed memory functions to fm.api
+ include/fm.api
- Fixed memory API functions (converts _x... to hb_x...)
+ include/item.api
- Item API functions (converts _item... to hb_item..., etc.)
19990617-02:00 EDT David G. Holm <dholm@jsd-llc.com>
All Extend API and GT API functions have been convert from _ to hb_
* include/compiler.h

View File

@@ -31,8 +31,4 @@
#define _storni hb_storni
#define _stornl hb_stornl
#define _xgrab hb_xgrab
#define _xrealloc hb_xrealloc
#define _xfree hb_xfree
#endif

10
harbour/include/fm.api Normal file
View File

@@ -0,0 +1,10 @@
#ifndef __FM_API
#define __FM_API
#include <extend.h>
#define _xgrab hb_xgrab
#define _xrealloc hb_xrealloc
#define _xfree hb_xfree
#endif

42
harbour/include/item.api Normal file
View File

@@ -0,0 +1,42 @@
#ifndef __ITEM_API
#define __ITEM_API
#include <extend.h>
#define _arrayNew ArrayNew
#define _arrayLen ArrayLen
#define _arrayGet ArrayGet
#define _arrayPut ArraySet
#define _arrayResize ArraySize
#define _arrayGetC ArrayGetString
#define _arrayGetCL ArrayGetStringLen
#define _evalLaunch hb_evalLaunch
#define _evalNew hb_evalNew
#define _evalPutParam hb_evalPutParam
#define _evalRelease hb_evalRelease
#define _itemArrayGet hb_itemArrayGet
#define _itemArrayNew hb_itemArrayNew
#define _itemArrayPut hb_itemArrayPut
#define _itemCopyC hb_itemCopyC
#define _itemFreeC hb_itemFreeC
#define _itemGetC hb_itemGetC
#define _itemGetDS hb_itemGetDS
#define _itemGetL hb_itemGetL
#define _itemGetND hb_itemGetND
#define _itemGetNL hb_itemGetNL
#define _itemNew hb_itemNew
#define _itemParam hb_itemParam
#define _itemPutC hb_itemPutC
#define _itemPutCL hb_itemPutCL
#define _itemPutDS hb_itemPutDS
#define _itemPutL hb_itemPutL
#define _itemPutND hb_itemPutND
#define _itemPutNL hb_itemPutNL
#define _itemRelease hb_itemRelease
#define _itemReturn hb_itemReturn
#define _itemSize hb_itemSize
#define _itemType hb_itemType
#endif