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:
Viktor Szakats
2009-06-26 18:13:27 +00:00
parent df6e36e45a
commit 1188dd32c6
3 changed files with 14 additions and 1 deletions

View File

@@ -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

View File

@@ -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

View File

@@ -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;