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
9e8ea4a6
Commit
9e8ea4a6
authored
May 23, 2009
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Move intf_sys_t and intf_thread_t definitions
parent
85ab111d
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
9 deletions
+7
-9
include/vlc_common.h
include/vlc_common.h
+0
-4
include/vlc_interface.h
include/vlc_interface.h
+6
-4
modules/gui/qt4/components/extended_panels.hpp
modules/gui/qt4/components/extended_panels.hpp
+1
-1
No files found.
include/vlc_common.h
View file @
9e8ea4a6
...
...
@@ -176,10 +176,6 @@ typedef struct module_cache_t module_cache_t;
typedef
struct
config_category_t
config_category_t
;
/* Interface */
typedef
struct
intf_thread_t
intf_thread_t
;
typedef
struct
intf_sys_t
intf_sys_t
;
/* Input */
typedef
struct
input_thread_t
input_thread_t
;
typedef
struct
input_thread_sys_t
input_thread_sys_t
;
...
...
include/vlc_interface.h
View file @
9e8ea4a6
...
...
@@ -44,8 +44,10 @@ typedef struct intf_dialog_args_t intf_dialog_args_t;
* @{
*/
typedef
struct
intf_sys_t
intf_sys_t
;
/** Describe all interface-specific data of the interface thread */
struct
intf_thread_t
typedef
struct
intf_thread_t
{
VLC_COMMON_MEMBERS
...
...
@@ -60,14 +62,14 @@ struct intf_thread_t
/** Interface module */
module_t
*
p_module
;
void
(
*
pf_run
)
(
intf_thread_t
*
);
/** Run function */
void
(
*
pf_run
)
(
struct
intf_thread_t
*
);
/** Run function */
/** Specific for dialogs providers */
void
(
*
pf_show_dialog
)
(
intf_thread_t
*
,
int
,
int
,
void
(
*
pf_show_dialog
)
(
struct
intf_thread_t
*
,
int
,
int
,
intf_dialog_args_t
*
);
config_chain_t
*
p_cfg
;
};
}
intf_thread_t
;
/** \brief Arguments passed to a dialogs provider
* This describes the arguments passed to the dialogs provider. They are
...
...
modules/gui/qt4/components/extended_panels.hpp
View file @
9e8ea4a6
...
...
@@ -48,7 +48,7 @@ class ExtVideo: public QObject
Q_OBJECT
friend
class
ExtendedDialog
;
public:
ExtVideo
(
intf_thread_t
*
,
QTabWidget
*
);
ExtVideo
(
struct
intf_thread_t
*
,
QTabWidget
*
);
virtual
~
ExtVideo
();
/*void gotoConf( QObject* );*/
private:
...
...
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