2012-04-03 22:17 UTC+0200 Przemyslaw Czerpak (druzus/at/poczta.onet.pl)

* harbour/contrib/xhb/hboutdbg.c
    * eliminated HB_TCHAR_*() macros
This commit is contained in:
Przemyslaw Czerpak
2012-04-03 20:17:34 +00:00
parent 5b43e2debd
commit bad2ea0302
2 changed files with 7 additions and 4 deletions

View File

@@ -16,6 +16,10 @@
The license applies to all entries newer than 2009-04-28.
*/
2012-04-03 22:17 UTC+0200 Przemyslaw Czerpak (druzus/at/poczta.onet.pl)
* harbour/contrib/xhb/hboutdbg.c
* eliminated HB_TCHAR_*() macros
2012-04-03 11:26 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
* contrib/hbxbp/tests/demoxbp.prg
! Fixed: visibility of sub-menu's was off and thus main menu was

View File

@@ -64,6 +64,7 @@
#if defined( HB_OS_WIN )
#include <windows.h>
#include "hbwinuni.h"
#endif
#if defined( HB_OS_UNIX ) && !defined( HB_OS_VXWORKS )
@@ -221,11 +222,9 @@ void hb_OutDebug( const char * szMsg, HB_SIZE nMsgLen )
#elif defined( HB_OS_WIN )
{
LPTSTR lpMsg = HB_TCHAR_CONVTO( szMsg );
LPTSTR lpMsg = HB_CHARDUPN( szMsg, nMsgLen );
OutputDebugString( lpMsg );
HB_TCHAR_FREE( lpMsg );
HB_SYMBOL_UNUSED( nMsgLen );
hb_xfree( lpMsg );
}
#else