Commit ee87a691 authored by Gildas Bazin's avatar Gildas Bazin

* Added mstrtime() to module_symbols_t so we can compile the mpeg_vdec
    plugin with TRACE mode enabled.
parent 60754f11
......@@ -3,7 +3,7 @@
* Collection of useful common types and macros definitions
*****************************************************************************
* Copyright (C) 1998, 1999, 2000 VideoLAN
* $Id: common.h,v 1.70 2002/01/21 23:57:46 massiot Exp $
* $Id: common.h,v 1.71 2002/01/29 20:11:18 gbazin Exp $
*
* Authors: Samuel Hocevar <sam@via.ecp.fr>
* Vincent Seguin <seguin@via.ecp.fr>
......@@ -471,6 +471,7 @@ typedef struct module_symbols_s
void ( * msleep ) ( mtime_t );
mtime_t ( * mdate ) ( void );
char * ( * mstrtime ) ( char *, mtime_t );
int ( * network_ChannelCreate )( void );
int ( * network_ChannelJoin ) ( int );
......
......@@ -9,7 +9,7 @@
* Functions prototyped are implemented in interface/mtime.c.
*****************************************************************************
* Copyright (C) 1996, 1997, 1998, 1999, 2000 VideoLAN
* $Id: mtime.h,v 1.9 2001/12/30 07:09:54 sam Exp $
* $Id: mtime.h,v 1.10 2002/01/29 20:11:18 gbazin Exp $
*
* Authors: Vincent Seguin <seguin@via.ecp.fr>
*
......@@ -58,5 +58,6 @@ void msleep ( mtime_t delay );
#else
# define msleep p_symbols->msleep
# define mdate p_symbols->mdate
# define mstrtime p_symbols->mstrtime
#endif
......@@ -2,7 +2,7 @@
* intf_dummy.c: dummy interface plugin
*****************************************************************************
* Copyright (C) 2000, 2001 VideoLAN
* $Id: intf_dummy.c,v 1.13 2001/12/30 07:09:55 sam Exp $
* $Id: intf_dummy.c,v 1.14 2002/01/29 20:11:18 gbazin Exp $
*
* Authors: Samuel Hocevar <sam@zoy.org>
*
......@@ -29,7 +29,6 @@
#include <videolan/vlc.h>
#include "intf_msg.h"
#include "interface.h"
/*****************************************************************************
......
......@@ -2,7 +2,7 @@
* modules_plugin.h : Plugin management functions used by the core application.
*****************************************************************************
* Copyright (C) 2001 VideoLAN
* $Id: modules_plugin.h,v 1.7 2002/01/24 13:32:53 sam Exp $
* $Id: modules_plugin.h,v 1.8 2002/01/29 20:11:18 gbazin Exp $
*
* Authors: Samuel Hocevar <sam@zoy.org>
*
......@@ -177,6 +177,7 @@ module_error( void )
(p_symbols)->intf_Eject = intf_Eject; \
(p_symbols)->msleep = msleep; \
(p_symbols)->mdate = mdate; \
(p_symbols)->mstrtime = mstrtime; \
(p_symbols)->network_ChannelCreate = network_ChannelCreate; \
(p_symbols)->network_ChannelJoin = network_ChannelJoin; \
(p_symbols)->input_SetProgram = input_SetProgram; \
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment