public static int tdBell(int intDeviceId)
 {
     if (isWindows)
     {
         return(WindowsWrapper.tdBell(intDeviceId));
     }
     else
     {
         return(UnixWrapper.tdBell(intDeviceId));
     }
 }