2011-02-28 14:00 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)

* src/rtl/hbsocket.c
    ! Added hb_socketGetHostName() stub when HB_SOCKET_OFF.

  * contrib/hbrun/hbrun.hbp
    + Linking in hbpmcom on dos platform. [Tamas]
This commit is contained in:
Viktor Szakats
2011-02-28 13:02:14 +00:00
parent 89e2fb059f
commit d26fa9bb12
3 changed files with 16 additions and 0 deletions

View File

@@ -16,6 +16,13 @@
The license applies to all entries newer than 2009-04-28.
*/
2011-02-28 14:00 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)
* src/rtl/hbsocket.c
! Added hb_socketGetHostName() stub when HB_SOCKET_OFF.
* contrib/hbrun/hbrun.hbp
+ Linking in hbpmcom on dos platform. [Tamas]
2011-02-28 13:47 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)
* contrib/hbqt/qtgui/hbqt_hbqgraphicsitem.cpp
% Cast deleted.

View File

@@ -26,6 +26,7 @@ pullext.prg
-lhbcplr
-lhbpp
-lhbcommon
-lhbpmcom{dos}
# not using these together with .rc input, because some compilers (mingw)
# do not support multiple .rc inputs

View File

@@ -767,6 +767,14 @@ PHB_ITEM hb_socketGetAliases( const char * szAddr, int af )
return NULL;
}
char * hb_socketGetHostName( const void * pSockAddr, unsigned len )
{
HB_SYMBOL_UNUSED( pSockAddr );
HB_SYMBOL_UNUSED( len );
hb_socketSetRawError( HB_SOCKET_ERR_AFNOSUPPORT );
return NULL;
}
PHB_ITEM hb_socketGetIFaces( int af, HB_BOOL fNoAliases )
{
HB_SYMBOL_UNUSED( af );