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
5cb2537a
Commit
5cb2537a
authored
Aug 13, 2009
by
Geoffroy Couprie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wince: fix build of vouts
parent
86ab79f6
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
0 deletions
+4
-0
modules/video_output/msw/events.c
modules/video_output/msw/events.c
+2
-0
modules/video_output/msw/vout.h
modules/video_output/msw/vout.h
+2
-0
No files found.
modules/video_output/msw/events.c
View file @
5cb2537a
...
@@ -1251,6 +1251,7 @@ void Win32ToggleFullscreen( vout_thread_t *p_vout )
...
@@ -1251,6 +1251,7 @@ void Win32ToggleFullscreen( vout_thread_t *p_vout )
var_SetBool
(
p_vout
,
"fullscreen"
,
p_vout
->
b_fullscreen
);
var_SetBool
(
p_vout
,
"fullscreen"
,
p_vout
->
b_fullscreen
);
}
}
#ifndef UNDER_CE
void
DisableScreensaver
(
vout_thread_t
*
p_vout
)
void
DisableScreensaver
(
vout_thread_t
*
p_vout
)
{
{
/* disable screensaver by temporarily changing system settings */
/* disable screensaver by temporarily changing system settings */
...
@@ -1294,6 +1295,7 @@ void RestoreScreensaver( vout_thread_t *p_vout )
...
@@ -1294,6 +1295,7 @@ void RestoreScreensaver( vout_thread_t *p_vout )
p_vout
->
p_sys
->
i_spi_screensavetimeout
,
NULL
,
0
);
p_vout
->
p_sys
->
i_spi_screensavetimeout
,
NULL
,
0
);
}
}
}
}
#endif
int
CreateEventThread
(
vout_thread_t
*
p_vout
)
int
CreateEventThread
(
vout_thread_t
*
p_vout
)
{
{
...
...
modules/video_output/msw/vout.h
View file @
5cb2537a
...
@@ -259,8 +259,10 @@ int DirectDrawUpdateOverlay( vout_thread_t *p_vout );
...
@@ -259,8 +259,10 @@ int DirectDrawUpdateOverlay( vout_thread_t *p_vout );
void
*
EventThread
(
vlc_object_t
*
p_this
);
void
*
EventThread
(
vlc_object_t
*
p_this
);
void
UpdateRects
(
vout_thread_t
*
p_vout
,
bool
b_force
);
void
UpdateRects
(
vout_thread_t
*
p_vout
,
bool
b_force
);
void
Win32ToggleFullscreen
(
vout_thread_t
*
p_vout
);
void
Win32ToggleFullscreen
(
vout_thread_t
*
p_vout
);
#ifndef UNDER_CE
void
DisableScreensaver
(
vout_thread_t
*
p_vout
);
void
DisableScreensaver
(
vout_thread_t
*
p_vout
);
void
RestoreScreensaver
(
vout_thread_t
*
p_vout
);
void
RestoreScreensaver
(
vout_thread_t
*
p_vout
);
#endif
int
CreateEventThread
(
vout_thread_t
*
p_vout
);
int
CreateEventThread
(
vout_thread_t
*
p_vout
);
void
StopEventThread
(
vout_thread_t
*
p_vout
);
void
StopEventThread
(
vout_thread_t
*
p_vout
);
...
...
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