Changeset 6673258639e376114376094236a511d03be5a95e

Show
Ignore:
Timestamp:
05/01/08 21:17:21 (2 months ago)
Author:
Rémi Denis-Courmont <rem@videolan.org>
git-committer:
Rémi Denis-Courmont <rem@videolan.org> 1209669441 +0300
git-parent:

[d1d3dc1d109110bf68cb048c429f6f05a3839200]

git-author:
Rémi Denis-Courmont <rem@videolan.org> 1209669441 +0300
Message:

Put msg_context_global_key to the internal header.

It was not exported from libvlc anyhow.

Files:

Legend:

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

    rd1d3dc1 r6673258  
    10051005#include "vlc_configuration.h" 
    10061006 
    1007 /** The global thread var for msg stack context 
    1008  *  We store this as a static global variable so we don't need a vlc_object_t 
    1009  *  everywhere. 
    1010  *  This key is created in vlc_threads_init and is therefore ready to use at 
    1011  *  the very beginning of the universe */ 
    1012 extern vlc_threadvar_t msg_context_global_key; 
    1013  
    1014  
    10151007#if defined( WIN32 ) || defined( UNDER_CE ) 
    10161008#   define DIR_SEP_CHAR '\\' 
  • src/libvlc.h

    r449fd28 r6673258  
    5959int __vlc_threads_init( vlc_object_t * ); 
    6060int __vlc_threads_end( vlc_object_t * ); 
     61 
     62/** The global thread var for msg stack context 
     63 *  We store this as a static global variable so we don't need a vlc_object_t 
     64 *  everywhere. 
     65 *  This key is created in vlc_threads_init and is therefore ready to use at 
     66 *  the very beginning of the universe */ 
     67extern vlc_threadvar_t msg_context_global_key; 
    6168 
    6269/* 
  • src/misc/messages.c

    r449fd28 r6673258  
    5454 
    5555#include <vlc_charset.h> 
     56#include "../libvlc.h" 
    5657 
    5758/*****************************************************************************