summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Roitzsch <mroi@users.sourceforge.net>2004-01-04 17:46:50 +0000
committerMichael Roitzsch <mroi@users.sourceforge.net>2004-01-04 17:46:50 +0000
commitd09136cf7532a18efbe3d25a7c976b1af97be371 (patch)
tree47238621b201519b867cf72efe2d32c4695573eb
parent951fb44e4a3f2b8df529f2f3c76f67c7548b9f94 (diff)
downloadxine-lib-d09136cf7532a18efbe3d25a7c976b1af97be371.tar.gz
xine-lib-d09136cf7532a18efbe3d25a7c976b1af97be371.tar.bz2
video_out_win32.h is no longer needed
CVS patchset: 5991 CVS date: 2004/01/04 17:46:50
-rw-r--r--src/video_out/Makefile.am2
-rwxr-xr-xsrc/video_out/video_out_win32.h67
2 files changed, 1 insertions, 68 deletions
diff --git a/src/video_out/Makefile.am b/src/video_out/Makefile.am
index af4a3c221..234663428 100644
--- a/src/video_out/Makefile.am
+++ b/src/video_out/Makefile.am
@@ -137,4 +137,4 @@ xineplug_vo_out_directx_la_LIBADD = $(DIRECTX_VIDEO_LIBS) $(XINE_LIB)
xineplug_vo_out_directx_la_LDFLAGS = -avoid-version -module @XINE_PLUGIN_MIN_SYMS@
noinst_HEADERS = alphablend.h deinterlace.h video_out_syncfb.h \
- yuv2rgb.h video_out_win32.h x11osd.h
+ yuv2rgb.h x11osd.h
diff --git a/src/video_out/video_out_win32.h b/src/video_out/video_out_win32.h
deleted file mode 100755
index 0cf51094e..000000000
--- a/src/video_out/video_out_win32.h
+++ /dev/null
@@ -1,67 +0,0 @@
-/*
- * Copyright (C) 2000-2001 the xine project
- *
- * This file is part of xine, a unix video player.
- *
- * xine is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * xine is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
- *
- * $Id: video_out_win32.h,v 1.1 2003/04/22 20:09:39 tchamp Exp $
- *
- * structs and defines specific to all win32 related output plugins
- * (any win32 base xine ui should include this)
- */
-
-#include <windows.h>
-#include <windowsx.h>
-#include "inttypes.h"
-
-#include "vo_scale.h"
-
-#ifndef HAVE_VIDEO_OUT_WIN32_H
-#define HAVE_VIDEO_OUT_WIN32_H
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-/*
- * this is the visual data struct any win32 gui should supply
- * (pass this to init_video_out_plugin or the xine_load_video_output_plugin
- * utility function)
- */
-
-typedef struct {
-
- HWND WndHnd; /* handle of window associated with primary surface */
- HINSTANCE HInst; /* handle of windows application instance */
- RECT WndRect; /* rect of window client points translated to screen cooridnates */
- boolean FullScreen; /* is window fullscreen */
- HBRUSH Brush; /* window brush for background color */
- COLORREF ColorKey; /* window brush color key */
- vo_scale_t vs;
-
-} win32_visual_t;
-
-/*
- * constants for gui_data_exchange's data_type parameter
- */
-
-#define GUI_WIN32_MOVED_OR_RESIZED 0
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif