102 Patches: Detours to the Rescue
C reference for DttR maintainers and modders.
Loading...
Searching...
No Matches
movies_private.h
Go to the documentation of this file.
1#ifndef DTTR_MOVIES_PRIVATE_H
2#define DTTR_MOVIES_PRIVATE_H
3
4#include <stdbool.h>
5#include <stdint.h>
6
7#include <SDL3/SDL.h>
8
15
16void dttr_movies_init();
18void dttr_movies_start(const char *path);
19void dttr_movies_tick();
23
24#endif // DTTR_MOVIES_PRIVATE_H
void void DWORD HANDLE event
union SDL_Event SDL_Event
Definition dttr_mods.h:20
void dttr_movies_start(const char *path)
Definition movies.c:644
dttr_movie_result dttr_movies_stop()
Definition movies.c:741
void dttr_movies_cleanup()
Definition movies.c:635
dttr_movie_result
@ DTTR_MOVIE_QUIT
@ DTTR_MOVIE_ENDED
@ DTTR_MOVIE_PLAYING
@ DTTR_MOVIE_ESCAPE
bool dttr_movies_is_playing()
Definition movies.c:748
void dttr_movies_init()
Definition movies.c:606
void dttr_movies_tick()
Definition movies.c:668
bool dttr_movies_handle_event(const SDL_Event *event)
Definition movies.c:705