Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
f2453c92
Commit
f2453c92
authored
Sep 17, 2006
by
Clément Stenac
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Don't run growl and msn plugins
parent
c5dde660
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
22 deletions
+0
-22
modules/misc/notify/growl.c
modules/misc/notify/growl.c
+0
-11
modules/misc/notify/msn.c
modules/misc/notify/msn.c
+0
-11
No files found.
modules/misc/notify/growl.c
View file @
f2453c92
...
@@ -38,7 +38,6 @@
...
@@ -38,7 +38,6 @@
*****************************************************************************/
*****************************************************************************/
static
int
Open
(
vlc_object_t
*
);
static
int
Open
(
vlc_object_t
*
);
static
void
Close
(
vlc_object_t
*
);
static
void
Close
(
vlc_object_t
*
);
static
void
Run
(
intf_thread_t
*
);
static
int
ItemChange
(
vlc_object_t
*
,
const
char
*
,
static
int
ItemChange
(
vlc_object_t
*
,
const
char
*
,
vlc_value_t
,
vlc_value_t
,
void
*
);
vlc_value_t
,
vlc_value_t
,
void
*
);
...
@@ -96,8 +95,6 @@ static int Open( vlc_object_t *p_this )
...
@@ -96,8 +95,6 @@ static int Open( vlc_object_t *p_this )
pl_Release
(
p_intf
);
pl_Release
(
p_intf
);
RegisterToGrowl
(
p_this
);
RegisterToGrowl
(
p_this
);
p_intf
->
pf_run
=
Run
;
return
VLC_SUCCESS
;
return
VLC_SUCCESS
;
}
}
...
@@ -111,14 +108,6 @@ static void Close( vlc_object_t *p_this )
...
@@ -111,14 +108,6 @@ static void Close( vlc_object_t *p_this )
pl_Release
(
p_this
);
pl_Release
(
p_this
);
}
}
/*****************************************************************************
* Run
*****************************************************************************/
static
void
Run
(
intf_thread_t
*
p_intf
)
{
msleep
(
INTF_IDLE_SLEEP
);
}
/*****************************************************************************
/*****************************************************************************
* ItemChange: Playlist item change callback
* ItemChange: Playlist item change callback
*****************************************************************************/
*****************************************************************************/
...
...
modules/misc/notify/msn.c
View file @
f2453c92
...
@@ -44,7 +44,6 @@ struct intf_sys_t
...
@@ -44,7 +44,6 @@ struct intf_sys_t
*****************************************************************************/
*****************************************************************************/
static
int
Open
(
vlc_object_t
*
);
static
int
Open
(
vlc_object_t
*
);
static
void
Close
(
vlc_object_t
*
);
static
void
Close
(
vlc_object_t
*
);
static
void
Run
(
intf_thread_t
*
);
static
int
ItemChange
(
vlc_object_t
*
,
const
char
*
,
static
int
ItemChange
(
vlc_object_t
*
,
const
char
*
,
vlc_value_t
,
vlc_value_t
,
void
*
);
vlc_value_t
,
vlc_value_t
,
void
*
);
...
@@ -101,8 +100,6 @@ static int Open( vlc_object_t *p_this )
...
@@ -101,8 +100,6 @@ static int Open( vlc_object_t *p_this )
var_AddCallback
(
p_playlist
,
"playlist-current"
,
ItemChange
,
p_intf
);
var_AddCallback
(
p_playlist
,
"playlist-current"
,
ItemChange
,
p_intf
);
pl_Release
(
p_intf
);
pl_Release
(
p_intf
);
p_intf
->
pf_run
=
Run
;
return
VLC_SUCCESS
;
return
VLC_SUCCESS
;
}
}
...
@@ -127,14 +124,6 @@ static void Close( vlc_object_t *p_this )
...
@@ -127,14 +124,6 @@ static void Close( vlc_object_t *p_this )
free
(
p_intf
->
p_sys
);
free
(
p_intf
->
p_sys
);
}
}
/*****************************************************************************
* Run
*****************************************************************************/
static
void
Run
(
intf_thread_t
*
p_intf
)
{
msleep
(
INTF_IDLE_SLEEP
);
}
/*****************************************************************************
/*****************************************************************************
* ItemChange: Playlist item change callback
* ItemChange: Playlist item change callback
*****************************************************************************/
*****************************************************************************/
...
...
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