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
1eee419f
Commit
1eee419f
authored
Feb 25, 2014
by
David Fuhrmann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
macosx: remove unused intf_sys_t
parent
08b63669
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
1 addition
and
28 deletions
+1
-28
modules/gui/macosx/intf.h
modules/gui/macosx/intf.h
+0
-10
modules/gui/macosx/intf.m
modules/gui/macosx/intf.m
+0
-17
modules/gui/macosx/macosx.m
modules/gui/macosx/macosx.m
+1
-1
No files found.
modules/gui/macosx/intf.h
View file @
1eee419f
...
...
@@ -57,16 +57,6 @@ vout_thread_t *getVout(void);
vout_thread_t
*
getVoutForActiveWindow
(
void
);
audio_output_t
*
getAout
(
void
);
/*****************************************************************************
* intf_sys_t: description and status of the interface
*****************************************************************************/
struct
intf_sys_t
{
/* menus handlers */
bool
b_input_update
;
bool
b_aout_update
;
bool
b_vout_update
;
};
/*****************************************************************************
* VLCMain interface
...
...
modules/gui/macosx/intf.m
View file @
1eee419f
...
...
@@ -108,29 +108,12 @@ int OpenIntf (vlc_object_t *p_this)
[
VLCApplication
sharedApplication
];
intf_thread_t
*
p_intf
=
(
intf_thread_t
*
)
p_this
;
p_intf
->
p_sys
=
malloc
(
sizeof
(
intf_sys_t
));
if
(
p_intf
->
p_sys
==
NULL
)
return
VLC_ENOMEM
;
memset
(
p_intf
->
p_sys
,
0
,
sizeof
(
*
p_intf
->
p_sys
));
Run
(
p_intf
);
[
o_pool
release
];
return
VLC_SUCCESS
;
}
/*****************************************************************************
* CloseIntf: destroy interface
*****************************************************************************/
void
CloseIntf
(
vlc_object_t
*
p_this
)
{
intf_thread_t
*
p_intf
=
(
intf_thread_t
*
)
p_this
;
free
(
p_intf
->
p_sys
);
}
static
NSLock
*
o_vout_provider_lock
=
nil
;
static
int
WindowControl
(
vout_window_t
*
,
int
i_query
,
va_list
);
...
...
modules/gui/macosx/macosx.m
View file @
1eee419f
...
...
@@ -136,7 +136,7 @@ static const char *const itunes_list_text[] = {
vlc_module_begin()
set_description(N_("Mac OS X interface"))
set_capability("interface", 200)
set_callbacks(OpenIntf,
CloseIntf
)
set_callbacks(OpenIntf,
NULL
)
set_category(CAT_INTERFACE)
set_subcategory(SUBCAT_INTERFACE_MAIN)
cannot_unload_broken_library()
...
...
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