Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
441f5996
Commit
441f5996
authored
Dec 28, 2007
by
Pierre d'Herbemont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MacOSX/Framework/VLCMediaList.m: Implement -isReadOnly.
parent
c6e47790
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
0 deletions
+12
-0
extras/MacOSX/Framework/Headers/Public/VLCMediaList.h
extras/MacOSX/Framework/Headers/Public/VLCMediaList.h
+2
-0
extras/MacOSX/Framework/Sources/VLCMediaList.m
extras/MacOSX/Framework/Sources/VLCMediaList.m
+10
-0
No files found.
extras/MacOSX/Framework/Headers/Public/VLCMediaList.h
View file @
441f5996
...
@@ -63,6 +63,8 @@ extern NSString * VLCMediaListItemDeleted;
...
@@ -63,6 +63,8 @@ extern NSString * VLCMediaListItemDeleted;
-
(
int
)
indexOfMedia
:(
VLCMedia
*
)
media
;
-
(
int
)
indexOfMedia
:(
VLCMedia
*
)
media
;
-
(
int
)
count
;
-
(
int
)
count
;
-
(
BOOL
)
isReadOnly
;
/* Media list aspect */
/* Media list aspect */
-
(
VLCMediaListAspect
*
)
hierarchicalAspect
;
-
(
VLCMediaListAspect
*
)
hierarchicalAspect
;
-
(
VLCMediaListAspect
*
)
flatAspect
;
-
(
VLCMediaListAspect
*
)
flatAspect
;
...
...
extras/MacOSX/Framework/Sources/VLCMediaList.m
View file @
441f5996
...
@@ -208,6 +208,16 @@ static void HandleMediaListItemDeleted( const libvlc_event_t * event, void * use
...
@@ -208,6 +208,16 @@ static void HandleMediaListItemDeleted( const libvlc_event_t * event, void * use
return
result
;
return
result
;
}
}
-
(
BOOL
)
isReadOnly
{
libvlc_exception_t
p_e
;
libvlc_exception_init
(
&
p_e
);
BOOL
isReadOnly
=
libvlc_media_list_is_readonly
(
p_mlist
);
quit_on_exception
(
&
p_e
);
return
isReadOnly
;
}
/* Media list aspect */
/* Media list aspect */
-
(
VLCMediaListAspect
*
)
hierarchicalAspect
-
(
VLCMediaListAspect
*
)
hierarchicalAspect
{
{
...
...
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