Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
aebd6a43
Commit
aebd6a43
authored
May 04, 2008
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
libvlc_global_data_t: fix description
parent
49dd062d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
9 deletions
+8
-9
include/vlc_common.h
include/vlc_common.h
+0
-1
src/libvlc.h
src/libvlc.h
+8
-8
No files found.
include/vlc_common.h
View file @
aebd6a43
...
...
@@ -122,7 +122,6 @@ static inline void __vlc_fourcc_to_char( vlc_fourcc_t fcc, char *psz_fourcc )
*****************************************************************************/
/* Internal types */
typedef
struct
libvlc_global_data_t
libvlc_global_data_t
;
typedef
struct
libvlc_int_t
libvlc_int_t
;
typedef
struct
variable_t
variable_t
;
typedef
struct
date_t
date_t
;
...
...
src/libvlc.h
View file @
aebd6a43
...
...
@@ -98,14 +98,14 @@ extern void *
vlc_custom_create
(
vlc_object_t
*
p_this
,
size_t
i_size
,
int
i_type
,
const
char
*
psz_type
);
/**
***************************************************************************
/**
* libvlc_global_data_t (global variable)
*
****************************************************************************
* This structure has an unique instance, statically allocated in
main
and
* never accessed from the outside. It stores
once-initialized data such as
*
the CPU capabilities or the global lock
.
*
****************************************************************************
/
struct
libvlc_global_data_t
*
* This structure has an unique instance, statically allocated in
libvlc
and
* never accessed from the outside. It stores
process-wide VLC variables,
*
mostly process-wide locks, and (currently) the module bank and objects tree
.
*/
typedef
struct
libvlc_global_data_t
{
VLC_COMMON_MEMBERS
...
...
@@ -124,7 +124,7 @@ struct libvlc_global_data_t
#elif defined( WIN32 )
char
*
psz_vlcpath
;
#endif
};
}
libvlc_global_data_t
;
libvlc_global_data_t
*
vlc_global
(
void
);
...
...
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