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
e0bbc196
Commit
e0bbc196
authored
Mar 28, 2008
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Replace define by enum
parent
955d1b68
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
32 additions
and
30 deletions
+32
-30
include/vlc_interface.h
include/vlc_interface.h
+32
-30
No files found.
include/vlc_interface.h
View file @
e0bbc196
...
...
@@ -153,36 +153,38 @@ VLC_EXPORT( int, __intf_Eject, ( vlc_object_t *, const char * ) );
#endif
/* Interface dialog ids for dialog providers */
#define INTF_DIALOG_FILE_SIMPLE 1
#define INTF_DIALOG_FILE 2
#define INTF_DIALOG_DISC 3
#define INTF_DIALOG_NET 4
#define INTF_DIALOG_CAPTURE 5
#define INTF_DIALOG_SAT 6
#define INTF_DIALOG_DIRECTORY 7
#define INTF_DIALOG_STREAMWIZARD 8
#define INTF_DIALOG_WIZARD 9
#define INTF_DIALOG_PLAYLIST 10
#define INTF_DIALOG_MESSAGES 11
#define INTF_DIALOG_FILEINFO 12
#define INTF_DIALOG_PREFS 13
#define INTF_DIALOG_BOOKMARKS 14
#define INTF_DIALOG_EXTENDED 15
#define INTF_DIALOG_POPUPMENU 20
#define INTF_DIALOG_AUDIOPOPUPMENU 21
#define INTF_DIALOG_VIDEOPOPUPMENU 22
#define INTF_DIALOG_MISCPOPUPMENU 23
#define INTF_DIALOG_FILE_GENERIC 30
#define INTF_DIALOG_INTERACTION 50
#define INTF_DIALOG_UPDATEVLC 90
#define INTF_DIALOG_VLM 91
#define INTF_DIALOG_EXIT 99
typedef
enum
vlc_dialog
{
INTF_DIALOG_FILE_SIMPLE
=
1
,
INTF_DIALOG_FILE
,
INTF_DIALOG_DISC
,
INTF_DIALOG_NET
,
INTF_DIALOG_CAPTURE
,
INTF_DIALOG_SAT
,
INTF_DIALOG_DIRECTORY
,
INTF_DIALOG_STREAMWIZARD
,
INTF_DIALOG_WIZARD
,
INTF_DIALOG_PLAYLIST
,
INTF_DIALOG_MESSAGES
,
INTF_DIALOG_FILEINFO
,
INTF_DIALOG_PREFS
,
INTF_DIALOG_BOOKMARKS
,
INTF_DIALOG_EXTENDED
,
INTF_DIALOG_POPUPMENU
=
20
,
INTF_DIALOG_AUDIOPOPUPMENU
,
INTF_DIALOG_VIDEOPOPUPMENU
,
INTF_DIALOG_MISCPOPUPMENU
,
INTF_DIALOG_FILE_GENERIC
=
30
,
INTF_DIALOG_INTERACTION
=
50
,
INTF_DIALOG_UPDATEVLC
=
90
,
INTF_DIALOG_VLM
,
INTF_DIALOG_EXIT
=
99
}
vlc_dialog_t
;
/* Useful text messages shared by interfaces */
#define INTF_ABOUT_MSG LICENSE_MSG
...
...
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