2007-05-28 15:55 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/TODO
- removed some not longer valid notes
* harbour/common.mak
- removed dbgaltd.obj
* harbour/include/common.ch
+ added HB_HASH_AUTOADD_* definitions
This commit is contained in:
@@ -8,6 +8,14 @@
|
||||
2002-12-01 13:30 UTC+0100 Foo Bar <foo.bar@foobar.org>
|
||||
*/
|
||||
|
||||
2007-05-28 15:55 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
|
||||
* harbour/TODO
|
||||
- removed some not longer valid notes
|
||||
* harbour/common.mak
|
||||
- removed dbgaltd.obj
|
||||
* harbour/include/common.ch
|
||||
+ added HB_HASH_AUTOADD_* definitions
|
||||
|
||||
2007-05-28 14:00 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
|
||||
* harbour/source/debug/Makefile
|
||||
- harbour/source/debug/dbgaltd.prg
|
||||
|
||||
19
harbour/TODO
19
harbour/TODO
@@ -17,18 +17,6 @@ Status...: Open.
|
||||
|
||||
***
|
||||
|
||||
Assign to: <nobody>
|
||||
Detail...: 'SAVE TO' statement doesn't work like Clipper.
|
||||
Status...: Is it still true?
|
||||
|
||||
***
|
||||
|
||||
Assign to: <nobody>
|
||||
Detail...: Is memofile support complete?
|
||||
Status...: Is it still true?
|
||||
|
||||
***
|
||||
|
||||
Assign to: <nobody>
|
||||
Detail...: Add missing Clipper virtual memory functions.
|
||||
Status...: Open.
|
||||
@@ -53,13 +41,6 @@ Detail...: Rewrite filesys.c to use native platform specific file I/O
|
||||
are number compatible.
|
||||
Status...: Open.
|
||||
|
||||
***
|
||||
|
||||
Assign to: Ryszard
|
||||
Detail...: Optimize out the need for the PUSHNIL opcode before each
|
||||
function call.
|
||||
Status...: Open.
|
||||
|
||||
|
||||
=======================================================================
|
||||
Tasks for after v.1 release:
|
||||
|
||||
@@ -545,7 +545,6 @@ DEBUG_LIB_OBJS = \
|
||||
$(OBJ_DIR)\dbgtarr.obj \
|
||||
$(OBJ_DIR)\dbgtobj.obj \
|
||||
$(OBJ_DIR)\dbgthsh.obj \
|
||||
$(OBJ_DIR)\dbgaltd.obj \
|
||||
$(OBJ_DIR)\tbrwtext.obj \
|
||||
$(OBJ_DIR)\dbgwa.obj \
|
||||
|
||||
|
||||
@@ -84,4 +84,11 @@
|
||||
/* Please keep it synced with the similar #define in hbclass.ch */
|
||||
#define HB_SYMBOL_UNUSED( symbol ) ( symbol := ( symbol ) )
|
||||
|
||||
/* HASH autoadd options */
|
||||
#define HB_HASH_AUTOADD_NEVER 0x00
|
||||
#define HB_HASH_AUTOADD_ACCESS 0x01
|
||||
#define HB_HASH_AUTOADD_ASSIGN 0x02
|
||||
#define HB_HASH_AUTOADD_ALWAYS ( HB_HASH_AUTOADD_ACCESS + HB_HASH_AUTOADD_ASSIGN )
|
||||
#define HB_HASH_AUTOADD_REFERENCE HB_HASH_AUTOADD_ALWAYS
|
||||
|
||||
#endif /* HB_COMMON_CH_ */
|
||||
|
||||
Reference in New Issue
Block a user