Mercurial > sdl-ios-xcode
comparison src/cdrom/SDL_syscdrom.h @ 1668:4da1ee79c9af SDL-1.3
more tweaking indent options
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Mon, 29 May 2006 04:04:35 +0000 |
parents | 782fd950bd46 |
children |
comparison
equal
deleted
inserted
replaced
1667:1fddae038bc8 | 1668:4da1ee79c9af |
---|---|
39 int (*GetTOC) (SDL_CD * cdrom); | 39 int (*GetTOC) (SDL_CD * cdrom); |
40 | 40 |
41 /* Return the current status and play position, in frames, of the | 41 /* Return the current status and play position, in frames, of the |
42 drive. 'position' may be NULL, and if so, should be ignored. | 42 drive. 'position' may be NULL, and if so, should be ignored. |
43 */ | 43 */ |
44 CDstatus (*Status) (SDL_CD * cdrom, int *position); | 44 CDstatus(*Status) (SDL_CD * cdrom, int *position); |
45 | 45 |
46 /* Play from frame 'start' to 'start+len' */ | 46 /* Play from frame 'start' to 'start+len' */ |
47 int (*Play) (SDL_CD * cdrom, int start, int len); | 47 int (*Play) (SDL_CD * cdrom, int start, int len); |
48 | 48 |
49 /* Pause play */ | 49 /* Pause play */ |
68 /* Function to scan the system for CD-ROM drives and fill SDL_CDcaps. | 68 /* Function to scan the system for CD-ROM drives and fill SDL_CDcaps. |
69 * This function should set SDL_numcds to the number of available CD | 69 * This function should set SDL_numcds to the number of available CD |
70 * drives. Drive 0 should be the system default CD-ROM. | 70 * drives. Drive 0 should be the system default CD-ROM. |
71 * It should return 0, or -1 on an unrecoverable fatal error. | 71 * It should return 0, or -1 on an unrecoverable fatal error. |
72 */ | 72 */ |
73 extern int SDL_SYS_CDInit (void); | 73 extern int SDL_SYS_CDInit(void); |
74 | 74 |
75 /* Function to perform any system-specific CD-ROM related cleanup */ | 75 /* Function to perform any system-specific CD-ROM related cleanup */ |
76 extern void SDL_SYS_CDQuit (void); | 76 extern void SDL_SYS_CDQuit(void); |
77 /* vi: set ts=4 sw=4 expandtab: */ | 77 /* vi: set ts=4 sw=4 expandtab: */ |