asterisk: Export additional manager functions

Rename check_manager_enabled() and check_webmanager_enabled() to begin
with ast_ so that the symbols are automatically exported by the
linker.

ASTERISK~29184

Change-Id: I85762b9a5d14500c15f6bad6507138c8858644c9
This commit is contained in:
Sean Bright
2020-12-18 10:16:38 -05:00
committed by George Joseph
parent 3c8598ffef
commit 68d3d3af6f
3 changed files with 7 additions and 7 deletions

View File

@@ -115,10 +115,10 @@ struct manager_custom_hook {
};
/*! \brief Check if AMI is enabled */
int check_manager_enabled(void);
int ast_manager_check_enabled(void);
/*! \brief Check if AMI/HTTP is enabled */
int check_webmanager_enabled(void);
int ast_webmanager_check_enabled(void);
/*! Add a custom hook to be called when an event is fired
\param hook struct manager_custom_hook object to add