Changeset 6673258639e376114376094236a511d03be5a95e
- 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
| rd1d3dc1 |
r6673258 |
|
| 1005 | 1005 | #include "vlc_configuration.h" |
|---|
| 1006 | 1006 | |
|---|
| 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 | | |
|---|
| 1015 | 1007 | #if defined( WIN32 ) || defined( UNDER_CE ) |
|---|
| 1016 | 1008 | # define DIR_SEP_CHAR '\\' |
|---|
| r449fd28 |
r6673258 |
|
| 59 | 59 | int __vlc_threads_init( vlc_object_t * ); |
|---|
| 60 | 60 | int __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 */ |
|---|
| | 67 | extern vlc_threadvar_t msg_context_global_key; |
|---|
| 61 | 68 | |
|---|
| 62 | 69 | /* |
|---|
| r449fd28 |
r6673258 |
|
| 54 | 54 | |
|---|
| 55 | 55 | #include <vlc_charset.h> |
|---|
| | 56 | #include "../libvlc.h" |
|---|
| 56 | 57 | |
|---|
| 57 | 58 | /***************************************************************************** |
|---|