Mercurial > sdl-ios-xcode
comparison src/cdrom/dummy/SDL_syscdrom.c @ 1662:782fd950bd46 SDL-1.3
Revamp of the video system in progress - adding support for multiple displays, multiple windows, and a full video mode selection API.
WARNING: None of the video drivers have been updated for the new API yet! The API is still under design and very fluid.
The code is now run through a consistent indent format:
indent -i4 -nut -nsc -br -ce
The headers are being converted to automatically generate doxygen documentation.
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Sun, 28 May 2006 13:04:16 +0000 |
parents | 92947e3a18db |
children | 4da1ee79c9af |
comparison
equal
deleted
inserted
replaced
1661:281d3f4870e5 | 1662:782fd950bd46 |
---|---|
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: */ |