diff options
Diffstat (limited to 'src/xine-engine/xine.c')
-rw-r--r-- | src/xine-engine/xine.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/xine-engine/xine.c b/src/xine-engine/xine.c index 77b0d72d2..fce314595 100644 --- a/src/xine-engine/xine.c +++ b/src/xine-engine/xine.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: xine.c,v 1.172 2002/10/21 12:11:03 jcdutton Exp $ + * $Id: xine.c,v 1.173 2002/10/23 11:44:31 jcdutton Exp $ * * top-level xine functions * @@ -620,6 +620,11 @@ xine_t *xine_new (void) { return this; } +void xine_scan_plugins(xine_t *this) { + printf("scan plugins entered\n"); + scan_plugins(this); + printf("scan plugins finished\n"); +} void xine_init (xine_t *this) { |