Changeset d71f0a67d65e69d467df753575b403dc4fb2e5bd

Show
Ignore:
Timestamp:
06/08/05 21:36:54 (3 years ago)
Author:
Cyril Deguet <asmax@videolan.org>
git-committer:
Cyril Deguet <asmax@videolan.org> 1123357014 +0000
git-parent:

[1a4ae5679d635d3393cdd9747ce42730c15d20f0]

git-author:
Cyril Deguet <asmax@videolan.org> 1123357014 +0000
Message:
  • vlc_common.c: forward declaration of dirent for vlc_symbols.h
Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • include/vlc_common.h

    r6c1ee3a rd71f0a6  
    917917    VLC_EXPORT( void *, vlc_readdir, ( void * ) ); 
    918918    VLC_EXPORT( int, vlc_closedir, ( void * ) ); 
    919 #elif !defined(__PLUGIN__) 
    920 #   define vlc_opendir  NULL 
    921 #   define vlc_readdir  NULL 
    922 #   define vlc_closedir NULL 
     919#else 
     920    struct dirent;  /* forward declaration for vlc_symbols.h */ 
     921#   if !defined(__PLUGIN__) 
     922#       define vlc_opendir  NULL 
     923#       define vlc_readdir  NULL 
     924#       define vlc_closedir NULL 
     925#   endif 
    923926#endif 
    924927