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
1468c26b
Commit
1468c26b
authored
Jul 05, 2008
by
Pierre d'Herbemont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
module: Define module_GetMainModule and module_IsMainModule.
parent
1ce5ed60
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
31 additions
and
1 deletion
+31
-1
include/vlc_modules.h
include/vlc_modules.h
+31
-1
No files found.
include/vlc_modules.h
View file @
1468c26b
...
...
@@ -24,6 +24,7 @@
/*****************************************************************************
* Exported functions.
*****************************************************************************/
#define module_Need(a,b,c,d) __module_Need(VLC_OBJECT(a),b,c,d)
VLC_EXPORT
(
module_t
*
,
__module_Need
,
(
vlc_object_t
*
,
const
char
*
,
const
char
*
,
bool
)
);
#define module_Unneed(a,b) __module_Unneed(VLC_OBJECT(a),b)
...
...
@@ -38,7 +39,6 @@ VLC_EXPORT( void, module_Put, ( module_t *module ) );
VLC_EXPORT
(
module_config_t
*
,
module_GetConfig
,
(
const
module_t
*
,
unsigned
*
)
);
VLC_EXPORT
(
void
,
module_PutConfig
,
(
module_config_t
*
)
);
/* Return a NULL terminated array with the names of the modules that have a
* certain capability.
* Free after uses both the string and the table. */
...
...
@@ -53,3 +53,33 @@ VLC_EXPORT( const char *, module_GetObjName, ( const module_t *m ) );
VLC_EXPORT
(
const
char
*
,
module_GetName
,
(
const
module_t
*
m
,
bool
long_name
)
);
#define module_GetLongName( m ) module_GetName( m, true )
VLC_EXPORT
(
const
char
*
,
module_GetHelp
,
(
const
module_t
*
m
)
);
#define module_GetMainModule(a) __module_GetMainModule(VLC_OBJECT(a))
static
inline
module_t
*
__module_GetMainModule
(
vlc_object_t
*
p_this
)
{
module_t
*
p_module
;
module_t
*
p_main_module
=
NULL
;
vlc_list_t
*
p_list
=
vlc_list_find
(
p_this
,
VLC_OBJECT_MODULE
,
FIND_ANYWHERE
);
if
(
!
p_list
)
return
NULL
;
/* Find the main module */
for
(
int
i
=
0
;
i
<
p_list
->
i_count
;
i
++
)
{
p_module
=
(
module_t
*
)
p_list
->
p_values
[
i
].
p_object
;
if
(
strcmp
(
module_GetObjName
(
p_module
),
"main"
)
==
0
)
{
p_main_module
=
p_module
;
vlc_object_yield
(
(
vlc_object_t
*
)
p_main_module
);
break
;
}
}
vlc_list_release
(
p_list
);
return
p_main_module
;
}
static
inline
bool
module_IsMainModule
(
module_t
*
p_module
)
{
return
!
strcmp
(
module_GetObjName
(
p_module
),
"main"
);
}
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