2009-06-24 16:07 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)

* source/vm/memvars.c
    + Added hb_fsCommit() to __MVSAVE().
      (Change copied from xhb, created by Peter Rees)

  * contrib/gtwvg/wvgsink.c
    ! Fixed BCC warning after recent change.
      (BTW, does anyone know a switch to enable such warning:
      "'x' is assigned a value that is never used" with *MinGW* ?
      It's annoying that BCC catches it, while other compilers
      don't. I'm now only using BCC when creating builds.)
This commit is contained in:
Viktor Szakats
2009-06-24 14:09:16 +00:00
parent d9a9a26538
commit 393a813242
3 changed files with 14 additions and 1 deletions

View File

@@ -17,6 +17,18 @@
past entries belonging to author(s): Viktor Szakats.
*/
2009-06-24 16:07 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* source/vm/memvars.c
+ Added hb_fsCommit() to __MVSAVE().
(Change copied from xhb, created by Peter Rees)
* contrib/gtwvg/wvgsink.c
! Fixed BCC warning after recent change.
(BTW, does anyone know a switch to enable such warning:
"'x' is assigned a value that is never used" with *MinGW* ?
It's annoying that BCC catches it, while other compilers
don't. I'm now only using BCC when creating builds.)
2009-06-24 13:34 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* mpkg_dos.bat
* mpkg_win.bat

View File

@@ -449,7 +449,7 @@ typedef IEventHandler device_interface;
HB_FUNC( WVG_AXSETUPCONNECTIONPOINT )
{
HRESULT hr;
MyRealIEventHandler* hSink = NULL;
MyRealIEventHandler* hSink;
device_interface* pdevice_interface = ( device_interface * ) hb_oleParam( 1 );
IConnectionPointContainer* pIConnectionPointContainerTemp = NULL;

View File

@@ -1514,6 +1514,7 @@ HB_FUNC( __MVSAVE )
buffer[ 0 ] = '\x1A';
hb_fsWrite( fhnd, buffer, 1 );
hb_fsCommit( fhnd );
hb_fsClose( fhnd );
}