2009-06-25 20:12 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* source/common/hbhash.c
! Fixed error in prev commit.
(strange that MSVC didn't complain)
* mpkg_win.nsi
+ Added comment that this file shouldn't be used directly.
This commit is contained in:
@@ -17,6 +17,14 @@
|
||||
past entries belonging to author(s): Viktor Szakats.
|
||||
*/
|
||||
|
||||
2009-06-25 20:12 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
|
||||
* source/common/hbhash.c
|
||||
! Fixed error in prev commit.
|
||||
(strange that MSVC didn't complain)
|
||||
|
||||
* mpkg_win.nsi
|
||||
+ Added comment that this file shouldn't be used directly.
|
||||
|
||||
2009-06-25 18:41 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
|
||||
* include/hbhash.h
|
||||
* contrib/hbcurl/hbcurl.c
|
||||
|
||||
@@ -7,6 +7,11 @@
|
||||
;
|
||||
; Copyright 2009 Viktor Szakats (harbour.01 syenar.hu)
|
||||
; See COPYING for licensing terms.
|
||||
;
|
||||
; NOTE: Do not try to use this script directly. It won't work.
|
||||
;
|
||||
; See INSTALL how to create installation packages for
|
||||
; Windows/DOS platforms.
|
||||
; ---------------------------------------------------------------
|
||||
|
||||
; TODO: tests/examples
|
||||
|
||||
@@ -179,7 +179,7 @@ HB_HASH_TABLE_PTR hb_hashTableResize( HB_HASH_TABLE_PTR pTable, ULONG ulNewSize
|
||||
}
|
||||
|
||||
/* add a new value into th ehash table */
|
||||
BOOL hb_hashTableAdd( HB_HASH_TABLE_PTR pTable, void * pKey, void * pValue )
|
||||
BOOL hb_hashTableAdd( HB_HASH_TABLE_PTR pTable, const void * pKey, const void * pValue )
|
||||
{
|
||||
ULONG ulKey;
|
||||
HB_HASH_ITEM_PTR pItem;
|
||||
|
||||
Reference in New Issue
Block a user