2010-01-18 15:53 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl)

* harbour/src/common/hbwince.c
    - removed LocalLock()/LocalUnlock()/LocalHandle() function wrappers
      for WinCE builds - we do not use these functions in current code

  * harbour/contrib/xhb/xhw32prn.prg
    - removed commented :AskProperties - it's already implemented in
      WIN_PRN class
This commit is contained in:
Przemyslaw Czerpak
2010-01-18 14:54:31 +00:00
parent ea0937ea3e
commit dd01a942b1
3 changed files with 9 additions and 30 deletions

View File

@@ -17,6 +17,15 @@
past entries belonging to author(s): Viktor Szakats.
*/
2010-01-18 15:53 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/src/common/hbwince.c
- removed LocalLock()/LocalUnlock()/LocalHandle() function wrappers
for WinCE builds - we do not use these functions in current code
* harbour/contrib/xhb/xhw32prn.prg
- removed commented :AskProperties - it's already implemented in
WIN_PRN class
2010-01-18 15:40 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/include/hbwince.h
* harbour/src/common/hbwince.c

View File

@@ -82,12 +82,9 @@ CREATE CLASS WIN32PRN FROM WIN_PRN
VAR SetTextVert INIT TA_BOTTOM // Default vertical alignment for SetTextAlign() (TEXTOUT)
/* not implemented */
// METHOD TextOutW( wString, lNewLine, lUpdatePosX, nAlignHori, nAlignVert )
// METHOD TextOutWAt( nPosX, nPosY, wString, lNewLine, lUpdatePosX, nAlignHori, nAlignVert )
// VAR AskProperties INIT .F.
ENDCLASS
METHOD StartPage() CLASS WIN32PRN

View File

@@ -320,33 +320,6 @@ BOOL WINAPI SetKeyboardState( PBYTE p )
return FALSE;
}
#if !defined( _MSC_VER ) || defined( __POCC__ ) || defined( __XCC__ )
#ifndef LocalLock
PVOID WINAPI LocalLock( HLOCAL h )
{
return ( PVOID ) h;
}
#endif
#ifndef LocalUnlock
BOOL WINAPI LocalUnlock( HLOCAL h )
{
HB_SYMBOL_UNUSED( h );
return FALSE;
}
#endif
#ifndef LocalHandle
HLOCAL WINAPI LocalHandle( LPCVOID p )
{
return ( HLOCAL ) p;
}
#endif
#endif /* !_MSC_VER || __POCC__ || __XCC__ */
#if defined( __MINGW32CE__ )
int WINAPI MulDiv( int nNumber, int nNumerator, int nDenominator )
{