mirror of
https://github.com/asterisk/asterisk.git
synced 2026-05-03 20:06:24 +00:00
With these changes, for a module to export symbols into the global namespace, it must have *both* the AST_MODFLAG_GLOBAL_SYMBOLS flag and a linker script that allows the linker to leave the symbols exposed in the module's .so file (see res_odbc.exports for an example). git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@182808 65c4cc65-6c06-0410-ace0-fbb531ad65f3
12 lines
190 B
Plaintext
12 lines
190 B
Plaintext
{
|
|
global:
|
|
ast_odbc_backslash_is_escape;
|
|
ast_odbc_prepare_and_execute;
|
|
ast_odbc_release_obj;
|
|
ast_odbc_request_obj;
|
|
ast_odbc_sanity_check;
|
|
ast_odbc_smart_execute;
|
|
local:
|
|
*;
|
|
};
|