2018-12-29 19:36 UTC+0100 Maurizio la Cecilia (m.lacecilia/at/gmail.com)

* contrib/hbssl/hbssl.hbp
    * added import libraries to link with OpenSSL current version
  * contrib/hbcurl/hbcurl.hbp
    * added import libraries to link with cUrl current version
  * contrib/hbwin/wapi_winuser_1.c
  * contrib/hbwin/hbwin.hbx
    * added wapi_ShowWindow() wrapper
This commit is contained in:
Maurizio la Cecilia
2018-12-29 19:36:53 +01:00
parent 16f40faa74
commit 039fb78b46
5 changed files with 35 additions and 10 deletions

View File

@@ -7,10 +7,19 @@
Entries may not always be in chronological/commit order.
See license at the end of file. */
2018-12-29 19:35 UTC+0100 Maurizio la Cecilia (m.lacecilia/at/gmail.com)
* contrib/hbssl/hbssl.hbp
* added import libraries to link with OpenSSL current version
* contrib/hbcurl/hbcurl.hbp
* added import libraries to link with cUrl current version
* contrib/hbwin/wapi_winuser_1.c
* contrib/hbwin/hbwin.hbx
* added wapi_ShowWindow() wrapper
2018-12-17 12:00 UTC+0100 Maurizio la Cecilia (m.lacecilia/at/gmail.com)
* contrib/xhb/hbxml.c
! fixed the lacking of correct settings of previous node in
mxml_node_insert_before(), that was causing the omitting
! fixed the lacking of correct settings of previous node in
mxml_node_insert_before(), that was causing the omitting
of the inserted nodes in saves and searches.
2018-11-16 16:33 UTC+0100 Przemyslaw Czerpak (druzus/at/poczta.onet.pl)
@@ -3596,7 +3605,7 @@
2016-01-24 13:06 UTC+0100 Przemyslaw Czerpak (druzus/at/poczta.onet.pl)
* src/rdd/delim1.c
! added missing casting - it fixes problem reported by Franček Prijatelj
! added missing casting - it fixes problem reported by Franĝek Prijatelj
2016-01-23 13:59 UTC+0100 Przemyslaw Czerpak (druzus/at/poczta.onet.pl)
* contrib/hbformat/hbfmtcls.prg
@@ -6012,7 +6021,7 @@
2015-04-01 14:59 UTC+0200 Przemyslaw Czerpak (druzus/at/poczta.onet.pl)
* src/debug/dbgentry.c
! fixed typo in my previous commit for AltD() function detection
Thanks to Franček Prijatelj for reporting the problem and Abe
Thanks to Franĝek Prijatelj for reporting the problem and Abe
for self contain example
* src/rdd/dbfcdx/dbfcdx1.c
@@ -9472,7 +9481,7 @@
2014-03-04 19:12 UTC+0100 Przemyslaw Czerpak (druzus/at/poczta.onet.pl)
* contrib/xhb/hbserv.c
* pacified CLANG warning reported by Franček
* pacified CLANG warning reported by Franĝek
2014-03-04 18:15 UTC+0100 Przemyslaw Czerpak (druzus/at/poczta.onet.pl)
* src/debug/debugger.prg
@@ -10550,11 +10559,11 @@
2013-11-28 03:04 UTC+0100 Przemyslaw Czerpak (druzus/at/poczta.onet.pl)
* contrib/hbmxml/3rd/minixml/mxml_fil.c
! fixed mxmlLoadString() with top node - patch by Franček Prijatelj
! fixed mxmlLoadString() with top node - patch by Franĝek Prijatelj
* contrib/hbmxml/core.c
! fixed mxml node reference counter in mxmlAdd() - it fixes 2nd
problem reported by Franček Prijatelj
problem reported by Franĝek Prijatelj
2013-11-27 20:32 UTC+0100 Przemyslaw Czerpak (druzus/at/poczta.onet.pl)
* src/rtl/gtxwc/gtxwc.c
@@ -11196,7 +11205,7 @@
* src/debug/debugger.prg
! keep RunAtStartup flag synced with menu
! fixed options decoding from init.cld file.
Thanks to Franček Prijatelj for locating the problem though fix
Thanks to Franĝek Prijatelj for locating the problem though fix
should be a little bit different.
* src/debug/tbrwtext.prg
@@ -46747,7 +46756,7 @@
2011-06-03 13:15 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
* contrib/hbide/idebrowse.prg
% Set vertical scrollbars of XbpBrowse() class to honor thumb
positioning per open index. Pointed out by Franček.
positioning per open index. Pointed out by Franĝek.
2011-06-03 13:11 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
* contrib/hbqt/qtgui/hbqtgui.hbx
@@ -91161,7 +91170,7 @@
2010-02-23 08:26 UTC-0800 Pritpal Bedi (pritpal@vouchcac.com)
* contrib/hbqt/hbqt_hbslots.cpp
! Applied patch provided by Franček.
! Applied patch provided by Franĝek.
This removes the 128 nesting loop limit in MSVC.
* contrib/hbide/ideharbourhelp.prg

View File

@@ -2,6 +2,8 @@ hbcurl.hbm
-depimplibs=curl:../libcurl.dll
-depimplibs=curl:../bin/libcurl.dll
-depimplibs=curl:../libcurl-4.dll
-depimplibs=curl:../bin/libcurl-4.dll
-depfinish=curl
-iflag={bcc}-a

View File

@@ -5,6 +5,10 @@
-depimplibs=openssl:../dll/ssleay32.dll
-depimplibs=openssl:../libeay32.dll
-depimplibs=openssl:../ssleay32.dll
-depimplibs=openssl:../bin/libcrypto-1_1.dll
-depimplibs=openssl:../bin/libssl-1_1.dll
-depimplibs=openssl:../bin/libcrypto-1_1-x64.dll
-depimplibs=openssl:../bin/libssl-1_1-x64.dll
hbssl.hbm

View File

@@ -173,6 +173,7 @@ DYNAMIC wapi_SetTextColor
DYNAMIC wapi_SetWindowPos
DYNAMIC wapi_ShellExecute
DYNAMIC wapi_ShowScrollBar
DYNAMIC wapi_ShowWindow
DYNAMIC wapi_Sleep
DYNAMIC wapi_StartDoc
DYNAMIC wapi_StartPage

View File

@@ -169,6 +169,15 @@ HB_FUNC( WAPI_ISWINDOW )
hbwapi_ret_L( bResult );
}
HB_FUNC( WAPI_SHOWWINDOW )
{
BOOL bResult = ShowWindow( hbwapi_par_raw_HWND( 1 ),
hb_parni( 2 ) );
hbwapi_SetLastError( GetLastError() );
hbwapi_ret_L( bResult );
}
HB_FUNC( WAPI_DRAWTEXT )
{
HDC hDC = hbwapi_par_HDC( 1 );