![]() |
![]()
| ![]() |
![]()
NAMESDL_CDOpen - Opens a CD-ROM drive for access. SYNOPSIS#include "SDL.h" SDL_CD *SDL_CDOpen(int drive); DESCRIPTIONOpens a CD-ROM drive for access. It returns a SDL_CD structure on success, or NULL if the drive was invalid or busy. This newly opened CD-ROM becomes the default CD used when other CD functions are passed a NULL CD-ROM handle. Drives are numbered starting with 0. Drive 0 is the system default CD-ROM. EXAMPLESSDL_CD *cdrom; int cur_track; int min, sec, frame; SDL_Init(SDL_INIT_CDROM); atexit(SDL_Quit); /* Check for CD drives */ if(!SDL_CDNumDrives()){ SEE ALSOSDL_CD, SDL_CDtrack, SDL_CDClose
|