/** * ev_shutdown: * * Shuts the evince document library down. */ void ev_shutdown (void) { g_assert (_ev_is_initialized ()); if (--ev_init_count > 0) return; _ev_backends_manager_shutdown (); _ev_file_helpers_shutdown (); _ev_debug_shutdown (); }
/** * ev_shutdown: * * Shuts the atril document library down. */ void ev_shutdown (void) { g_assert (_ev_is_initialized ()); if (--ev_init_count > 0) return; #ifdef G_OS_WIN32 if (locale_dir != NULL) g_free(locale_dir); #endif _ev_backends_manager_shutdown (); _ev_file_helpers_shutdown (); _ev_debug_shutdown (); }