2009-12-19 22:48 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)

* contrib/hbwin/hbwapi.h
    ! Fixed some wapi_ret_*() macros. This caused that several WAPI_TREEVIEW*() 
      functions were not returning a value. Thanks to Petr Chornyj for 
      reporting it.
This commit is contained in:
Viktor Szakats
2009-12-19 21:48:43 +00:00
parent d02c759f21
commit 90956ad06f
2 changed files with 11 additions and 5 deletions

View File

@@ -17,11 +17,17 @@
past entries belonging to author(s): Viktor Szakats.
*/
2009-12-19 22:48 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* contrib/hbwin/hbwapi.h
! Fixed some wapi_ret_*() macros. This caused that several WAPI_TREEVIEW*()
functions were not returning a value. Thanks to Petr Chornyj for
reporting it.
2009-12-19 09:23 UTC-0800 Pritpal Bedi (pritpal@vouchcac.com)
* contrib/hbxbp/xbp.ch
! Removed QT_PTROFXBP() macro.
I have retained QT_PTROF() macro because a lot of you
must still be using it in your code. It is sceduled to be
must still be using it in your code. It is sceduled to be
removed after this release.
2009-12-19 09:14 UTC-0800 Pritpal Bedi (pritpal@vouchcac.com)

View File

@@ -87,10 +87,10 @@
#define wapi_ret_NINT( i ) ( hb_retnint( i ) )
#define wapi_ret_NI( i ) ( hb_retni( i ) )
#define wapi_ret_L( b ) ( hb_retl( b ) )
#define wapi_ret_UINT( n ) ( hb_parni( n ) )
#define wapi_ret_LONG( n ) ( hb_parnl( n ) )
#define wapi_ret_WORD( n ) ( hb_parnl( n ) )
#define wapi_ret_DWORD( n ) ( hb_parnl( n ) )
#define wapi_ret_UINT( n ) ( hb_retni( n ) )
#define wapi_ret_LONG( n ) ( hb_retnl( n ) )
#define wapi_ret_WORD( n ) ( hb_retnl( n ) )
#define wapi_ret_DWORD( n ) ( hb_retnl( n ) )
#define wapi_ret_HANDLE( h ) ( hb_retptr( h ) )
#define wapi_ret_HRESULT( hr ) ( hb_retnint( hr ) )