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
a2980a5e
Commit
a2980a5e
authored
Oct 01, 2009
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed useless includes (msw).
parent
87e92fed
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
2 additions
and
32 deletions
+2
-32
modules/video_output/msw/common.c
modules/video_output/msw/common.c
+0
-11
modules/video_output/msw/direct3d.c
modules/video_output/msw/direct3d.c
+0
-3
modules/video_output/msw/directx.c
modules/video_output/msw/directx.c
+0
-3
modules/video_output/msw/events.c
modules/video_output/msw/events.c
+2
-9
modules/video_output/msw/glwin32.c
modules/video_output/msw/glwin32.c
+0
-4
modules/video_output/msw/wingdi.c
modules/video_output/msw/wingdi.c
+0
-2
No files found.
modules/video_output/msw/common.c
View file @
a2980a5e
...
@@ -30,21 +30,11 @@
...
@@ -30,21 +30,11 @@
# include "config.h"
# include "config.h"
#endif
#endif
#include <errno.h>
/* ENOMEM */
#include <ctype.h>
/* tolower() */
#ifndef _WIN32_WINNT
# define _WIN32_WINNT 0x0500
#endif
#include <vlc_common.h>
#include <vlc_common.h>
#include <vlc_interface.h>
#include <vlc_playlist.h>
#include <vlc_vout.h>
#include <vlc_vout.h>
#include <vlc_vout_window.h>
#include <vlc_vout_window.h>
#include <windows.h>
#include <windows.h>
#include <tchar.h>
#include <windowsx.h>
#include <windowsx.h>
#include <shellapi.h>
#include <shellapi.h>
...
@@ -58,7 +48,6 @@
...
@@ -58,7 +48,6 @@
#include <GL/gl.h>
#include <GL/gl.h>
#endif
#endif
#include <vlc_keys.h>
#include "vout.h"
#include "vout.h"
#ifndef UNDER_CE
#ifndef UNDER_CE
...
...
modules/video_output/msw/direct3d.c
View file @
a2980a5e
...
@@ -33,15 +33,12 @@
...
@@ -33,15 +33,12 @@
* effectively display the pictures.
* effectively display the pictures.
*
*
*****************************************************************************/
*****************************************************************************/
#include <errno.h>
/* ENOMEM */
#ifdef HAVE_CONFIG_H
#ifdef HAVE_CONFIG_H
# include "config.h"
# include "config.h"
#endif
#endif
#include <vlc_common.h>
#include <vlc_common.h>
#include <vlc_plugin.h>
#include <vlc_plugin.h>
#include <vlc_interface.h>
#include <vlc_playlist.h>
#include <vlc_playlist.h>
#include <vlc_vout.h>
#include <vlc_vout.h>
...
...
modules/video_output/msw/directx.c
View file @
a2980a5e
...
@@ -34,9 +34,6 @@
...
@@ -34,9 +34,6 @@
* display video in window mode.
* display video in window mode.
*
*
*****************************************************************************/
*****************************************************************************/
#include <errno.h>
/* ENOMEM */
#ifdef HAVE_CONFIG_H
#ifdef HAVE_CONFIG_H
# include "config.h"
# include "config.h"
#endif
#endif
...
...
modules/video_output/msw/events.c
View file @
a2980a5e
...
@@ -30,24 +30,17 @@
...
@@ -30,24 +30,17 @@
# include "config.h"
# include "config.h"
#endif
#endif
#include <errno.h>
/* ENOMEM */
#include <ctype.h>
/* tolower() */
#ifndef _WIN32_WINNT
# define _WIN32_WINNT 0x0500
#endif
#include <vlc_common.h>
#include <vlc_common.h>
#include <vlc_interface.h>
#include <vlc_playlist.h>
#include <vlc_playlist.h>
#include <vlc_vout.h>
#include <vlc_vout.h>
#include <vlc_vout_window.h>
#include <vlc_vout_window.h>
#include <windows.h>
#include <windows.h>
#include <tchar.h>
#include <windowsx.h>
#include <windowsx.h>
#include <shellapi.h>
#include <shellapi.h>
#include <ctype.h>
#ifdef MODULE_NAME_IS_directx
#ifdef MODULE_NAME_IS_directx
#include <ddraw.h>
#include <ddraw.h>
#endif
#endif
...
...
modules/video_output/msw/glwin32.c
View file @
a2980a5e
...
@@ -20,16 +20,12 @@
...
@@ -20,16 +20,12 @@
* along with this program; if not, write to the Free Software
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
*****************************************************************************/
#include <errno.h>
/* ENOMEM */
#ifdef HAVE_CONFIG_H
#ifdef HAVE_CONFIG_H
# include "config.h"
# include "config.h"
#endif
#endif
#include <vlc_common.h>
#include <vlc_common.h>
#include <vlc_plugin.h>
#include <vlc_plugin.h>
#include <vlc_interface.h>
#include <vlc_vout.h>
#include <vlc_vout.h>
#include <windows.h>
#include <windows.h>
...
...
modules/video_output/msw/wingdi.c
View file @
a2980a5e
...
@@ -32,12 +32,10 @@
...
@@ -32,12 +32,10 @@
#include <vlc_common.h>
#include <vlc_common.h>
#include <vlc_plugin.h>
#include <vlc_plugin.h>
#include <vlc_interface.h>
#include <vlc_playlist.h>
#include <vlc_playlist.h>
#include <vlc_vout.h>
#include <vlc_vout.h>
#include <windows.h>
#include <windows.h>
#include <tchar.h>
#include <commctrl.h>
#include <commctrl.h>
#include "vout.h"
#include "vout.h"
...
...
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