2015-12-16 19:09 UTC+0100 Przemyslaw Czerpak (druzus/at/poczta.onet.pl)

* src/common/hbfopen.c
    ! do not use _wfsopen() in MinGW-CE builds - it does not support it
      (Thanks to Abe)
This commit is contained in:
Przemysław Czerpak
2015-12-16 19:09:21 +01:00
parent d074db1033
commit 5b361cb9f5
2 changed files with 7 additions and 1 deletions

View File

@@ -10,6 +10,11 @@
* Change, ! Fix, % Optimization, + Addition, - Removal, ; Comment
*/
2015-12-16 19:09 UTC+0100 Przemyslaw Czerpak (druzus/at/poczta.onet.pl)
* src/common/hbfopen.c
! do not use _wfsopen() in MinGW-CE builds - it does not support it
(Thanks to Abe)
2015-12-15 23:48 UTC+0100 Przemyslaw Czerpak (druzus/at/poczta.onet.pl)
* config/dos/watcom.mk
* config/win/watcom.mk

View File

@@ -62,7 +62,8 @@
#if ( defined( HB_OS_WIN ) || defined( HB_OS_OS2 ) || defined( HB_OS_DOS ) ) && \
( defined( __WATCOMC__ ) || defined( _MSC_VER ) || \
defined( __MINGW32__ ) || defined( __BORLANDC__ ) || \
defined( __DMC__ ) )
defined( __DMC__ ) ) && \
! defined( __MINGW32CE__ )
#define HB_USE_FSOPEN
#include <share.h>
#if ! defined( SH_DENYNO ) && defined( _SH_DENYNO )