Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
58275b9d
Commit
58275b9d
authored
Mar 05, 2010
by
Pierre d'Herbemont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
modules: Put bool at the end of the structure to eventually ease packing.
parent
503a7851
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
3 deletions
+6
-3
src/modules/modules.h
src/modules/modules.h
+6
-3
No files found.
src/modules/modules.h
View file @
58275b9d
...
@@ -112,9 +112,6 @@ struct module_t
...
@@ -112,9 +112,6 @@ struct module_t
char
*
psz_capability
;
/**< Capability */
char
*
psz_capability
;
/**< Capability */
int
i_score
;
/**< Score for the capability */
int
i_score
;
/**< Score for the capability */
bool
b_unloadable
;
/**< Can we be dlclosed? */
bool
b_submodule
;
/**< Is this a submodule? */
/* Callbacks */
/* Callbacks */
int
(
*
pf_activate
)
(
vlc_object_t
*
);
int
(
*
pf_activate
)
(
vlc_object_t
*
);
void
(
*
pf_deactivate
)
(
vlc_object_t
*
);
void
(
*
pf_deactivate
)
(
vlc_object_t
*
);
...
@@ -137,6 +134,12 @@ struct module_t
...
@@ -137,6 +134,12 @@ struct module_t
bool
b_builtin
;
/* Set to true if the module is built in */
bool
b_builtin
;
/* Set to true if the module is built in */
bool
b_loaded
;
/* Set to true if the dll is loaded */
bool
b_loaded
;
/* Set to true if the dll is loaded */
/*
* Other variables set by the module to identify itself
*/
bool
b_unloadable
;
/**< Can we be dlclosed? */
bool
b_submodule
;
/**< Is this a submodule? */
};
};
module_t
*
vlc_module_create
(
vlc_object_t
*
);
module_t
*
vlc_module_create
(
vlc_object_t
*
);
...
...
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