void intern physupdate( SAREA *area )
{
    _physupdate(area);
    if( !RefreshForbid ){
        _ui_refresh(0);
    }
}
Exemple #2
0
void UIAPI uispawnend()
/**********************/
{
    restorekeyb();
    if( MouseInstalled ) initmouse( TRUE );
    uiswap();
    _ui_refresh(1);
}
void permit_refresh( void )
{
    if( RefreshForbid ){
        RefreshForbid--;
    }
    if( !RefreshForbid ){
        _ui_refresh(0);
    }
}
Exemple #4
0
/*
 * BIOSKeyboardHit - test for keyboard hit
 */
bool BIOSKeyboardHit( void )
{
    int             type, attr;
    unsigned char   row, col;

    _uigetcursor( &row, &col, &type, &attr );
    _uisetcursor( row, col, C_NORMAL, attr );
    _ui_refresh( 0 );
    return( ( kb_wait( 0, 0 ) != 0 ) );
    
} /* BIOSKeyboardHit */