From 6c5987811c7c3decff795e46f5b371fa931475fe Mon Sep 17 00:00:00 2001 From: "Kevin P. Fleming" Date: Mon, 15 Jun 2009 16:07:23 +0000 Subject: Redesigned 'optional API' support. This patch provides a new implementation of the optional API support defined in asterisk/optional_api.h; this new version provides solves compatibility issues with the use of linker version scripts for suppressing global symbols. In addition, there is now a functional (and tested!) implementation for Mac OS/X, so module writers no longer need to use special tests before calling optional API functions. All future implementations must provide these same semantics, so that module writers can rely on them. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@200519 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- res/res_monitor.exports | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'res/res_monitor.exports') diff --git a/res/res_monitor.exports b/res/res_monitor.exports index 4352dc8b6..0c97f6a80 100644 --- a/res/res_monitor.exports +++ b/res/res_monitor.exports @@ -1,11 +1,11 @@ { global: - ast_monitor_change_fname; - ast_monitor_pause; - ast_monitor_setjoinfiles; - ast_monitor_start; - ast_monitor_stop; - ast_monitor_unpause; + *ast_monitor_change_fname; + *ast_monitor_pause; + *ast_monitor_setjoinfiles; + *ast_monitor_start; + *ast_monitor_stop; + *ast_monitor_unpause; local: *; }; -- cgit v1.2.3