diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 995d0ef8f8..56d2b840d3 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -16,6 +16,11 @@ The license applies to all entries newer than 2009-04-28. */ +2011-02-06 15:30 UTC+0100 Viktor Szakats (harbour.01 syenar.hu) + * contrib/hbfimage/fi_winfu.c + ! Fixed to define windows specific functions on all platforms + (as noop dummies) + 2011-02-06 15:22 UTC+0100 Viktor Szakats (harbour.01 syenar.hu) + contrib/hbblat/hbblat.hbx + contrib/hbcairo/hbcairo.hbx diff --git a/harbour/contrib/hbfimage/fi_winfu.c b/harbour/contrib/hbfimage/fi_winfu.c index fb981acdc5..dd095634dc 100644 --- a/harbour/contrib/hbfimage/fi_winfu.c +++ b/harbour/contrib/hbfimage/fi_winfu.c @@ -215,4 +215,21 @@ HB_FUNC( FI_WINDRAW ) /* -------------------------------------------------------------------------- */ +#else + +HB_FUNC( FI_FITOBITMAP ) +{ + hb_ret(); +} + +HB_FUNC( FI_BITMAPTOFI ) +{ + hb_ret(); +} + +HB_FUNC( FI_WINDRAW ) +{ + hb_retni( 0 ); +} + #endif /* defined( HB_OS_WIN ) */