FS-10060: fix scope of declarations

This commit is contained in:
Mike Jerris 2017-02-24 11:11:30 -06:00
parent 531e7d9fe1
commit be245edf5e
2 changed files with 4 additions and 4 deletions

View File

@ -139,6 +139,10 @@ static bool debug_wait_for_connection = true;
static bool debug_manual_break = true;
#endif
static void v8_thread_launch(const char *text);
static void v8_event_handler(switch_event_t *event);
static switch_xml_t v8_fetch(const char *section, const char *tag_name, const char *key_name, const char *key_value, switch_event_t *params, void *user_data);
using namespace v8;
static switch_status_t v8_mod_init_built_in(const v8_mod_interface_t *mod_interface)

View File

@ -83,10 +83,6 @@ SWITCH_END_EXTERN_C
void v8_add_event_handler(void *event_handler);
void v8_remove_event_handler(void *event_handler);
static switch_xml_t v8_fetch(const char *section,
const char *tag_name, const char *key_name, const char *key_value, switch_event_t *params, void *user_data);
static void v8_event_handler(switch_event_t *event);
void v8_thread_launch(const char *text);
#endif /* MOD_V8_H */