Commit deb9a70e authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Win32 vout: update comments

parent 302523b2
/***************************************************************************** /*****************************************************************************
* common.c: * common.c: Windows video output common code
***************************************************************************** *****************************************************************************
* Copyright (C) 2001-2009 VLC authors and VideoLAN * Copyright (C) 2001-2009 VLC authors and VideoLAN
* $Id$ * $Id$
...@@ -21,11 +21,12 @@ ...@@ -21,11 +21,12 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/ *****************************************************************************/
/***************************************************************************** /*****************************************************************************
* Preamble: This file contains the functions related to the creation of * Preamble: This file contains the functions related to the init of the vout
* a window and the handling of its messages (events). * structure, the common display code, the screensaver, but not the
* events and the Window Creation (events.c)
*****************************************************************************/ *****************************************************************************/
#ifdef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H
# include "config.h" # include "config.h"
#endif #endif
...@@ -41,7 +42,7 @@ ...@@ -41,7 +42,7 @@
#include <vlc_windows_interfaces.h> #include <vlc_windows_interfaces.h>
static void CommonChangeThumbnailClip(vout_display_t *, bool show); static void CommonChangeThumbnailClip(vout_display_t *, bool show);
static int CommonControlSetFullscreen(vout_display_t *, bool is_fullscreen); static int CommonControlSetFullscreen(vout_display_t *, bool is_fullscreen);
static void DisableScreensaver(vout_display_t *); static void DisableScreensaver(vout_display_t *);
static void RestoreScreensaver(vout_display_t *); static void RestoreScreensaver(vout_display_t *);
...@@ -97,7 +98,6 @@ int CommonInit(vout_display_t *vd) ...@@ -97,7 +98,6 @@ int CommonInit(vout_display_t *vd)
vout_display_SendEventFullscreen(vd, false); vout_display_SendEventFullscreen(vd, false);
} }
/* Why not with glwin32 */
var_Create(vd, "disable-screensaver", VLC_VAR_BOOL | VLC_VAR_DOINHERIT); var_Create(vd, "disable-screensaver", VLC_VAR_BOOL | VLC_VAR_DOINHERIT);
DisableScreensaver (vd); DisableScreensaver (vd);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment