Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
66732586
Commit
66732586
authored
May 01, 2008
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Put msg_context_global_key to the internal header.
It was not exported from libvlc anyhow.
parent
d1d3dc1d
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
8 deletions
+8
-8
include/vlc_common.h
include/vlc_common.h
+0
-8
src/libvlc.h
src/libvlc.h
+7
-0
src/misc/messages.c
src/misc/messages.c
+1
-0
No files found.
include/vlc_common.h
View file @
66732586
...
...
@@ -1004,14 +1004,6 @@ VLC_EXPORT( const char *, VLC_Changeset, ( void ) );
#include "main.h"
#include "vlc_configuration.h"
/** The global thread var for msg stack context
* We store this as a static global variable so we don't need a vlc_object_t
* everywhere.
* This key is created in vlc_threads_init and is therefore ready to use at
* the very beginning of the universe */
extern
vlc_threadvar_t
msg_context_global_key
;
#if defined( WIN32 ) || defined( UNDER_CE )
# define DIR_SEP_CHAR '\\'
# define DIR_SEP "\\"
...
...
src/libvlc.h
View file @
66732586
...
...
@@ -59,6 +59,13 @@ VLC_EXPORT( const char * , system_VLCPath, (void));
int
__vlc_threads_init
(
vlc_object_t
*
);
int
__vlc_threads_end
(
vlc_object_t
*
);
/** The global thread var for msg stack context
* We store this as a static global variable so we don't need a vlc_object_t
* everywhere.
* This key is created in vlc_threads_init and is therefore ready to use at
* the very beginning of the universe */
extern
vlc_threadvar_t
msg_context_global_key
;
/*
* CPU capabilities
*/
...
...
src/misc/messages.c
View file @
66732586
...
...
@@ -53,6 +53,7 @@
#include <assert.h>
#include <vlc_charset.h>
#include "../libvlc.h"
/*****************************************************************************
* Local macros
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment