X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=include%2Fmtime.h;h=8f779035aa4e557227e9060907148f0ec9ce06d2;hb=33913b063cae7aa1a820c46937ead1c0a09fc080;hp=c435769a2ac0739bb9640a1fbdcc0a8a2f7a16ba;hpb=08999a39bccd9b1b199294933a54c50e94f4148f;p=vlc diff --git a/include/mtime.h b/include/mtime.h index c435769a2a..8f779035aa 100644 --- a/include/mtime.h +++ b/include/mtime.h @@ -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.11 2002/04/24 00:36:24 sam Exp $ + * $Id: mtime.h,v 1.12 2002/06/01 12:31:57 sam Exp $ * * Authors: Vincent Seguin * @@ -50,14 +50,8 @@ /***************************************************************************** * Prototypes *****************************************************************************/ -#ifndef __PLUGIN__ -char * mstrtime ( char *psz_buffer, mtime_t date ); -mtime_t mdate ( void ); -void mwait ( mtime_t date ); -void msleep ( mtime_t delay ); -#else -# define msleep p_symbols->msleep -# define mdate p_symbols->mdate -# define mstrtime p_symbols->mstrtime -#endif +VLC_EXPORT( char *, mstrtime, ( char *psz_buffer, mtime_t date ) ); +VLC_EXPORT( mtime_t, mdate, ( void ) ); +VLC_EXPORT( void, mwait, ( mtime_t date ) ); +VLC_EXPORT( void, msleep, ( mtime_t delay ) );