Commit ca02d3dd authored by Derk-Jan Hartman's avatar Derk-Jan Hartman

More message queue WinCE fixes

parent fc37619b
...@@ -524,7 +524,7 @@ static void PrintMsg ( vlc_object_t * p_this, msg_item_t * p_item ) ...@@ -524,7 +524,7 @@ static void PrintMsg ( vlc_object_t * p_this, msg_item_t * p_item )
} }
#ifdef UNDER_CE #ifdef UNDER_CE
# define CE_WRITE(str) WriteFile( p_this->p_libvlc->msg_bank.logfile, \ # define CE_WRITE(str) WriteFile( p_this->p_libvlc->msg_bank.pp_queues[MSG_QUEUE_NORMAL]->logfile, \
str, strlen(str), &i_dummy, NULL ); str, strlen(str), &i_dummy, NULL );
CE_WRITE( p_item->psz_module ); CE_WRITE( p_item->psz_module );
CE_WRITE( " " ); CE_WRITE( " " );
...@@ -533,7 +533,7 @@ static void PrintMsg ( vlc_object_t * p_this, msg_item_t * p_item ) ...@@ -533,7 +533,7 @@ static void PrintMsg ( vlc_object_t * p_this, msg_item_t * p_item )
CE_WRITE( ": " ); CE_WRITE( ": " );
CE_WRITE( p_item->psz_msg ); CE_WRITE( p_item->psz_msg );
CE_WRITE( "\r\n" ); CE_WRITE( "\r\n" );
FlushFileBuffers( p_this->p_libvlc->msg_bank.logfile ); FlushFileBuffers( p_this->p_libvlc->msg_bank.pp_queues[MSG_QUEUE_NORMAL]->logfile );
#else #else
/* Send the message to stderr */ /* Send the message to stderr */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment