SDL_CDStop函数

SDL_CDStop函数:

停止播放CD。

定义:

#include "SDL.h"
int SDL_CDStop(SDL_CD *cdrom);

例子:

if (gSndPlayer.pCD != NULL)
   {
      if (CD_INDRIVE(SDL_CDStatus(gSndPlayer.pCD)))
      {
         SDL_CDStop(gSndPlayer.pCD);

         if (iNumTrack != -1)
         {
            PAL_PlayMUS(-1, FALSE, 0);

            if (SDL_CDPlayTracks(gSndPlayer.pCD, iNumTrack - 1, 0, 1, 0) == 0)
            {
               return TRUE;
            }
         }
      }
   }


蔡军生

跟老菜鸟学C++

http://edu.csdn.net/course/detail/2901



你可能感兴趣的:(函数,sdl,库)