equal
deleted
inserted
replaced
93 |
93 |
94 /** |
94 /** |
95 * This function initializes specific SDL subsystems |
95 * This function initializes specific SDL subsystems |
96 * |
96 * |
97 * Subsystem initialization is ref-counted, you must call |
97 * Subsystem initialization is ref-counted, you must call |
98 * SDL_QuitSubSystem for each SDL_InitSubSystem to correctly |
98 * SDL_QuitSubSystem() for each SDL_InitSubSystem() to correctly |
99 * shutdown a subsystem manually (or call SDL_Quit to force shutdown). |
99 * shutdown a subsystem manually (or call SDL_Quit() to force shutdown). |
100 * If a subsystem is already loaded then this call will |
100 * If a subsystem is already loaded then this call will |
101 * increase the ref-count and return. |
101 * increase the ref-count and return. |
102 */ |
102 */ |
103 extern DECLSPEC int SDLCALL SDL_InitSubSystem(Uint32 flags); |
103 extern DECLSPEC int SDLCALL SDL_InitSubSystem(Uint32 flags); |
104 |
104 |