comparison src/cdrom/beos/SDL_syscdrom.cc @ 1361:19418e4422cb

New configure-based build system. Still work in progress, but much improved
author Sam Lantinga <slouken@libsdl.org>
date Thu, 16 Feb 2006 10:11:48 +0000
parents c71e05b4dc2e
children 376665398b25
comparison
equal deleted inserted replaced
1360:70a9cfb4cf1b 1361:19418e4422cb
33 #include <Entry.h> 33 #include <Entry.h>
34 #include <Path.h> 34 #include <Path.h>
35 35
36 #include "SDL_cdrom.h" 36 #include "SDL_cdrom.h"
37 extern "C" { 37 extern "C" {
38 #include "SDL_syscdrom.h" 38 #include "../SDL_syscdrom.h"
39 } 39 }
40 40
41 /* Constants to help us get at the SCSI table-of-contents info */ 41 /* Constants to help us get at the SCSI table-of-contents info */
42 #define CD_NUMTRACKS(toc) toc.toc_data[3] 42 #define CD_NUMTRACKS(toc) toc.toc_data[3]
43 #define CD_TRACK(toc, track) (&toc.toc_data[6+(track)*8]) 43 #define CD_TRACK(toc, track) (&toc.toc_data[6+(track)*8])