bool UIAPI uiinit( int install ) /******************************/ { bool initialized; initialized = uistart(); if( initialized ) { #ifdef __UNIX__ _initmouse( install ); #else initmouse( install ); #endif } return( initialized ); }
bool global initmouse( int install ) /**********************************/ { return _initmouse( install ); }