|
3 | 3 | * @author Martin Pulec <[email protected]> |
4 | 4 | */ |
5 | 5 | /* |
6 | | - * Copyright (c) 2019-2023 CESNET, z. s. p. o. |
| 6 | + * Copyright (c) 2019-2025 CESNET, zájmové sdružení právnických osob |
7 | 7 | * All rights reserved. |
8 | 8 | * |
9 | 9 | * Redistribution and use in source and binary forms, with or without |
|
35 | 35 | * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
36 | 36 | */ |
37 | 37 |
|
38 | | -#ifdef HAVE_CONFIG_H |
39 | | -#include "config.h" |
40 | | -#include "config_unix.h" |
41 | | -#include "config_win32.h" |
42 | | -#endif |
| 38 | +#include "playback.h" |
43 | 39 |
|
44 | | -#include <sys/types.h> |
45 | | -#include <sys/stat.h> |
46 | | -#include <unistd.h> |
| 40 | +#include <fcntl.h> // for S_IFDIR |
| 41 | +#include <stdbool.h> // for bool, false, true |
| 42 | +#include <stdio.h> // for snprintf, perror |
| 43 | +#include <stdlib.h> // for free |
| 44 | +#include <string.h> // for strchr, strcmp, strdup, strstr |
| 45 | +#include <sys/stat.h> // for stat |
47 | 46 |
|
48 | | -#include "debug.h" |
49 | | -#include "keyboard_control.h" |
50 | | -#include "playback.h" |
51 | | -#include "utils/color_out.h" |
52 | | -#include "utils/text.h" |
| 47 | +#include "debug.h" // for log_msg, LOG_LEVEL_ERROR, LOG_LEVEL_INFO |
| 48 | +#include "keyboard_control.h" // for keycontrol_register_key, K_DOWN, K_LEFT |
| 49 | +#include "utils/color_out.h" // for color_printf, TBOLD, TERM_BOLD, TERM_R... |
| 50 | +#include "utils/text.h" // for wrap_paragraph |
| 51 | + |
| 52 | +struct module; |
53 | 53 |
|
54 | 54 | #define MOD_NAME "[playback] " |
55 | 55 |
|
|
0 commit comments