aboutsummaryrefslogtreecommitdiff
path: root/win32/include/winapi/tvout.h
diff options
context:
space:
mode:
authorgrischka <grischka>2016-10-01 20:27:41 +0200
committergrischka <grischka>2016-10-01 20:27:41 +0200
commit8637c1d0ad08d28052efc1de5c38b63acd2c08fc (patch)
tree9aa1f1ecf3e2aceef2f11ff6eef6a5a3e0fd04fa /win32/include/winapi/tvout.h
parent766ba3694dae5b3d2dfbb5c75c4ebf7069a7ce1f (diff)
downloadtinycc-8637c1d0ad08d28052efc1de5c38b63acd2c08fc.tar.gz
tinycc-8637c1d0ad08d28052efc1de5c38b63acd2c08fc.tar.bz2
Remove misc. files
- from win32/include/winapi: various .h The winapi header set cannot be complete no matter what. So lets have just the minimal set necessary to compile the examples. - remove CMake support (hard to keep up to date) - some other files Also, drop useless changes in win32/lib/(win)crt1.c
Diffstat (limited to 'win32/include/winapi/tvout.h')
-rw-r--r--win32/include/winapi/tvout.h79
1 files changed, 0 insertions, 79 deletions
diff --git a/win32/include/winapi/tvout.h b/win32/include/winapi/tvout.h
deleted file mode 100644
index 228a682..0000000
--- a/win32/include/winapi/tvout.h
+++ /dev/null
@@ -1,79 +0,0 @@
-/**
- * This file has no copyright assigned and is placed in the Public Domain.
- * This file is part of the w64 mingw-runtime package.
- * No warranty is given; refer to the file DISCLAIMER within this package.
- */
-#ifndef __TVOUT__
-#define __TVOUT__
-
-#include <guiddef.h>
-
-typedef struct _VIDEOPARAMETERS {
- GUID Guid;
- ULONG dwOffset;
- ULONG dwCommand;
- ULONG dwFlags;
- ULONG dwMode;
- ULONG dwTVStandard;
- ULONG dwAvailableModes;
- ULONG dwAvailableTVStandard;
- ULONG dwFlickerFilter;
- ULONG dwOverScanX;
- ULONG dwOverScanY;
- ULONG dwMaxUnscaledX;
- ULONG dwMaxUnscaledY;
- ULONG dwPositionX;
- ULONG dwPositionY;
- ULONG dwBrightness;
- ULONG dwContrast;
- ULONG dwCPType;
- ULONG dwCPCommand;
- ULONG dwCPStandard;
- ULONG dwCPKey;
- ULONG bCP_APSTriggerBits;
- UCHAR bOEMCopyProtection[256];
-} VIDEOPARAMETERS,*PVIDEOPARAMETERS,*LPVIDEOPARAMETERS;
-
-#define VP_COMMAND_GET 0x0001
-#define VP_COMMAND_SET 0x0002
-
-#define VP_FLAGS_TV_MODE 0x0001
-#define VP_FLAGS_TV_STANDARD 0x0002
-#define VP_FLAGS_FLICKER 0x0004
-#define VP_FLAGS_OVERSCAN 0x0008
-#define VP_FLAGS_MAX_UNSCALED 0x0010
-#define VP_FLAGS_POSITION 0x0020
-#define VP_FLAGS_BRIGHTNESS 0x0040
-#define VP_FLAGS_CONTRAST 0x0080
-#define VP_FLAGS_COPYPROTECT 0x0100
-
-#define VP_MODE_WIN_GRAPHICS 0x0001
-#define VP_MODE_TV_PLAYBACK 0x0002
-
-#define VP_TV_STANDARD_NTSC_M 0x0001
-#define VP_TV_STANDARD_NTSC_M_J 0x0002
-#define VP_TV_STANDARD_PAL_B 0x0004
-#define VP_TV_STANDARD_PAL_D 0x0008
-#define VP_TV_STANDARD_PAL_H 0x0010
-#define VP_TV_STANDARD_PAL_I 0x0020
-#define VP_TV_STANDARD_PAL_M 0x0040
-#define VP_TV_STANDARD_PAL_N 0x0080
-#define VP_TV_STANDARD_SECAM_B 0x0100
-#define VP_TV_STANDARD_SECAM_D 0x0200
-#define VP_TV_STANDARD_SECAM_G 0x0400
-#define VP_TV_STANDARD_SECAM_H 0x0800
-#define VP_TV_STANDARD_SECAM_K 0x1000
-#define VP_TV_STANDARD_SECAM_K1 0x2000
-#define VP_TV_STANDARD_SECAM_L 0x4000
-#define VP_TV_STANDARD_WIN_VGA 0x8000
-#define VP_TV_STANDARD_NTSC_433 0x00010000
-#define VP_TV_STANDARD_PAL_G 0x00020000
-#define VP_TV_STANDARD_PAL_60 0x00040000
-#define VP_TV_STANDARD_SECAM_L1 0x00080000
-
-#define VP_CP_TYPE_APS_TRIGGER 0x0001
-#define VP_CP_TYPE_MACROVISION 0x0002
-#define VP_CP_CMD_ACTIVATE 0x0001
-#define VP_CP_CMD_DEACTIVATE 0x0002
-#define VP_CP_CMD_CHANGE 0x0004
-#endif