void
DirectFB_QuitKeyboard(_THIS)
{
    //SDL_DFB_DEVICEDATA(_this);

    SDL_KeyboardQuit();

}
Example #2
0
void
SDL_StopEventLoop(void)
{
    /* Halt the event thread, if running */
    SDL_StopEventThread();

    /* Shutdown event handlers */
    SDL_KeyboardQuit();
    SDL_MouseQuit();
    SDL_QuitQuit();

    /* Clean out EventQ */
    SDL_EventQ.head = 0;
    SDL_EventQ.tail = 0;
    SDL_EventQ.wmmsg_next = 0;
}
Example #3
0
void SDL_StopEventLoop(void)
{
	
	SDL_StopEventThread();

	
	SDL_AppActiveQuit();
	SDL_KeyboardQuit();
	SDL_MouseQuit();
	SDL_QuitQuit();

	
	SDL_EventQ.head = 0;
	SDL_EventQ.tail = 0;
	SDL_EventQ.wmmsg_next = 0;
}