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
f48af629
Commit
f48af629
authored
Jun 23, 2007
by
Pierre d'Herbemont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Libvlc: Make sure the exported structure are not anonymous.
parent
c510d339
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
6 deletions
+7
-6
include/vlc/libvlc_structures.h
include/vlc/libvlc_structures.h
+7
-6
No files found.
include/vlc/libvlc_structures.h
View file @
f48af629
...
...
@@ -43,7 +43,7 @@ typedef struct libvlc_instance_t libvlc_instance_t;
* @{
*/
typedef
struct
typedef
struct
libvlc_exception_t
{
int
b_raised
;
int
i_code
;
...
...
@@ -68,7 +68,7 @@ typedef struct
* @{
*/
typedef
enum
{
typedef
enum
libvlc_meta_t
{
libvlc_meta_Title
,
libvlc_meta_Artist
}
libvlc_meta_t
;
...
...
@@ -102,7 +102,8 @@ typedef struct libvlc_media_instance_t libvlc_media_instance_t;
* @{
*/
typedef
struct
{
typedef
struct
libvlc_playlist_item_t
{
int
i_id
;
char
*
psz_uri
;
char
*
psz_name
;
...
...
@@ -132,7 +133,7 @@ typedef int libvlc_drawable_t;
/**
* Rectangle type for video geometry
*/
typedef
struct
typedef
struct
libvlc_rectangle_t
{
int
top
,
left
;
int
bottom
,
right
;
...
...
@@ -186,12 +187,12 @@ typedef struct libvlc_log_message_t
* - libvlc_InputPositionChanged
*/
typedef
enum
{
typedef
enum
libvlc_event_type_t
{
libvlc_VolumeChanged
,
libvlc_InputPositionChanged
,
}
libvlc_event_type_t
;
typedef
struct
typedef
struct
libvlc_event_t
{
libvlc_event_type_t
type
;
union
...
...
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