Beispiel #1
0
  /*!
    Resume playing an audio CD.
    
    @param p_cdio the CD object to be acted upon.

  */
static driver_return_code_t 
audio_resume_win32 (void *p_user_data)
{
  if ( WIN_NT ) {
    return audio_resume_win32ioctl (p_user_data);
  } else {
    return DRIVER_OP_UNSUPPORTED; /* not yet, but soon I hope */
  }
}
Beispiel #2
0
  /*!
    Resume playing an audio CD.

    @param p_cdio the CD object to be acted upon.

  */
static driver_return_code_t
audio_resume_win32 (void *p_user_data)
{
    return audio_resume_win32ioctl (p_user_data);
}