comparison src/cdrom/dummy/SDL_syscdrom.c @ 1895:c121d94672cb

SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
author Sam Lantinga <slouken@libsdl.org>
date Mon, 10 Jul 2006 21:04:37 +0000
parents 92947e3a18db
children 99210400e8b9
comparison
equal deleted inserted replaced
1894:c69cee13dd76 1895:c121d94672cb
26 /* Stub functions for system-level CD-ROM audio control */ 26 /* Stub functions for system-level CD-ROM audio control */
27 27
28 #include "SDL_cdrom.h" 28 #include "SDL_cdrom.h"
29 #include "../SDL_syscdrom.h" 29 #include "../SDL_syscdrom.h"
30 30
31 int SDL_SYS_CDInit(void) 31 int
32 SDL_SYS_CDInit(void)
32 { 33 {
33 return(0); 34 return (0);
34 } 35 }
35 36
36 void SDL_SYS_CDQuit(void) 37 void
38 SDL_SYS_CDQuit(void)
37 { 39 {
38 return; 40 return;
39 } 41 }
40 42
41 #endif /* SDL_CDROM_DUMMY || SDL_CDROM_DISABLED */ 43 #endif /* SDL_CDROM_DUMMY || SDL_CDROM_DISABLED */
44 /* vi: set ts=4 sw=4 expandtab: */