14 lines
337 B
C
14 lines
337 B
C
|
/*
|
||
|
* Copyright (c) 2018 Jan Van Winkel <jan.van_winkel@dxplore.eu>
|
||
|
*
|
||
|
* SPDX-License-Identifier: Apache-2.0
|
||
|
*/
|
||
|
#ifndef ZEPHYR_BOARD_POSIX_NATIVE_POSIX_SDL_EVENTS_H
|
||
|
#define ZEPHYR_BOARD_POSIX_NATIVE_POSIX_SDL_EVENTS_H
|
||
|
|
||
|
#include <zephyr/types.h>
|
||
|
|
||
|
void sdl_handle_events(void);
|
||
|
|
||
|
#endif /* ZEPHYR_BOARD_POSIX_NATIVE_POSIX_SDL_EVENTS_H */
|