2006-08-13 17:34:36 +00:00
|
|
|
/***
|
|
|
|
|
This file is part of PulseAudio.
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2007-02-13 15:35:19 +00:00
|
|
|
Copyright 2006 Lennart Poettering
|
|
|
|
|
|
2006-08-13 17:34:36 +00:00
|
|
|
PulseAudio is free software; you can redistribute it and/or modify
|
|
|
|
|
it under the terms of the GNU Lesser General Public License as published
|
2009-03-03 20:23:02 +00:00
|
|
|
by the Free Software Foundation; either version 2.1 of the License,
|
2006-08-13 17:34:36 +00:00
|
|
|
or (at your option) any later version.
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-08-13 17:34:36 +00:00
|
|
|
PulseAudio is distributed in the hope that it will be useful, but
|
|
|
|
|
WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
|
General Public License for more details.
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-08-13 17:34:36 +00:00
|
|
|
You should have received a copy of the GNU Lesser General Public License
|
2014-11-26 14:14:51 +01:00
|
|
|
along with PulseAudio; if not, see <http://www.gnu.org/licenses/>.
|
2006-08-13 17:34:36 +00:00
|
|
|
***/
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
|
#include <config.h>
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#include <pulse/xmalloc.h>
|
|
|
|
|
|
|
|
|
|
#include <pulsecore/core.h>
|
|
|
|
|
#include <pulsecore/log.h>
|
|
|
|
|
#include <pulsecore/namereg.h>
|
2009-05-14 03:52:13 +02:00
|
|
|
#include <pulsecore/core-util.h>
|
2006-08-13 17:34:36 +00:00
|
|
|
|
2007-11-09 18:25:40 +00:00
|
|
|
PA_MODULE_AUTHOR("Lennart Poettering");
|
2019-12-10 16:26:34 +08:00
|
|
|
PA_MODULE_DESCRIPTION("This module is obsolete, please remove it from your configuration.");
|
2007-11-09 18:25:40 +00:00
|
|
|
PA_MODULE_VERSION(PACKAGE_VERSION);
|
2013-06-27 19:28:09 +02:00
|
|
|
PA_MODULE_LOAD_ONCE(true);
|
2006-08-13 17:34:36 +00:00
|
|
|
|
2009-08-15 00:15:18 +02:00
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
int pa__init(pa_module*m) {
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
pa_assert(m);
|
2006-08-13 17:34:36 +00:00
|
|
|
|
2019-12-10 16:26:34 +08:00
|
|
|
pa_log("module-rescue-stream is obsolete and should no longer be loaded. Please remove it from your configuration.");
|
2009-06-22 22:36:23 +02:00
|
|
|
|
2019-12-10 16:26:34 +08:00
|
|
|
pa_module_unload_request(m, false);
|
2009-08-15 00:15:18 +02:00
|
|
|
|
2006-08-13 17:34:36 +00:00
|
|
|
return 0;
|
|
|
|
|
}
|