示例#1
0
bool UIAPI uiinit( int install )
/******************************/
{
    bool    initialized;

    initialized = uistart();

    if( initialized ) {
#ifdef __UNIX__
        _initmouse( install );
#else
        initmouse( install );
#endif
    }
    return( initialized );
}
示例#2
0
bool global initmouse( int install )
/**********************************/
{
    return _initmouse( install );
}