1
0
mirror of https://gitlab.xiph.org/xiph/icecast-server.git synced 2024-06-16 06:15:24 +00:00

Feature: Make navigation_direction_to_str() public

This commit is contained in:
Philipp Schafft 2020-10-25 13:04:17 +00:00
parent 8a91113028
commit b5b5e9cc07
2 changed files with 3 additions and 1 deletions

View File

@ -24,7 +24,7 @@ struct mount_identifier_tag {
REFOBJECT_DEFINE_TYPE(mount_identifier_t);
static inline const char * navigation_direction_id2str(navigation_direction_t dir)
const char * navigation_direction_to_str(navigation_direction_t dir)
{
switch (dir) {
case NAVIGATION_DIRECTION_UP: return "up"; break;

View File

@ -29,6 +29,8 @@ typedef enum {
REFOBJECT_FORWARD_TYPE(mount_identifier_t);
const char * navigation_direction_to_str(navigation_direction_t dir);
void navigation_initialize(void);
void navigation_shutdown(void);