Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/mpc-hc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCasimir666 <casimir666@users.sourceforge.net>2007-05-06 21:10:16 +0400
committerCasimir666 <casimir666@users.sourceforge.net>2007-05-06 21:10:16 +0400
commit8f9e9eda9ffb4d5104ba036b62aa420e7b5d3541 (patch)
treef71b4db3d52ac989e5da6a89b2dd00a952de3eab /src
parenta3f172e113ab8401fa78fcc313e972325619360f (diff)
git-svn-id: https://mpc-hc.svn.sourceforge.net/svnroot/mpc-hc/trunk@95 10f7b99b-c216-0410-bff0-8a66a9350fd8
Diffstat (limited to 'src')
-rw-r--r--src/apps/mplayerc/Struct.h630
-rw-r--r--src/apps/mplayerc/mplayerc.vcproj2205
-rw-r--r--src/apps/mplayerc/mplayerc_vs2005.vcproj6
3 files changed, 1331 insertions, 1510 deletions
diff --git a/src/apps/mplayerc/Struct.h b/src/apps/mplayerc/Struct.h
new file mode 100644
index 000000000..918c40f34
--- /dev/null
+++ b/src/apps/mplayerc/Struct.h
@@ -0,0 +1,630 @@
+/*********************************************************************
+ * Structures and definitions undocumented or included in the NTDDK. *
+ *********************************************************************/
+
+#ifndef __STRUCT_H__
+#define __STRUCT_H__
+
+///////////////// Windows NT ///////////////
+#include <winternl.h>
+
+typedef unsigned long ULONG_PTR, *PULONG_PTR;
+typedef LONG NTSTATUS, *PNTSTATUS;
+typedef ULONG KAFFINITY, *PKAFFINITY;
+typedef LONG KPRIORITY;
+
+#define NT_SUCCESS(Status) ((NTSTATUS)(Status) >= 0)
+
+typedef void (CALLBACK *PKNORMAL_ROUTINE)(PVOID, PVOID, PVOID);
+
+typedef struct _CLIENT_ID {
+ HANDLE UniqueProcess;
+ HANDLE UniqueThread;
+} CLIENT_ID, *PCLIENT_ID;
+
+#define InitializeObjectAttributes( p, n, a, r, s ) { \
+ (p)->Length = sizeof( OBJECT_ATTRIBUTES ); \
+ (p)->RootDirectory = r; \
+ (p)->Attributes = a; \
+ (p)->ObjectName = n; \
+ (p)->SecurityDescriptor = s; \
+ (p)->SecurityQualityOfService = NULL; \
+ }
+
+#define OBJ_INHERIT 0x00000002L
+#define OBJ_PERMANENT 0x00000010L
+#define OBJ_EXCLUSIVE 0x00000020L
+#define OBJ_CASE_INSENSITIVE 0x00000040L
+#define OBJ_OPENIF 0x00000080L
+#define OBJ_OPENLINK 0x00000100L
+#define OBJ_KERNEL_HANDLE 0x00000200L
+
+
+typedef struct RTL_DRIVE_LETTER_CURDIR { // Size = 0x10
+ USHORT Flags;
+ USHORT Length;
+ ULONG TimeStamp;
+ UNICODE_STRING DosPath;
+} RTL_DRIVE_LETTER_CURDIR, *PRTL_DRIVE_LETTER_CURDIR;
+
+typedef struct _RTL_USER_PROCESS_PARAMETERS { // Size = 0x290
+ ULONG AllocationSize;
+ ULONG Size;
+ ULONG Flags;
+ ULONG DebugFlags;
+ HANDLE hConsole;
+ ULONG ProcessGroup;
+ HANDLE hStdInput;
+ HANDLE hStdOutput;
+ HANDLE hStdError;
+ UNICODE_STRING CurrentDirectoryName;
+ HANDLE CurrentDirectoryHandle;
+ UNICODE_STRING DllPath;
+ UNICODE_STRING ImagePathName;
+ UNICODE_STRING CommandLine;
+ PWSTR Environment;
+ ULONG StartingPositionLeft;
+ ULONG StartingPositionTop;
+ ULONG Width;
+ ULONG Height;
+ ULONG CharWidth;
+ ULONG CharHeight;
+ ULONG ConsoleTextAttributes;
+ ULONG WindowFlags;
+ ULONG ShowWindowFlags;
+ UNICODE_STRING WindowTitle;
+ UNICODE_STRING DesktopName;
+ UNICODE_STRING ShellInfo;
+ UNICODE_STRING RuntimeInfo;
+ RTL_DRIVE_LETTER_CURDIR DLCurrentDirectory[0x20];
+} RTL_USER_PROCESS_PARAMETERS, *PRTL_USER_PROCESS_PARAMETERS;
+
+typedef struct _LDR_MODULE {
+ LIST_ENTRY InLoadOrderModuleList;
+ LIST_ENTRY InMemoryOrderModuleList;
+ LIST_ENTRY InInitializationOrderModuleList;
+ PVOID BaseAddress;
+ PVOID EntryPoint;
+ ULONG SizeOfImage;
+ UNICODE_STRING FullDllName;
+ UNICODE_STRING BaseDllName;
+ ULONG Flags;
+ SHORT LoadCount;
+ SHORT TlsIndex;
+ LIST_ENTRY HashTableEntry;
+ ULONG TimeDateStamp;
+} LDR_MODULE, *PLDR_MODULE;
+
+typedef struct _PEB_LDR_DATA { // Size = 0x24
+ ULONG Length; // 00
+ BOOLEAN Initialized; // 04
+ PVOID SsHandle; // 08
+ LIST_ENTRY InLoadOrderModuleList; // 0C
+ LIST_ENTRY InMemoryOrderModuleList; // 14
+ LIST_ENTRY InInitializationOrderModuleList; // 1C
+// void * EntryInProgress; // 24
+} PEB_LDR_DATA, *PPEB_LDR_DATA;
+
+typedef struct _PEB_FREE_BLOCK { // Size = 8
+struct _PEB_FREE_BLOCK *Next;
+ULONG Size;
+} PEB_FREE_BLOCK, *PPEB_FREE_BLOCK;
+
+// Structured Exception Handler
+typedef struct _SEH {
+ struct _SEH *pNext;
+ FARPROC pfnHandler;
+} SEH, *PSEH;
+
+#pragma pack(1)
+
+// Thread Information Block (FS:[0])
+typedef struct _TIB_NT {
+ PSEH pvExcept; // 00 Head of exception record list
+ PVOID pvStackBase; // 04
+ PVOID pvStackLimit; // 08
+ PVOID SubSystemTib; // 0C
+ union {
+ PVOID FiberData; // 10
+ DWORD Version;
+ };
+ PVOID pvArbitrary; // 14 Available for application use
+ struct _TIB_NT *pTIBSelf; // 18 Linear address of TIB structure
+} TIB_NT, *PTIB_NT;
+
+typedef void (*PPEBLOCKROUTINE)(PVOID);
+
+// PEB (Process Environment Block) data structure (FS:[0x30])
+// Located at addr. 0x7FFDF000
+typedef struct _PEB_NT { // Size = 0x1E8
+ BOOLEAN InheritedAddressSpace; //000
+ BOOLEAN ReadImageFileExecOptions; //001
+ BOOLEAN BeingDebugged; //002
+ BOOLEAN SpareBool; //003 Allocation size
+ HANDLE Mutant; //004
+ HINSTANCE ImageBaseAddress; //008 Instance
+ PPEB_LDR_DATA LdrData; //00C
+ PRTL_USER_PROCESS_PARAMETERS ProcessParameters; //010
+ ULONG SubSystemData; //014
+ HANDLE ProcessHeap; //018
+ KSPIN_LOCK FastPebLock; //01C
+ PPEBLOCKROUTINE FastPebLockRoutine; //020
+ PPEBLOCKROUTINE FastPebUnlockRoutine; //024
+ ULONG EnvironmentUpdateCount; //028
+ PVOID * KernelCallbackTable; //02C
+ PVOID EventLogSection; //030
+ PVOID EventLog; //034
+ PPEB_FREE_BLOCK FreeList; //038
+ ULONG TlsExpansionCounter; //03C
+ ULONG TlsBitmap; //040
+ LARGE_INTEGER TlsBitmapBits; //044
+ PVOID ReadOnlySharedMemoryBase; //04C
+ PVOID ReadOnlySharedMemoryHeap; //050
+ PVOID * ReadOnlyStaticServerData; //054
+ PVOID AnsiCodePageData; //058
+ PVOID OemCodePageData; //05C
+ PVOID UnicodeCaseTableData; //060
+ ULONG NumberOfProcessors; //064
+ LARGE_INTEGER NtGlobalFlag; //068 Address of a local copy
+ LARGE_INTEGER CriticalSectionTimeout; //070
+ ULONG HeapSegmentReserve; //078
+ ULONG HeapSegmentCommit; //07C
+ ULONG HeapDeCommitTotalFreeThreshold; //080
+ ULONG HeapDeCommitFreeBlockThreshold; //084
+ ULONG NumberOfHeaps; //088
+ ULONG MaximumNumberOfHeaps; //08C
+ PVOID ** ProcessHeaps; //090
+ PVOID GdiSharedHandleTable; //094
+ PVOID ProcessStarterHelper; //098
+ PVOID GdiDCAttributeList; //09C
+ KSPIN_LOCK LoaderLock; //0A0
+ ULONG OSMajorVersion; //0A4
+ ULONG OSMinorVersion; //0A8
+ USHORT OSBuildNumber; //0AC
+ USHORT OSCSDVersion; //0AE
+ ULONG OSPlatformId; //0B0
+ ULONG ImageSubsystem; //0B4
+ ULONG ImageSubsystemMajorVersion; //0B8
+ ULONG ImageSubsystemMinorVersion; //0BC
+ ULONG ImageProcessAffinityMask; //0C0
+ ULONG GdiHandleBuffer[0x22]; //0C4
+ ULONG PostProcessInitRoutine; //14C
+ ULONG TlsExpansionBitmap; //150
+ UCHAR TlsExpansionBitmapBits[0x80]; //154
+ ULONG SessionId; //1D4
+ void * AppCompatInfo; //1D8
+ UNICODE_STRING CSDVersion; //1DC
+} PEB_NT, *PPEB_NT;
+
+// TEB (Thread Environment Block) data structure (FS:[0x18])
+// Located at 0x7FFDE000, 0x7FFDD000, ...
+typedef struct _TEB_NT { // Size = 0xF88
+ NT_TIB Tib; //000
+ PVOID EnvironmentPointer; //01C
+ CLIENT_ID ClientId; //020
+ HANDLE ActiveRpcHandle; //028
+ PVOID ThreadLocalStoragePointer; //02C
+ PPEB_NT ProcessEnvironmentBlock; //030 PEB
+ ULONG LastErrorValue; //034
+ ULONG CountOfOwnedCriticalSections; //038
+ ULONG CsrClientThread; //03C
+ ULONG Win32ThreadInfo; //040
+ UCHAR Win32ClientInfo[0x7C]; //044
+ ULONG WOW32Reserved; //0C0
+ ULONG CurrentLocale; //0C4
+ ULONG FpSoftwareStatusRegister; //0C8
+ UCHAR SystemReserved1[0xD8]; //0CC
+ ULONG Spare1; //1A4
+ ULONG ExceptionCode; //1A8
+ UCHAR SpareBytes1[0x28]; //1AC
+ UCHAR SystemReserved2[0x28]; //1D4
+ UCHAR GdiTebBatch[0x4E0]; //1FC
+ ULONG GdiRgn; //6DC
+ ULONG GdiPen; //6E0
+ ULONG GdiBrush; //6E4
+ CLIENT_ID RealClientId; //6E8
+ ULONG GdiCachedProcessHandle; //6F0
+ ULONG GdiClientPID; //6F4
+ ULONG GdiClientTID; //6F8
+ ULONG GdiThreadLocalInfo; //6FC
+ UCHAR UserReserved[0x14]; //700
+ UCHAR glDispatchTable[0x460]; //714
+ UCHAR glReserved1[0x68]; //B74
+ ULONG glReserved2; //BDC
+ ULONG glSectionInfo; //BE0
+ ULONG glSection; //BE4
+ ULONG glTable; //BE8
+ ULONG glCurrentRC; //BEC
+ ULONG glContext; //BF0
+ ULONG LastStatusValue; //BF4
+ LARGE_INTEGER StaticUnicodeString; //BF8
+ UCHAR StaticUnicodeBuffer[0x20C]; //C00
+ ULONG DeallocationStack; //E0C
+ UCHAR TlsSlots[0x100]; //E10
+ LARGE_INTEGER TlsLinks; //F10
+ ULONG Vdm; //F18
+ ULONG ReservedForNtRpc; //F1C
+ LARGE_INTEGER DbgSsReserved; //F20
+ ULONG HardErrorsAreDisabled; //F28
+ UCHAR Instrumentation[0x40]; //F2C
+ ULONG WinSockData; //F6C
+ ULONG GdiBatchCount; //F70
+ ULONG Spare2; //F74
+ ULONG Spare3; //F78
+ ULONG Spare4; //F7C
+ ULONG ReservedForOle; //F80
+ ULONG WaitingOnLoaderLock; //F84
+// PVOID StackCommit;
+// PVOID StackCommitMax;
+// PVOID StackReserved;
+// PVOID MessageQueue;
+} TEB_NT, *PTEB_NT;
+
+#pragma pack()
+
+
+
+typedef struct _THREAD_BASIC_INFORMATION {
+ NTSTATUS ExitStatus;
+ PTIB_NT TebBaseAddress;
+ CLIENT_ID ClientId;
+ KAFFINITY AffinityMask;
+ KPRIORITY Priority;
+ KPRIORITY BasePriority;
+} THREAD_BASIC_INFORMATION, *PTHREAD_BASIC_INFORMATION;
+
+
+#define STATUS_INFO_LENGTH_MISMATCH ((NTSTATUS)0xC0000004L)
+#define SystemProcessesAndThreadsInformation 5
+
+
+typedef struct _VM_COUNTERS {
+ SIZE_T PeakVirtualSize;
+ SIZE_T VirtualSize;
+ ULONG PageFaultCount;
+ SIZE_T PeakWorkingSetSize;
+ SIZE_T WorkingSetSize;
+ SIZE_T QuotaPeakPagedPoolUsage;
+ SIZE_T QuotaPagedPoolUsage;
+ SIZE_T QuotaPeakNonPagedPoolUsage;
+ SIZE_T QuotaNonPagedPoolUsage;
+ SIZE_T PagefileUsage;
+ SIZE_T PeakPagefileUsage;
+} VM_COUNTERS;
+
+typedef struct _SYSTEM_THREAD_INFORMATION {
+ LARGE_INTEGER KernelTime;
+ LARGE_INTEGER UserTime;
+ LARGE_INTEGER CreateTime;
+ ULONG WaitTime;
+ PVOID StartAddress;
+ CLIENT_ID ClientId;
+ KPRIORITY Priority;
+ KPRIORITY BasePriority;
+ ULONG ContextSwitchCount;
+ LONG State;
+ LONG WaitReason;
+} SYSTEM_THREAD_INFORMATION, *PSYSTEM_THREAD_INFORMATION;
+
+// The size of the SYSTEM_PROCESS_INFORMATION structure is
+// different on NT 4 and Win2K.
+
+typedef struct _SYSTEM_PROCESS_INFORMATION_NT4 {
+ ULONG NextEntryDelta;
+ ULONG ThreadCount;
+ ULONG Reserved1[6];
+ LARGE_INTEGER CreateTime;
+ LARGE_INTEGER UserTime;
+ LARGE_INTEGER KernelTime;
+ UNICODE_STRING ProcessName;
+ KPRIORITY BasePriority;
+ ULONG ProcessId;
+ ULONG InheritedFromProcessId;
+ ULONG HandleCount;
+ ULONG Reserved2[2];
+ VM_COUNTERS VmCounters;
+ SYSTEM_THREAD_INFORMATION Threads[1];
+} SYSTEM_PROCESS_INFORMATION_NT4, *PSYSTEM_PROCESS_INFORMATION_NT4;
+
+
+/////////////////////// Windows 95 /////////////////////////
+
+#pragma pack(1)
+
+#define VA_SHARED 0x8000000 // Undocumented flag to allocate shared memory in Win9x
+
+// Kernel32 objects (WIN95)
+#define WIN95_K32OBJ_SEMAPHORE 0x1
+#define WIN95_K32OBJ_EVENT 0x2
+#define WIN95_K32OBJ_MUTEX 0x3
+#define WIN95_K32OBJ_CRITICAL_SECTION 0x4
+#define WIN95_K32OBJ_PROCESS 0x5
+#define WIN95_K32OBJ_THREAD 0x6
+#define WIN95_K32OBJ_FILE 0x7
+#define WIN95_K32OBJ_CHANGE 0x8
+#define WIN95_K32OBJ_CONSOLE 0x9
+#define WIN95_K32OBJ_SCREEN_BUFFER 0xA
+#define WIN95_K32OBJ_MEM_MAPPED_FILE 0xB
+#define WIN95_K32OBJ_SERIAL 0xC
+#define WIN95_K32OBJ_DEVICE_IOCTL 0xD
+#define WIN95_K32OBJ_PIPE 0xE
+#define WIN95_K32OBJ_MAILSLOT 0xF
+#define WIN95_K32OBJ_TOOLHELP_SNAPSHOT 0x10
+#define WIN95_K32OBJ_SOCKET 0x11
+
+// TIB flags
+#define TIBF_WIN32 0x00000001
+#define TIBF_TRAP 0x00000002
+
+// Process Database flags (WIN95)
+#define fDebugSingle 0x00000001 // Set if process is being debugged
+#define fCreateProcessEvent 0x00000002 // Set in debugged process after starting
+#define fExitProcessEvent 0x00000004 // Might be set in debugged process at exit time
+#define fWin16Process 0x00000008 // 16-bit process
+#define fDosProcess 0x00000010 // DOS process
+#define fConsoleProcess 0x00000020 // 32-bit console process
+#define fFileApisAreOem 0x00000040 // SetFileAPIsToOEM
+#define fNukeProcess 0x00000080
+#define fServiceProcess 0x00000100 // RegisterServiceProcess
+#define fLoginScriptHack 0x00000800 // Might be a Novell network login process
+#define fSendDllNotifications 0x00200000
+#define fDebugEventPending 0x00400000 // e.g. stopped in debugger
+#define fNearlyTerminating 0x00800000
+#define fFaulted 0x08000000
+#define fTerminating 0x10000000
+#define fTerminated 0x20000000
+#define fInitError 0x40000000
+#define fSignaled 0x80000000
+
+// Thread Database flags (WIN95)
+#define fCreateThreadEvent 0x00000001 // Set if thread is being debugged
+#define fCancelExceptionAbort 0x00000002
+#define fOnTempStack 0x00000004
+#define fGrowableStack 0x00000008
+#define fDelaySingleStep 0x00000010
+#define fOpenExeAsImmovableFile 0x00000020
+#define fCreateSuspended 0x00000040 // CREATE_SUSPENDED flag to CreateProcess()
+#define fStackOverflow 0x00000080
+#define fNestedCleanAPCs 0x00000100
+#define fWasOemNowAnsi 0x00000200 // ANSI/OEM file function
+#define fOKToSetThreadOem 0x00000400 // ANSI/OEM file function
+
+// TDBX flags (WIN95)
+#define WAITEXBIT 0x00000001
+#define WAITACKBIT 0x00000002
+#define SUSPEND_APC_PENDING 0x00000004
+#define SUSPEND_TERMINATED 0x00000008
+#define BLOCKED_FOR_TERMINATION 0x00000010
+#define EMULATE_NPX 0x00000020
+#define WIN32_NPX 0x00000040
+#define EXTENDED_HANDLES 0x00000080
+#define FROZEN 0x00000100
+#define DONT_FREEZE 0x00000200
+#define DONT_UNFREEZE 0x00000400
+#define DONT_TRACE 0x00000800
+#define STOP_TRACING 0x00001000
+#define WAITING_FOR_CRST_SAFE 0x00002000
+#define CRST_SAFE 0x00004000
+#define BLOCK_TERMINATE_APC 0x00040000
+
+// Environment Database
+typedef struct _ENVIRONMENT_DATABASE {
+ PSTR pszEnvironment; //00 Pointer to Process Environment
+ DWORD un1; //04 (always 0)
+ PSTR pszCmdLine; //08 Pointer to command line
+ PSTR pszCurrDirectory; //0C Pointer to current directory
+ LPSTARTUPINFOA pStartupInfo; //10 Pointer to STARTUPINFOA struct
+ HANDLE hStdIn; //14 Standard Input handle
+ HANDLE hStdOut; //18 Standard Output handle
+ HANDLE hStdErr; //1C Standard Error handle
+ DWORD un2; //20 (always 1)
+ DWORD InheritConsole; //24 Inherit console from parent
+ DWORD BreakType; //28 Handle console events (like CTRL+C)
+ DWORD BreakSem; //2C Pointer to K32OBJ_SEMAPHORE
+ DWORD BreakEvent; //30 Pointer to K32OBJ_EVENT
+ DWORD BreakThreadID; //34 Pointer to K32OBJ_THREAD
+ DWORD BreakHandlers; //38 Pointer to list of installed console control handlers
+} EDB, *PEDB;
+
+// Handle Table Entry
+typedef struct _HANDLE_TABLE_ENTRY {
+ DWORD flags; // Valid flags depend on what type of object this is
+ PVOID pObject; // Pointer to the object that the handle refers to
+} HANDLE_TABLE_ENTRY, *PHANDLE_TABLE_ENTRY;
+
+// Handle Table
+typedef struct _HANDLE_TABLE {
+ DWORD cEntries; // Max number of handles in table
+ HANDLE_TABLE_ENTRY array[1]; // An array (number is given by cEntries)
+} HANDLE_TABLE, *PHANDLE_TABLE;
+
+
+typedef struct _IMTE
+{
+ DWORD un1; // 00h
+ PIMAGE_NT_HEADERS pNTHdr; // 04h
+ DWORD un2; // 08h
+ PSTR pszFileName; // 0Ch
+ PSTR pszModName; // 10h
+ WORD cbFileName; // 14h
+ WORD cbModName; // 16h
+ DWORD un3; // 18h
+ DWORD cSections; // 1Ch
+ DWORD un5; // 20h
+ DWORD baseAddress; // 24h
+ WORD hModule16; // 28h
+ WORD cUsage; // 2Ah
+ DWORD un7; // 2Ch
+ PSTR pszFileName2; // 30h
+ WORD cbFileName2; // 34h
+ PSTR pszModName2; // 36h
+ WORD cbModName2; // 3Ah
+} IMTE, *PIMTE;
+
+// Thread Information Block (FS:[0x18])
+typedef struct _TIB95 { // Size = 0x34
+ PSEH pvExcept; // 00 Pointer to head of structured exception handling chain
+ PVOID pvStackUserTop; // 04 Max. address for stack
+ PVOID pvStackUserBase; // 08 Lowest page aligned addr. of stack
+ WORD pvTDB; // 0C Ptr to win-16 task database
+ WORD pvThunksSS; // 0E SS selector used for thunking to 16 bits
+ DWORD SelmanList; // 10 Pointer to selector manager list
+ PVOID pvArbitrary; // 14 Available for application use
+ struct _TIB95 *pTIBSelf; // 18 Linear address of TIB structure
+ WORD TIBFlags; // 1C TIBF_WIN32 = 1, TIBF_TRAP = 2
+ WORD Win16MutexCount; // 1E Win16Lock
+ DWORD DebugContext; // 20 Pointer to debug context structure
+ DWORD pCurrentPriority; // 24 Pointer to DWORD containing current priority level
+ DWORD pvQueue; // 28 Message Queue selector
+ PVOID* pvTLSArray; // 2C Thread Local Storage (TLS) array
+ PVOID* pProcess; // 30 Pointer to owning process database (PDB)
+} TIB95, *PTIB95;
+
+
+// Thread Database Extension
+typedef struct _TDBX95 {
+ DWORD ptdb; // 00 TDB
+ DWORD ppdb; // 04 PDB
+ DWORD ContextHandle; // 08 R0 memory context
+ DWORD un1; // 0C
+ DWORD TimeOutHandle; // 10
+ DWORD WakeParam; // 14
+ DWORD BlockHandle; // 18 R0 semaphore on which thread will wait inside VWIN32
+ DWORD BlockState; // 1C
+ DWORD SuspendCount; // 20 Number of times SuspendThread() was called
+ DWORD SuspendHandle; // 24
+ DWORD MustCompleteCount; // 28 Count of EnterMustComplete's minus LeaveMustComplete's
+ DWORD WaitExFlags; // 2C Flags
+ DWORD SyncWaitCount; // 30
+ DWORD QueuedSyncFuncs; // 34
+ DWORD UserAPCList; // 38
+ DWORD KernAPCList; // 3C
+ DWORD pPMPSPSelector; // 40 Pointer to protected mode PSP selector
+ DWORD BlockedOnID; // 44
+ DWORD un2[7]; // 48
+ DWORD TraceRefData; // 64
+ DWORD TraceCallBack; // 68
+ DWORD TraceEventHandle; // 6C
+ WORD TraceOutLastCS; // 70
+ WORD K16TDB; // 72 Win16 TDB selector
+ WORD K16PDB; // 74 Win16 PSP selector
+ WORD DosPDBSeg; // 76 Real mode segment value of PSP
+ WORD ExceptionCount; // 78
+} TDBX95, *PTDBX95;
+
+
+/////////////////////// Windows 98 /////////////////////////
+
+// Kernel32 objects (WIN98)
+#define WIN98_K32OBJ_SEMAPHORE 0x1
+#define WIN98_K32OBJ_EVENT 0x2
+#define WIN98_K32OBJ_MUTEX 0x3
+#define WIN98_K32OBJ_CRITICAL_SECTION 0x4
+#define WIN98_K32OBJ_CHANGE 0x5
+#define WIN98_K32OBJ_PROCESS 0x6
+#define WIN98_K32OBJ_THREAD 0x7
+#define WIN98_K32OBJ_FILE 0x8
+#define WIN98_K32OBJ_CONSOLE 0x9
+#define WIN98_K32OBJ_SCREEN_BUFFER 0xA
+#define WIN98_K32OBJ_MAILSLOT 0xB
+#define WIN98_K32OBJ_SERIAL 0xC
+#define WIN98_K32OBJ_MEM_MAPPED_FILE 0xD
+#define WIN98_K32OBJ_PIPE 0xE
+#define WIN98_K32OBJ_DEVICE_IOCTL 0xF
+#define WIN98_K32OBJ_TOOLHELP_SNAPSHOT 0x10
+#define WIN98_K32OBJ_SOCKET 0x11
+
+typedef struct _TDBX98 TDBX98;
+typedef struct _PDB98 PDB98;
+
+// Thread Information Block (FS:[0x18])
+typedef struct _TIB98 { // Size = 0x38
+ PSEH pvExcept; // 00 Head of exception record list
+ PVOID pvStackUserTop; // 04 Top of user stack
+ PVOID pvStackUserBase; // 08 Base of user stack
+ WORD pvTDB; // 0C Ptr to win-16 task database
+ WORD pvThunksSS; // 0E SS selector used for thunking to 16 bits
+ DWORD SelmanList; // 10 Pointer to selector manager list
+ PVOID pvArbitrary; // 14 Available for application use
+ struct _TIB98 *pTIBSelf; // 18 Linear address of TIB structure
+ WORD TIBFlags; // 1C TIBF_WIN32 = 1, TIBF_TRAP = 2
+ WORD Win16MutexCount; // 1E Win16Lock
+ DWORD DebugContext; // 20 Pointer to debug context structure
+ DWORD pCurrentPriority; // 24 Pointer to DWORD containing current priority level
+ DWORD pvQueue; // 28 Message Queue selector
+ PVOID *pvTLSArray; // 2C Thread Local Storage (TLS) array
+ PVOID *pProcess; // 30 Pointer to owning process database (PDB)
+ DWORD Unknown; // 34 Pointer to ???
+} TIB98, *PTIB98;
+
+// Thread database (FS:[0x18] - 0x8)
+typedef struct _TDB98 { // Size = 0x228 (from Kernel32)
+ WORD Type; // 00 K32 object type
+ WORD cReference; // 02 Reference count
+ DWORD pSomeEvent; // 04 K32 event object used when someone waits on the thread object
+ TIB98 tib; // 08 Thread information block (TIB)
+ DWORD Unknown; // 40
+ DWORD Flags; // 44 Flags
+ DWORD TerminationStatus; // 48 Exit code
+ WORD TIBSelector; // 4C Selector used in FS to point to TIB
+ WORD EmulatorSelector; // 4E Memory block for saving x87 state
+ DWORD cHandles; // 50 Handle count
+ DWORD Ring0Thread; // 54 R0 thread control block (TCB)
+ TDBX98 *pTDBX; // 58 R0 thread database extension (TDBX)
+ DWORD un1[109]; // 5C
+ DWORD APISuspendCount; // 210 Count of SuspendThread's minus ResumeThread's
+} TDB98, *PTDB98;
+
+// Thread database extension
+typedef struct _TDBX98 {
+ DWORD un0; // 00
+ TDB98 *ptdb; // 04 R3 thread database
+ PDB98 *ppdb; // 08 R3 process database
+ DWORD ContextHandle; // 0C R0 memory context
+ DWORD Ring0Thread; // 10 R0 thread control block [TCB *]
+ DWORD WaitNodeList; // 14 Anchor of things we're waiting on [WAITNODE *]
+ DWORD WaitFlags; // 18 Blocking flags
+ DWORD un1; // 1C
+ DWORD TimeOutHandle; // 20
+ DWORD WakeParam; // 24
+ DWORD BlockHandle; // 28 R0 semaphore on which thread will wait inside VWIN32
+ DWORD BlockState; // 2C
+ DWORD SuspendCount; // 30
+ DWORD SuspendHandle; // 34
+ DWORD MustCompleteCount; // 38 Count of EnterMustComplete's minus LeaveMustComplete's
+ DWORD WaitExFlags; // 3C Flags
+ DWORD SyncWaitCount; // 40
+ DWORD QueuedSyncFuncs; // 44
+ DWORD UserAPCList; // 48
+ DWORD KernAPCList; // 4C
+ DWORD pPMPSPSelector; // 50
+ DWORD BlockedOnID; // 54
+} TDBX98, *PTDBX98;
+
+
+/////////////////////// Windows Me /////////////////////////
+
+typedef TIB98 TIBME;
+typedef TIBME *PTIBME;
+
+typedef struct _TDBME { // Size = 0x228 (from Kernel32)
+ WORD Type; // 00 K32 object type
+ WORD cReference; // 02 Reference count
+ DWORD pSomeEvent; // 04 K32 event object used when someone waits on the thread object
+ TIB98 tib; // 08 Thread information block (TIB)
+ DWORD Unknown; // 40
+ DWORD Unknown2; // 44
+ WORD TIBSelector; // 46 Selector used in FS to point to TIB
+ DWORD TerminationStatus; // 48 Exit code
+ DWORD Flags; // 4C Flags
+ DWORD cHandles; // 50 Handle count
+ DWORD Ring0Thread; // 54 R0 thread control block (TCB)
+ DWORD Unknown3; // 58 Selector for ???
+ DWORD un1[109]; // 5C
+ DWORD APISuspendCount; // 210 Count of SuspendThread's minus ResumeThread's
+} TDBME, *PTDBME;
+
+
+#pragma pack()
+
+#endif // __STRUCT_H__
diff --git a/src/apps/mplayerc/mplayerc.vcproj b/src/apps/mplayerc/mplayerc.vcproj
index a14e906f2..e533f69ec 100644
--- a/src/apps/mplayerc/mplayerc.vcproj
+++ b/src/apps/mplayerc/mplayerc.vcproj
@@ -1,155 +1,102 @@
<?xml version="1.0" encoding="windows-1250"?>
<VisualStudioProject
ProjectType="Visual C++"
- Version="8,00"
+ Version="7.10"
Name="mplayerc"
ProjectGUID="{CEAF0A23-A949-443E-BDA4-2F025DD774F6}"
- Keyword="MFCProj"
- >
+ SccProjectName=""
+ SccLocalPath=""
+ Keyword="MFCProj">
<Platforms>
<Platform
- Name="Win32"
- />
+ Name="Win32"/>
</Platforms>
- <ToolFiles>
- </ToolFiles>
<Configurations>
<Configuration
Name="Release Unicode|Win32"
OutputDirectory=".\$(ConfigurationName)"
IntermediateDirectory=".\$(OutDir)"
ConfigurationType="1"
- InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="1"
UseOfATL="0"
- ATLMinimizesCRunTimeLibraryUsage="false"
- CharacterSet="1"
- >
- <Tool
- Name="VCPreBuildEventTool"
- />
- <Tool
- Name="VCCustomBuildTool"
- />
- <Tool
- Name="VCXMLDataGeneratorTool"
- />
- <Tool
- Name="VCWebServiceProxyGeneratorTool"
- />
- <Tool
- Name="VCMIDLTool"
- PreprocessorDefinitions="NDEBUG"
- MkTypLibCompatible="true"
- SuppressStartupBanner="true"
- TargetEnvironment="1"
- TypeLibraryName=".\Release_unicode/mplayerc.tlb"
- />
+ ATLMinimizesCRunTimeLibraryUsage="FALSE"
+ CharacterSet="1">
<Tool
Name="VCCLCompilerTool"
Optimization="2"
InlineFunctionExpansion="2"
FavorSizeOrSpeed="1"
+ OptimizeForProcessor="2"
AdditionalIncludeDirectories=""
PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS"
- StringPooling="true"
+ StringPooling="TRUE"
RuntimeLibrary="0"
- EnableFunctionLevelLinking="true"
- ForceConformanceInForLoopScope="true"
- RuntimeTypeInfo="true"
- UsePrecompiledHeader="2"
+ EnableFunctionLevelLinking="TRUE"
+ ForceConformanceInForLoopScope="TRUE"
+ RuntimeTypeInfo="TRUE"
+ UsePrecompiledHeader="3"
PrecompiledHeaderThrough="stdafx.h"
PrecompiledHeaderFile="$(OutDir)\$(ProjectName).pch"
AssemblerListingLocation=".\$(OutDir)/"
ObjectFile=".\$(OutDir)/"
ProgramDataBaseFileName=".\$(OutDir)/"
WarningLevel="3"
- SuppressStartupBanner="true"
- DebugInformationFormat="3"
- />
- <Tool
- Name="VCManagedResourceCompilerTool"
- />
- <Tool
- Name="VCResourceCompilerTool"
- PreprocessorDefinitions="NDEBUG"
- Culture="1033"
- AdditionalIncludeDirectories=""
- />
+ SuppressStartupBanner="TRUE"
+ DebugInformationFormat="3"/>
<Tool
- Name="VCPreLinkEventTool"
- />
+ Name="VCCustomBuildTool"/>
<Tool
Name="VCLinkerTool"
AdditionalOptions="/MACHINE:I386"
- AdditionalDependencies="Delayimp.lib detours.lib qtmlClient.lib wmstub.lib d3dx9.lib dxguid.lib Dsound.lib strmbaseRU.lib dsutilRU.lib subpicRU.lib subtitlesRU.lib asyncreaderRU.lib audioswitcherRU.lib avi2ac3filterRU.lib bufferfilterRU.lib cddareaderRU.lib cdxareaderRU.lib d2vsourceRU.lib decssfilterRU.lib flicsourceRU.lib dtsac3sourceRU.lib basesourceRU.lib wavdestRU.lib shoutcastsourceRU.lib streamdrivethruRU.lib vtsreaderRU.lib basesplitterRU.lib MatroskaSplitterRU.lib MatroskaMuxerRU.lib RealMediaSplitterRU.lib AviSplitterRU.lib Mpeg2DecFilterRU.lib MpaDecFilterRU.lib RoQSplitterRU.lib OggSplitterRU.lib NutSplitterRU.lib MpegSplitterRU.lib DiracSplitterRU.lib MpaSplitterRU.lib DSMSplitterRU.lib BaseMuxerRU.lib DSMMuxerRU.lib zlibR.lib subtitlesourceRU.lib strmiids.lib MP4SplitterRU.lib udpreaderRU.lib Psapi.lib setupapi.lib"
+ AdditionalDependencies="Delayimp.lib detours.lib qtmlClient.lib wmstub.lib d3dx9.lib dxguid.lib Dsound.lib strmbaseRU.lib dsutilRU.lib subpicRU.lib subtitlesRU.lib asyncreaderRU.lib audioswitcherRU.lib avi2ac3filterRU.lib bufferfilterRU.lib cddareaderRU.lib cdxareaderRU.lib d2vsourceRU.lib decssfilterRU.lib flicsourceRU.lib dtsac3sourceRU.lib basesourceRU.lib wavdestRU.lib shoutcastsourceRU.lib streamdrivethruRU.lib vtsreaderRU.lib basesplitterRU.lib MatroskaSplitterRU.lib MatroskaMuxerRU.lib RealMediaSplitterRU.lib AviSplitterRU.lib Mpeg2DecFilterRU.lib MpaDecFilterRU.lib RadGtSplitterRU.lib RoQSplitterRU.lib OggSplitterRU.lib NutSplitterRU.lib MpegSplitterRU.lib DiracSplitterRU.lib MpaSplitterRU.lib DSMSplitterRU.lib BaseMuxerRU.lib DSMMuxerRU.lib zlibR.lib subtitlesourceRU.lib"
OutputFile="$(OutDir)\$(ProjectName).exe"
LinkIncremental="1"
- SuppressStartupBanner="true"
+ SuppressStartupBanner="TRUE"
AdditionalLibraryDirectories="../../../lib;../../../lib/wm7;../../../lib/qt6;../../../lib/detours"
IgnoreDefaultLibraryNames="MSVCRT"
DelayLoadDLLs="d3d9.dll;msimg32.dll;gdiplus.dll"
ProgramDatabaseFile="$(OutDir)\$(ProjectName).pdb"
SubSystem="2"
- SupportUnloadOfDelayLoadedDLL="true"
- />
+ SupportUnloadOfDelayLoadedDLL="TRUE"/>
+ <Tool
+ Name="VCMIDLTool"
+ PreprocessorDefinitions="NDEBUG"
+ MkTypLibCompatible="TRUE"
+ SuppressStartupBanner="TRUE"
+ TargetEnvironment="1"
+ TypeLibraryName=".\Release_unicode/mplayerc.tlb"/>
+ <Tool
+ Name="VCPostBuildEventTool"
+ CommandLine="..\..\..\bin\upx.exe --best &quot;$(TargetPath)&quot;"
+ ExcludedFromBuild="TRUE"/>
<Tool
- Name="VCALinkTool"
- />
+ Name="VCPreBuildEventTool"/>
<Tool
- Name="VCManifestTool"
- />
+ Name="VCPreLinkEventTool"/>
<Tool
- Name="VCXDCMakeTool"
- />
+ Name="VCResourceCompilerTool"
+ PreprocessorDefinitions="NDEBUG"
+ Culture="1033"
+ AdditionalIncludeDirectories=""/>
<Tool
- Name="VCBscMakeTool"
- />
+ Name="VCWebServiceProxyGeneratorTool"/>
<Tool
- Name="VCFxCopTool"
- />
+ Name="VCXMLDataGeneratorTool"/>
<Tool
- Name="VCAppVerifierTool"
- />
+ Name="VCWebDeploymentTool"/>
<Tool
- Name="VCWebDeploymentTool"
- />
+ Name="VCManagedWrapperGeneratorTool"/>
<Tool
- Name="VCPostBuildEventTool"
- CommandLine="..\..\..\bin\upx.exe --best &quot;$(TargetPath)&quot;"
- ExcludedFromBuild="true"
- />
+ Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
</Configuration>
<Configuration
Name="Debug Unicode|Win32"
OutputDirectory=".\$(ConfigurationName)"
IntermediateDirectory=".\$(OutDir)"
ConfigurationType="1"
- InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="2"
- ATLMinimizesCRunTimeLibraryUsage="false"
- CharacterSet="1"
- >
- <Tool
- Name="VCPreBuildEventTool"
- />
- <Tool
- Name="VCCustomBuildTool"
- />
- <Tool
- Name="VCXMLDataGeneratorTool"
- />
- <Tool
- Name="VCWebServiceProxyGeneratorTool"
- />
- <Tool
- Name="VCMIDLTool"
- PreprocessorDefinitions="_DEBUG"
- MkTypLibCompatible="true"
- SuppressStartupBanner="true"
- TargetEnvironment="1"
- TypeLibraryName="$(OutDir)\$(ProjectName).tlb"
- />
+ ATLMinimizesCRunTimeLibraryUsage="FALSE"
+ CharacterSet="1">
<Tool
Name="VCCLCompilerTool"
Optimization="0"
@@ -157,202 +104,143 @@
PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;pascal="
BasicRuntimeChecks="3"
RuntimeLibrary="3"
- ForceConformanceInForLoopScope="true"
- RuntimeTypeInfo="true"
- UsePrecompiledHeader="2"
+ ForceConformanceInForLoopScope="TRUE"
+ RuntimeTypeInfo="TRUE"
+ UsePrecompiledHeader="3"
PrecompiledHeaderThrough="stdafx.h"
PrecompiledHeaderFile="$(OutDir)\$(ProjectName).pch"
AssemblerListingLocation=".\$(OutDir)/"
ObjectFile=".\$(OutDir)/"
ProgramDataBaseFileName=".\$(OutDir)/"
WarningLevel="3"
- SuppressStartupBanner="true"
- DebugInformationFormat="4"
- />
- <Tool
- Name="VCManagedResourceCompilerTool"
- />
+ SuppressStartupBanner="TRUE"
+ DebugInformationFormat="4"/>
<Tool
- Name="VCResourceCompilerTool"
- PreprocessorDefinitions="_AFXDLL;_DEBUG"
- Culture="1033"
- />
- <Tool
- Name="VCPreLinkEventTool"
- />
+ Name="VCCustomBuildTool"/>
<Tool
Name="VCLinkerTool"
AdditionalOptions="/MACHINE:I386"
- AdditionalDependencies="Delayimp.lib detours.lib qtmlClient.lib wmstub.lib d3dx9.lib Dsound.lib dxguid.lib strmbaseDU.lib dsutilDU.lib subpicDU.lib subtitlesDU.lib asyncreaderDU.lib audioswitcherDU.lib avi2ac3filterDU.lib bufferfilterDU.lib cddareaderDU.lib cdxareaderDU.lib d2vsourceDU.lib decssfilterDU.lib flicsourceDU.lib dtsac3sourceDU.lib basesourceDU.lib subtitlesourceDU.lib wavdestDU.lib shoutcastsourceDU.lib streamdrivethruDU.lib vtsreaderDU.lib basesplitterDU.lib MatroskaSplitterDU.lib MatroskaMuxerDU.lib RealMediaSplitterDU.lib AviSplitterDU.lib Mpeg2DecFilterDU.lib MpaDecFilterDU.lib RoQSplitterDU.lib OggSplitterDU.lib NutSplitterDU.lib MpegSplitterDU.lib DiracSplitterDU.lib MpaSplitterDU.lib DSMSplitterDU.lib BaseMuxerDU.lib DSMMuxerDU.lib zlibD.lib strmiids.lib MP4SplitterDU.lib udpreaderDU.lib Psapi.lib setupapi.lib"
+ AdditionalDependencies="Delayimp.lib detours.lib qtmlClient.lib wmstub.lib d3dx9.lib Dsound.lib dxguid.lib strmbaseDU.lib dsutilDU.lib subpicDU.lib subtitlesDU.lib asyncreaderDU.lib audioswitcherDU.lib avi2ac3filterDU.lib bufferfilterDU.lib cddareaderDU.lib cdxareaderDU.lib d2vsourceDU.lib decssfilterDU.lib flicsourceDU.lib dtsac3sourceDU.lib basesourceDU.lib subtitlesourceDU.lib wavdestDU.lib shoutcastsourceDU.lib streamdrivethruDU.lib vtsreaderDU.lib basesplitterDU.lib MatroskaSplitterDU.lib MatroskaMuxerDU.lib RealMediaSplitterDU.lib AviSplitterDU.lib Mpeg2DecFilterDU.lib MpaDecFilterDU.lib RadGtSplitterDU.lib RoQSplitterDU.lib OggSplitterDU.lib NutSplitterDU.lib MpegSplitterDU.lib DiracSplitterDU.lib MpaSplitterDU.lib DSMSplitterDU.lib BaseMuxerDU.lib DSMMuxerDU.lib zlibD.lib"
OutputFile="$(OutDir)\$(ProjectName).exe"
LinkIncremental="2"
- SuppressStartupBanner="true"
+ SuppressStartupBanner="TRUE"
AdditionalLibraryDirectories="../../../lib;../../../lib/wm7;../../../lib/qt6;../../../lib/detours"
- IgnoreDefaultLibraryNames="MSVCRT;LIBCMT;MSVCR71D"
+ IgnoreDefaultLibraryNames="MSVCRT;LIBCMT"
DelayLoadDLLs="d3d9.dll;msimg32.dll;gdiplus.dll"
- GenerateDebugInformation="true"
+ GenerateDebugInformation="TRUE"
ProgramDatabaseFile="$(OutDir)\$(ProjectName).pdb"
- SubSystem="2"
- />
+ SubSystem="2"/>
+ <Tool
+ Name="VCMIDLTool"
+ PreprocessorDefinitions="_DEBUG"
+ MkTypLibCompatible="TRUE"
+ SuppressStartupBanner="TRUE"
+ TargetEnvironment="1"
+ TypeLibraryName="$(OutDir)\$(ProjectName).tlb"/>
<Tool
- Name="VCALinkTool"
- />
+ Name="VCPostBuildEventTool"/>
<Tool
- Name="VCManifestTool"
- />
+ Name="VCPreBuildEventTool"/>
<Tool
- Name="VCXDCMakeTool"
- />
+ Name="VCPreLinkEventTool"/>
<Tool
- Name="VCBscMakeTool"
- />
+ Name="VCResourceCompilerTool"
+ PreprocessorDefinitions="_AFXDLL;_DEBUG"
+ Culture="1033"/>
<Tool
- Name="VCFxCopTool"
- />
+ Name="VCWebServiceProxyGeneratorTool"/>
<Tool
- Name="VCAppVerifierTool"
- />
+ Name="VCXMLDataGeneratorTool"/>
<Tool
- Name="VCWebDeploymentTool"
- />
+ Name="VCWebDeploymentTool"/>
<Tool
- Name="VCPostBuildEventTool"
- />
+ Name="VCManagedWrapperGeneratorTool"/>
+ <Tool
+ Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
</Configuration>
<Configuration
Name="Release|Win32"
OutputDirectory=".\$(ConfigurationName)"
IntermediateDirectory=".\$(OutDir)"
ConfigurationType="1"
- InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="1"
- ATLMinimizesCRunTimeLibraryUsage="false"
- CharacterSet="2"
- >
- <Tool
- Name="VCPreBuildEventTool"
- />
- <Tool
- Name="VCCustomBuildTool"
- />
- <Tool
- Name="VCXMLDataGeneratorTool"
- />
- <Tool
- Name="VCWebServiceProxyGeneratorTool"
- />
- <Tool
- Name="VCMIDLTool"
- PreprocessorDefinitions="NDEBUG"
- MkTypLibCompatible="true"
- SuppressStartupBanner="true"
- TargetEnvironment="1"
- TypeLibraryName=".\Release/mplayerc.tlb"
- />
+ ATLMinimizesCRunTimeLibraryUsage="FALSE"
+ CharacterSet="2">
<Tool
Name="VCCLCompilerTool"
Optimization="2"
InlineFunctionExpansion="2"
FavorSizeOrSpeed="1"
+ OptimizeForProcessor="2"
AdditionalIncludeDirectories=""
PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS"
- StringPooling="true"
+ StringPooling="TRUE"
RuntimeLibrary="0"
- EnableFunctionLevelLinking="true"
- ForceConformanceInForLoopScope="true"
- RuntimeTypeInfo="true"
- UsePrecompiledHeader="2"
+ EnableFunctionLevelLinking="TRUE"
+ ForceConformanceInForLoopScope="TRUE"
+ RuntimeTypeInfo="TRUE"
+ UsePrecompiledHeader="3"
PrecompiledHeaderThrough="stdafx.h"
PrecompiledHeaderFile="$(OutDir)\$(ProjectName).pch"
AssemblerListingLocation=".\$(OutDir)/"
ObjectFile=".\$(OutDir)/"
ProgramDataBaseFileName=".\$(OutDir)/"
WarningLevel="3"
- SuppressStartupBanner="true"
- />
- <Tool
- Name="VCManagedResourceCompilerTool"
- />
- <Tool
- Name="VCResourceCompilerTool"
- PreprocessorDefinitions="NDEBUG"
- Culture="1033"
- AdditionalIncludeDirectories=""
- />
+ SuppressStartupBanner="TRUE"/>
<Tool
- Name="VCPreLinkEventTool"
- />
+ Name="VCCustomBuildTool"/>
<Tool
Name="VCLinkerTool"
AdditionalOptions="/MACHINE:I386"
AdditionalDependencies="Delayimp.lib detours.lib qtmlClient.lib wmstub.lib d3dx9.lib Dsound.lib dxguid.lib strmbaseR.lib dsutilR.lib subpicR.lib subtitlesR.lib asyncreaderR.lib audioswitcherR.lib avi2ac3filterR.lib bufferfilterR.lib cddareaderR.lib cdxareaderR.lib d2vsourceR.lib decssfilterR.lib flicsourceR.lib dtsac3sourceR.lib basesourceR.lib wavdestR.lib shoutcastsourceR.lib streamdrivethruR.lib vtsreaderR.lib basesplitterR.lib MatroskaSplitterR.lib MatroskaMuxerR.lib RealMediaSplitterR.lib AviSplitterR.lib Mpeg2DecFilterR.lib MpaDecFilterR.lib RadGtSplitterR.lib RoQSplitterR.lib OggSplitterR.lib NutSplitterR.lib MpegSplitterR.lib DiracSplitterR.lib MpaSplitterR.lib DSMSplitterR.lib BaseMuxerR.lib DSMMuxerR.lib zlibR.lib subtitlesourceR.lib"
OutputFile="$(OutDir)\$(ProjectName).exe"
LinkIncremental="1"
- SuppressStartupBanner="true"
+ SuppressStartupBanner="TRUE"
AdditionalLibraryDirectories="../../../lib;../../../lib/wm7;../../../lib/qt6;../../../lib/detours"
IgnoreDefaultLibraryNames="MSVCRT"
DelayLoadDLLs="d3d9.dll;msimg32.dll;gdiplus.dll"
ProgramDatabaseFile="$(OutDir)\$(ProjectName).pdb"
SubSystem="2"
- SupportUnloadOfDelayLoadedDLL="true"
- />
+ SupportUnloadOfDelayLoadedDLL="TRUE"/>
+ <Tool
+ Name="VCMIDLTool"
+ PreprocessorDefinitions="NDEBUG"
+ MkTypLibCompatible="TRUE"
+ SuppressStartupBanner="TRUE"
+ TargetEnvironment="1"
+ TypeLibraryName=".\Release/mplayerc.tlb"/>
+ <Tool
+ Name="VCPostBuildEventTool"
+ CommandLine="..\..\..\bin\upx.exe --best &quot;$(TargetPath)&quot;"
+ ExcludedFromBuild="TRUE"/>
<Tool
- Name="VCALinkTool"
- />
+ Name="VCPreBuildEventTool"/>
<Tool
- Name="VCManifestTool"
- />
+ Name="VCPreLinkEventTool"/>
<Tool
- Name="VCXDCMakeTool"
- />
+ Name="VCResourceCompilerTool"
+ PreprocessorDefinitions="NDEBUG"
+ Culture="1033"
+ AdditionalIncludeDirectories=""/>
<Tool
- Name="VCBscMakeTool"
- />
+ Name="VCWebServiceProxyGeneratorTool"/>
<Tool
- Name="VCFxCopTool"
- />
+ Name="VCXMLDataGeneratorTool"/>
<Tool
- Name="VCAppVerifierTool"
- />
+ Name="VCWebDeploymentTool"/>
<Tool
- Name="VCWebDeploymentTool"
- />
+ Name="VCManagedWrapperGeneratorTool"/>
<Tool
- Name="VCPostBuildEventTool"
- CommandLine="..\..\..\bin\upx.exe --best &quot;$(TargetPath)&quot;"
- ExcludedFromBuild="true"
- />
+ Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
</Configuration>
<Configuration
Name="Debug|Win32"
OutputDirectory=".\$(ConfigurationName)"
IntermediateDirectory=".\$(OutDir)"
ConfigurationType="1"
- InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
UseOfMFC="2"
- ATLMinimizesCRunTimeLibraryUsage="false"
- CharacterSet="2"
- >
- <Tool
- Name="VCPreBuildEventTool"
- />
- <Tool
- Name="VCCustomBuildTool"
- />
- <Tool
- Name="VCXMLDataGeneratorTool"
- />
- <Tool
- Name="VCWebServiceProxyGeneratorTool"
- />
- <Tool
- Name="VCMIDLTool"
- PreprocessorDefinitions="_DEBUG"
- MkTypLibCompatible="true"
- SuppressStartupBanner="true"
- TargetEnvironment="1"
- TypeLibraryName="$(OutDir)\$(ProjectName).tlb"
- />
+ ATLMinimizesCRunTimeLibraryUsage="FALSE"
+ CharacterSet="2">
<Tool
Name="VCCLCompilerTool"
Optimization="0"
@@ -360,130 +248,92 @@
PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS"
BasicRuntimeChecks="3"
RuntimeLibrary="3"
- ForceConformanceInForLoopScope="true"
- RuntimeTypeInfo="true"
- UsePrecompiledHeader="2"
+ ForceConformanceInForLoopScope="TRUE"
+ RuntimeTypeInfo="TRUE"
+ UsePrecompiledHeader="3"
PrecompiledHeaderThrough="stdafx.h"
PrecompiledHeaderFile="$(OutDir)\$(ProjectName).pch"
AssemblerListingLocation=".\$(OutDir)/"
ObjectFile=".\$(OutDir)/"
ProgramDataBaseFileName=".\$(OutDir)/"
WarningLevel="3"
- SuppressStartupBanner="true"
- DebugInformationFormat="4"
- />
- <Tool
- Name="VCManagedResourceCompilerTool"
- />
- <Tool
- Name="VCResourceCompilerTool"
- PreprocessorDefinitions="_AFXDLL;_DEBUG"
- Culture="1033"
- />
+ SuppressStartupBanner="TRUE"
+ DebugInformationFormat="4"/>
<Tool
- Name="VCPreLinkEventTool"
- />
+ Name="VCCustomBuildTool"/>
<Tool
Name="VCLinkerTool"
AdditionalOptions="/MACHINE:I386"
AdditionalDependencies="Delayimp.lib detours.lib qtmlClient.lib wmstub.lib d3dx9.lib Dsound.lib dxguid.lib strmbaseD.lib dsutilD.lib subpicD.lib subtitlesD.lib asyncreaderD.lib audioswitcherD.lib avi2ac3filterD.lib bufferfilterD.lib cddareaderD.lib cdxareaderD.lib d2vsourceD.lib decssfilterD.lib flicsourceD.lib dtsac3sourceD.lib basesourceD.lib subtitlesourceD.lib wavdestD.lib shoutcastsourceD.lib streamdrivethruD.lib vtsreaderD.lib basesplitterD.lib MatroskaSplitterD.lib MatroskaMuxerD.lib RealMediaSplitterD.lib AviSplitterD.lib Mpeg2DecFilterD.lib MpaDecFilterD.lib RadGtSplitterD.lib RoQSplitterD.lib OggSplitterD.lib NutSplitterD.lib MpegSplitterD.lib DiracSplitterD.lib MpaSplitterD.lib DSMSplitterD.lib BaseMuxerD.lib DSMMuxerD.lib zlibD.lib"
OutputFile="$(OutDir)\$(ProjectName).exe"
LinkIncremental="2"
- SuppressStartupBanner="true"
+ SuppressStartupBanner="TRUE"
AdditionalLibraryDirectories="../../../lib;../../../lib/wm7;../../../lib/qt6;../../../lib/detours"
IgnoreDefaultLibraryNames="MSVCRT;LIBCMT"
DelayLoadDLLs="d3d9.dll;msimg32.dll;gdiplus.dll"
- GenerateDebugInformation="true"
+ GenerateDebugInformation="TRUE"
ProgramDatabaseFile="$(OutDir)\$(ProjectName).pdb"
- SubSystem="2"
- />
+ SubSystem="2"/>
+ <Tool
+ Name="VCMIDLTool"
+ PreprocessorDefinitions="_DEBUG"
+ MkTypLibCompatible="TRUE"
+ SuppressStartupBanner="TRUE"
+ TargetEnvironment="1"
+ TypeLibraryName="$(OutDir)\$(ProjectName).tlb"/>
<Tool
- Name="VCALinkTool"
- />
+ Name="VCPostBuildEventTool"/>
<Tool
- Name="VCManifestTool"
- />
+ Name="VCPreBuildEventTool"/>
<Tool
- Name="VCXDCMakeTool"
- />
+ Name="VCPreLinkEventTool"/>
+ <Tool
+ Name="VCResourceCompilerTool"
+ PreprocessorDefinitions="_AFXDLL;_DEBUG"
+ Culture="1033"/>
<Tool
- Name="VCBscMakeTool"
- />
+ Name="VCWebServiceProxyGeneratorTool"/>
<Tool
- Name="VCFxCopTool"
- />
+ Name="VCXMLDataGeneratorTool"/>
<Tool
- Name="VCAppVerifierTool"
- />
+ Name="VCWebDeploymentTool"/>
<Tool
- Name="VCWebDeploymentTool"
- />
+ Name="VCManagedWrapperGeneratorTool"/>
<Tool
- Name="VCPostBuildEventTool"
- />
+ Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
</Configuration>
<Configuration
Name="ResourceDLL|Win32"
OutputDirectory="$(SolutionDir)$(ConfigurationName)"
IntermediateDirectory="$(ConfigurationName)"
- ConfigurationType="2"
- InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
- >
- <Tool
- Name="VCPreBuildEventTool"
- />
- <Tool
- Name="VCCustomBuildTool"
- />
- <Tool
- Name="VCXMLDataGeneratorTool"
- />
+ ConfigurationType="2">
<Tool
- Name="VCWebServiceProxyGeneratorTool"
- />
+ Name="VCCLCompilerTool"/>
<Tool
- Name="VCMIDLTool"
- />
- <Tool
- Name="VCCLCompilerTool"
- />
+ Name="VCCustomBuildTool"/>
<Tool
- Name="VCManagedResourceCompilerTool"
- />
- <Tool
- Name="VCResourceCompilerTool"
- />
+ Name="VCLinkerTool"
+ ResourceOnlyDLL="TRUE"/>
<Tool
- Name="VCPreLinkEventTool"
- />
+ Name="VCMIDLTool"/>
<Tool
- Name="VCLinkerTool"
- ResourceOnlyDLL="true"
- />
+ Name="VCPostBuildEventTool"/>
<Tool
- Name="VCALinkTool"
- />
+ Name="VCPreBuildEventTool"/>
<Tool
- Name="VCManifestTool"
- />
+ Name="VCPreLinkEventTool"/>
<Tool
- Name="VCXDCMakeTool"
- />
+ Name="VCResourceCompilerTool"/>
<Tool
- Name="VCBscMakeTool"
- />
+ Name="VCWebServiceProxyGeneratorTool"/>
<Tool
- Name="VCFxCopTool"
- />
+ Name="VCXMLDataGeneratorTool"/>
<Tool
- Name="VCAppVerifierTool"
- />
+ Name="VCWebDeploymentTool"/>
<Tool
- Name="VCWebDeploymentTool"
- />
+ Name="VCManagedWrapperGeneratorTool"/>
<Tool
- Name="VCPostBuildEventTool"
- />
+ Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
</Configuration>
</Configurations>
<References>
@@ -491,2184 +341,1525 @@
<Files>
<Filter
Name="Source Files"
- Filter="cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
- >
+ Filter="cpp;c;cxx;rc;def;r;odl;idl;hpj;bat">
<File
- RelativePath=".\AuthDlg.cpp"
- >
+ RelativePath=".\AuthDlg.cpp">
</File>
<File
- RelativePath="BaseGraph.cpp"
- >
+ RelativePath="BaseGraph.cpp">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCLCompilerTool"
- />
+ Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
<File
- RelativePath=".\ChildView.cpp"
- >
+ RelativePath=".\ChildView.cpp">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCLCompilerTool"
- />
+ Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
<File
- RelativePath="ComPropertyPage.cpp"
- >
+ RelativePath="ComPropertyPage.cpp">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCLCompilerTool"
- />
+ Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
<File
- RelativePath="ComPropertySheet.cpp"
- >
+ RelativePath="ComPropertySheet.cpp">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCLCompilerTool"
- />
+ Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
<File
- RelativePath=".\ConvertChapDlg.cpp"
- >
+ RelativePath=".\ConvertChapDlg.cpp">
</File>
<File
- RelativePath=".\ConvertDlg.cpp"
- >
+ RelativePath=".\ConvertDlg.cpp">
</File>
<File
- RelativePath=".\ConvertPropsDlg.cpp"
- >
+ RelativePath=".\ConvertPropsDlg.cpp">
</File>
<File
- RelativePath=".\ConvertResDlg.cpp"
- >
+ RelativePath=".\ConvertResDlg.cpp">
</File>
<File
- RelativePath="CShockwaveFlash.cpp"
- >
+ RelativePath="CShockwaveFlash.cpp">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCLCompilerTool"
- />
+ Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
<File
- RelativePath=".\D3DFont.cpp"
- >
- </File>
- <File
- RelativePath=".\DeinterlacerFilter.cpp"
- >
+ RelativePath=".\DeinterlacerFilter.cpp">
</File>
<File
- RelativePath="DX7AllocatorPresenter.cpp"
- >
+ RelativePath="DX7AllocatorPresenter.cpp">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCLCompilerTool"
- />
+ Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
<File
- RelativePath="DX9AllocatorPresenter.cpp"
- >
+ RelativePath="DX9AllocatorPresenter.cpp">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCLCompilerTool"
- />
+ Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
<File
- RelativePath=".\FakeFilterMapper2.cpp"
- >
+ RelativePath=".\FakeFilterMapper2.cpp">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCLCompilerTool"
- />
+ Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
<File
- RelativePath="FavoriteAddDlg.cpp"
- >
+ RelativePath="FavoriteAddDlg.cpp">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCLCompilerTool"
- />
+ Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
<File
- RelativePath="FavoriteOrganizeDlg.cpp"
- >
+ RelativePath="FavoriteOrganizeDlg.cpp">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCLCompilerTool"
- />
+ Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
<File
- RelativePath=".\FGFilter.cpp"
- >
- </File>
- <File
- RelativePath=".\FGManager.cpp"
- >
- </File>
- <File
- RelativePath="FileDropTarget.cpp"
- >
+ RelativePath="FileDropTarget.cpp">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCLCompilerTool"
- />
+ Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
<File
- RelativePath="FloatEdit.cpp"
- >
+ RelativePath="FloatEdit.cpp">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCLCompilerTool"
- />
+ Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
<File
- RelativePath=".\FullscreenWnd.cpp"
- >
- </File>
- <File
- RelativePath="GoToDlg.cpp"
- >
+ RelativePath="GoToDlg.cpp">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCLCompilerTool"
- />
+ Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
<File
- RelativePath="..\ShuttlePN31\Common\Interface.c"
- >
- <FileConfiguration
- Name="Release Unicode|Win32"
- >
- <Tool
- Name="VCCLCompilerTool"
- UsePrecompiledHeader="0"
- />
- </FileConfiguration>
+ RelativePath="GraphBuilder.cpp">
<FileConfiguration
- Name="Debug Unicode|Win32"
- >
+ Name="ResourceDLL|Win32"
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCLCompilerTool"
- UsePrecompiledHeader="0"
- />
+ Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
<File
- RelativePath="..\..\filters\InternalPropertyPage.cpp"
- >
+ RelativePath=".\ISDb.cpp">
</File>
<File
- RelativePath=".\IPinHook.cpp"
- >
+ RelativePath=".\jpeg.cpp">
</File>
<File
- RelativePath=".\ISDb.cpp"
- >
- </File>
- <File
- RelativePath=".\jpeg.cpp"
- >
- </File>
- <File
- RelativePath="KeyProvider.cpp"
- >
+ RelativePath="KeyProvider.cpp">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCLCompilerTool"
- />
+ Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
<File
- RelativePath=".\LineNumberEdit.cpp"
- >
+ RelativePath=".\LineNumberEdit.cpp">
</File>
<File
- RelativePath=".\MacrovisionKicker.cpp"
- >
+ RelativePath=".\MacrovisionKicker.cpp">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCLCompilerTool"
- />
+ Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
<File
- RelativePath=".\MainFrm.cpp"
- >
+ RelativePath=".\MainFrm.cpp">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCLCompilerTool"
- />
+ Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
<File
- RelativePath="MediaFormats.cpp"
- >
+ RelativePath="MediaFormats.cpp">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCLCompilerTool"
- />
+ Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
<File
- RelativePath="MediaTypesDlg.cpp"
- >
+ RelativePath="MediaTypesDlg.cpp">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCLCompilerTool"
- />
+ Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
<File
- RelativePath=".\mplayerc.cpp"
- >
+ RelativePath=".\mplayerc.cpp">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCLCompilerTool"
- />
+ Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
<File
- RelativePath=".\mplayerc.rc"
- >
+ RelativePath=".\mplayerc.rc">
</File>
<File
- RelativePath="OpenCapDeviceDlg.cpp"
- >
+ RelativePath="OpenCapDeviceDlg.cpp">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCLCompilerTool"
- />
+ Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
<File
- RelativePath="OpenDlg.cpp"
- >
+ RelativePath="OpenDlg.cpp">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCLCompilerTool"
- />
+ Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
<File
- RelativePath=".\OpenFileDlg.cpp"
- >
- </File>
- <File
- RelativePath="..\..\filters\PinInfoWnd.cpp"
- >
- </File>
- <File
- RelativePath=".\PixelShaderCompiler.cpp"
- >
- </File>
- <File
- RelativePath="PlayerCaptureBar.cpp"
- >
+ RelativePath="PlayerCaptureBar.cpp">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCLCompilerTool"
- />
+ Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
<File
- RelativePath="PlayerCaptureDialog.cpp"
- >
+ RelativePath="PlayerCaptureDialog.cpp">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCLCompilerTool"
- />
+ Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
<File
- RelativePath="PlayerInfoBar.cpp"
- >
+ RelativePath="PlayerInfoBar.cpp">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCLCompilerTool"
- />
+ Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
<File
- RelativePath="PlayerListCtrl.cpp"
- >
+ RelativePath="PlayerListCtrl.cpp">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCLCompilerTool"
- />
+ Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
<File
- RelativePath="PlayerPlaylistBar.cpp"
- >
+ RelativePath="PlayerPlaylistBar.cpp">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCLCompilerTool"
- />
+ Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
<File
- RelativePath="PlayerSeekBar.cpp"
- >
+ RelativePath="PlayerSeekBar.cpp">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCLCompilerTool"
- />
+ Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
<File
- RelativePath=".\PlayerShaderEditorBar.cpp"
- >
- </File>
- <File
- RelativePath="PlayerStatusBar.cpp"
- >
+ RelativePath="PlayerStatusBar.cpp">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCLCompilerTool"
- />
+ Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
<File
- RelativePath="PlayerSubresyncBar.cpp"
- >
+ RelativePath="PlayerSubresyncBar.cpp">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCLCompilerTool"
- />
+ Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
<File
- RelativePath="PlayerToolBar.cpp"
- >
+ RelativePath="PlayerToolBar.cpp">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCLCompilerTool"
- />
+ Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
<File
- RelativePath="Playlist.cpp"
- >
+ RelativePath="Playlist.cpp">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCLCompilerTool"
- />
+ Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
<File
- RelativePath="PnSPresetsDlg.cpp"
- >
+ RelativePath="PnSPresetsDlg.cpp">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCLCompilerTool"
- />
+ Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
<File
- RelativePath="PPageAccelTbl.cpp"
- >
+ RelativePath="PPageAccelTbl.cpp">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCLCompilerTool"
- />
+ Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
<File
- RelativePath="PPageAudioSwitcher.cpp"
- >
+ RelativePath=".\PPageAudioDecoder.cpp">
+ </File>
+ <File
+ RelativePath="PPageAudioSwitcher.cpp">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCLCompilerTool"
- />
+ Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
<File
- RelativePath="PPageBase.cpp"
- >
+ RelativePath="PPageBase.cpp">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCLCompilerTool"
- />
+ Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
<File
- RelativePath=".\PPageCasimir.cpp"
- >
- </File>
- <File
- RelativePath="PPageDVD.cpp"
- >
+ RelativePath="PPageDVD.cpp">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCLCompilerTool"
- />
+ Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
<File
- RelativePath=".\PPageExternalFilters.cpp"
- >
- </File>
- <File
- RelativePath="PPageFileInfoClip.cpp"
- >
+ RelativePath="PPageFileInfoClip.cpp">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCLCompilerTool"
- />
+ Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
<File
- RelativePath="PPageFileInfoDetails.cpp"
- >
+ RelativePath="PPageFileInfoDetails.cpp">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCLCompilerTool"
- />
+ Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
<File
- RelativePath=".\PPageFileInfoRes.cpp"
- >
+ RelativePath=".\PPageFileInfoRes.cpp">
</File>
<File
- RelativePath="PPageFileInfoSheet.cpp"
- >
+ RelativePath="PPageFileInfoSheet.cpp">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCLCompilerTool"
- />
+ Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
<File
- RelativePath="PPageFormats.cpp"
- >
+ RelativePath="PPageFilters.cpp">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCLCompilerTool"
- />
+ Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
<File
- RelativePath=".\PPageInternalFilters.cpp"
- >
+ RelativePath="PPageFormats.cpp">
+ <FileConfiguration
+ Name="ResourceDLL|Win32"
+ ExcludedFromBuild="TRUE">
+ <Tool
+ Name="VCCLCompilerTool"/>
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath=".\PPageLogo.cpp">
+ </File>
+ <File
+ RelativePath=".\PPageMpegDecoder.cpp">
</File>
<File
- RelativePath=".\PPageLogo.cpp"
- >
+ RelativePath=".\PPageOutput.cpp">
</File>
<File
- RelativePath=".\PPageOutput.cpp"
- >
+ RelativePath=".\PPageOverrides.cpp">
</File>
<File
- RelativePath="PPagePlayback.cpp"
- >
+ RelativePath="PPagePlayback.cpp">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCLCompilerTool"
- />
+ Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
<File
- RelativePath="PPagePlayer.cpp"
- >
+ RelativePath="PPagePlayer.cpp">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCLCompilerTool"
- />
+ Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
<File
- RelativePath="PPageSheet.cpp"
- >
+ RelativePath="PPageRealMediaQuickTime.cpp">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCLCompilerTool"
- />
+ Name="VCCLCompilerTool"/>
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="PPageSheet.cpp">
+ <FileConfiguration
+ Name="ResourceDLL|Win32"
+ ExcludedFromBuild="TRUE">
+ <Tool
+ Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
<File
- RelativePath=".\PPageSubDB.cpp"
- >
+ RelativePath=".\PPageSubDB.cpp">
</File>
<File
- RelativePath="PPageSubStyle.cpp"
- >
+ RelativePath="PPageSubStyle.cpp">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCLCompilerTool"
- />
+ Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
<File
- RelativePath="PPageSubtitles.cpp"
- >
+ RelativePath="PPageSubtitles.cpp">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCLCompilerTool"
- />
+ Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
<File
- RelativePath="PPageTweaks.cpp"
- >
+ RelativePath="PPageTweaks.cpp">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCLCompilerTool"
- />
+ Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
<File
- RelativePath=".\PPageWebServer.cpp"
- >
+ RelativePath=".\PPageWebServer.cpp">
</File>
<File
- RelativePath="QuicktimeGraph.cpp"
- >
+ RelativePath="QuicktimeGraph.cpp">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCLCompilerTool"
- />
+ Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
<File
- RelativePath="RealMediaGraph.cpp"
- >
+ RelativePath="RealMediaGraph.cpp">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCLCompilerTool"
- />
+ Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
<File
- RelativePath="RealMediaWindowlessSite.cpp"
- >
+ RelativePath="RealMediaWindowlessSite.cpp">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCLCompilerTool"
- />
+ Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
<File
- RelativePath="RegFilterChooserDlg.cpp"
- >
+ RelativePath="RegFilterChooserDlg.cpp">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCLCompilerTool"
- />
+ Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
<File
- RelativePath="SaveDlg.cpp"
- >
+ RelativePath="SaveDlg.cpp">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCLCompilerTool"
- />
+ Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
<File
- RelativePath="SaveTextFileDialog.cpp"
- >
+ RelativePath="SaveTextFileDialog.cpp">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCLCompilerTool"
- />
+ Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
<File
- RelativePath=".\SaveThumbnailsDialog.cpp"
- >
- </File>
- <File
- RelativePath="SelectMediaType.cpp"
- >
+ RelativePath="SelectMediaType.cpp">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCLCompilerTool"
- />
+ Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
<File
- RelativePath=".\ShaderAutoCompleteDlg.cpp"
- >
- </File>
- <File
- RelativePath=".\ShaderCombineDlg.cpp"
- >
+ RelativePath=".\ShaderAutoCompleteDlg.cpp">
</File>
<File
- RelativePath=".\ShaderEditorDlg.cpp"
- >
+ RelativePath=".\ShaderEditorDlg.cpp">
</File>
<File
- RelativePath="ShockwaveGraph.cpp"
- >
+ RelativePath="ShockwaveGraph.cpp">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCLCompilerTool"
- />
+ Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
<File
- RelativePath="..\ShuttlePN31\Common\ShuttlePN31Client.cpp"
- >
- </File>
- <File
- RelativePath="StaticLink.cpp"
- >
+ RelativePath="StaticLink.cpp">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCLCompilerTool"
- />
+ Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
<File
- RelativePath="StatusLabel.cpp"
- >
+ RelativePath="StatusLabel.cpp">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCLCompilerTool"
- />
+ Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
<File
- RelativePath=".\StdAfx.cpp"
- >
+ RelativePath=".\StdAfx.cpp">
<FileConfiguration
- Name="Release Unicode|Win32"
- >
+ Name="Release Unicode|Win32">
<Tool
Name="VCCLCompilerTool"
- UsePrecompiledHeader="1"
- />
+ UsePrecompiledHeader="1"/>
</FileConfiguration>
<FileConfiguration
- Name="Debug Unicode|Win32"
- >
+ Name="Debug Unicode|Win32">
<Tool
Name="VCCLCompilerTool"
- UsePrecompiledHeader="1"
- />
+ UsePrecompiledHeader="1"/>
</FileConfiguration>
<FileConfiguration
- Name="Release|Win32"
- >
+ Name="Release|Win32">
<Tool
Name="VCCLCompilerTool"
- UsePrecompiledHeader="1"
- />
+ UsePrecompiledHeader="1"/>
</FileConfiguration>
<FileConfiguration
- Name="Debug|Win32"
- >
+ Name="Debug|Win32">
<Tool
Name="VCCLCompilerTool"
- UsePrecompiledHeader="1"
- />
+ UsePrecompiledHeader="1"/>
</FileConfiguration>
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCLCompilerTool"
- />
+ Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
<File
- RelativePath=".\SubtitleDlDlg.cpp"
- >
+ RelativePath=".\SubtitleDlDlg.cpp">
</File>
<File
- RelativePath="TextPassThruFilter.cpp"
- >
+ RelativePath="TextPassThruFilter.cpp">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCLCompilerTool"
- />
+ Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
<File
- RelativePath=".\VMROSD.cpp"
- >
- </File>
- <File
- RelativePath="VolumeCtrl.cpp"
- >
+ RelativePath="VolumeCtrl.cpp">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCLCompilerTool"
- />
+ Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
<File
- RelativePath=".\WebClientSocket.cpp"
- >
+ RelativePath=".\WebClientSocket.cpp">
</File>
<File
- RelativePath=".\WebServer.cpp"
- >
+ RelativePath=".\WebServer.cpp">
</File>
<File
- RelativePath=".\WebServerSocket.cpp"
- >
+ RelativePath=".\WebServerSocket.cpp">
</File>
</Filter>
<Filter
Name="Header Files"
- Filter="h;hpp;hxx;hm;inl"
- >
+ Filter="h;hpp;hxx;hm;inl">
<File
- RelativePath=".\AuthDlg.h"
- >
+ RelativePath=".\AuthDlg.h">
</File>
<File
- RelativePath="BaseGraph.h"
- >
+ RelativePath="BaseGraph.h">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCustomBuildTool"
- />
+ Name="VCCustomBuildTool"/>
</FileConfiguration>
</File>
<File
- RelativePath=".\ChildView.h"
- >
+ RelativePath=".\ChildView.h">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCustomBuildTool"
- />
+ Name="VCCustomBuildTool"/>
</FileConfiguration>
</File>
<File
- RelativePath="ComPropertyPage.h"
- >
+ RelativePath="ComPropertyPage.h">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCustomBuildTool"
- />
+ Name="VCCustomBuildTool"/>
</FileConfiguration>
</File>
<File
- RelativePath="ComPropertySheet.h"
- >
+ RelativePath="ComPropertySheet.h">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCustomBuildTool"
- />
+ Name="VCCustomBuildTool"/>
</FileConfiguration>
</File>
<File
- RelativePath=".\ConvertChapDlg.h"
- >
+ RelativePath=".\ConvertChapDlg.h">
</File>
<File
- RelativePath=".\ConvertDlg.h"
- >
+ RelativePath=".\ConvertDlg.h">
</File>
<File
- RelativePath=".\ConvertPropsDlg.h"
- >
+ RelativePath=".\ConvertPropsDlg.h">
</File>
<File
- RelativePath=".\ConvertResDlg.h"
- >
+ RelativePath=".\ConvertResDlg.h">
</File>
<File
- RelativePath="CShockwaveFlash.h"
- >
+ RelativePath="CShockwaveFlash.h">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCustomBuildTool"
- />
+ Name="VCCustomBuildTool"/>
</FileConfiguration>
</File>
<File
- RelativePath=".\D3DFont.h"
- >
- </File>
- <File
- RelativePath=".\DeinterlacerFilter.h"
- >
+ RelativePath=".\DeinterlacerFilter.h">
</File>
<File
- RelativePath="DX7AllocatorPresenter.h"
- >
+ RelativePath="DX7AllocatorPresenter.h">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCustomBuildTool"
- />
+ Name="VCCustomBuildTool"/>
</FileConfiguration>
</File>
<File
- RelativePath="DX9AllocatorPresenter.h"
- >
+ RelativePath="DX9AllocatorPresenter.h">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCustomBuildTool"
- />
+ Name="VCCustomBuildTool"/>
</FileConfiguration>
</File>
<File
- RelativePath=".\FakeFilterMapper2.h"
- >
+ RelativePath=".\FakeFilterMapper2.h">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCustomBuildTool"
- />
+ Name="VCCustomBuildTool"/>
</FileConfiguration>
</File>
<File
- RelativePath="FavoriteAddDlg.h"
- >
+ RelativePath="FavoriteAddDlg.h">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCustomBuildTool"
- />
+ Name="VCCustomBuildTool"/>
</FileConfiguration>
</File>
<File
- RelativePath="FavoriteOrganizeDlg.h"
- >
+ RelativePath="FavoriteOrganizeDlg.h">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCustomBuildTool"
- />
+ Name="VCCustomBuildTool"/>
</FileConfiguration>
</File>
<File
- RelativePath=".\FGFilter.h"
- >
- </File>
- <File
- RelativePath=".\FGManager.h"
- >
- </File>
- <File
- RelativePath="FileDropTarget.h"
- >
+ RelativePath="FileDropTarget.h">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCustomBuildTool"
- />
+ Name="VCCustomBuildTool"/>
</FileConfiguration>
</File>
<File
- RelativePath="FloatEdit.h"
- >
+ RelativePath="FloatEdit.h">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCustomBuildTool"
- />
+ Name="VCCustomBuildTool"/>
</FileConfiguration>
</File>
<File
- RelativePath=".\FullscreenWnd.h"
- >
- </File>
- <File
- RelativePath="GoToDlg.h"
- >
+ RelativePath="GoToDlg.h">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCustomBuildTool"
- />
+ Name="VCCustomBuildTool"/>
</FileConfiguration>
</File>
<File
- RelativePath=".\IGraphBuilder2.h"
- >
- </File>
- <File
- RelativePath="..\ShuttlePN31\Common\Interface.h"
- >
- </File>
- <File
- RelativePath=".\IPinHook.h"
- >
+ RelativePath="GraphBuilder.h">
+ <FileConfiguration
+ Name="ResourceDLL|Win32"
+ ExcludedFromBuild="TRUE">
+ <Tool
+ Name="VCCustomBuildTool"/>
+ </FileConfiguration>
</File>
<File
- RelativePath="IQTVideoSurface.h"
- >
+ RelativePath="IQTVideoSurface.h">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCustomBuildTool"
- />
+ Name="VCCustomBuildTool"/>
</FileConfiguration>
</File>
<File
- RelativePath=".\ISDb.h"
- >
+ RelativePath=".\ISDb.h">
</File>
<File
- RelativePath=".\jpeg.h"
- >
+ RelativePath=".\jpeg.h">
</File>
<File
- RelativePath=".\jpeg_tables.h"
- >
+ RelativePath=".\jpeg_tables.h">
</File>
<File
- RelativePath="KeyProvider.h"
- >
+ RelativePath="KeyProvider.h">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCustomBuildTool"
- />
+ Name="VCCustomBuildTool"/>
</FileConfiguration>
</File>
<File
- RelativePath=".\LineNumberEdit.h"
- >
+ RelativePath=".\LineNumberEdit.h">
</File>
<File
- RelativePath=".\MacrovisionKicker.h"
- >
+ RelativePath=".\MacrovisionKicker.h">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCustomBuildTool"
- />
+ Name="VCCustomBuildTool"/>
</FileConfiguration>
</File>
<File
- RelativePath=".\MainFrm.h"
- >
+ RelativePath=".\MainFrm.h">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCustomBuildTool"
- />
+ Name="VCCustomBuildTool"/>
</FileConfiguration>
</File>
<File
- RelativePath="MediaFormats.h"
- >
+ RelativePath="MediaFormats.h">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCustomBuildTool"
- />
+ Name="VCCustomBuildTool"/>
</FileConfiguration>
</File>
<File
- RelativePath="MediaTypesDlg.h"
- >
+ RelativePath="MediaTypesDlg.h">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCustomBuildTool"
- />
+ Name="VCCustomBuildTool"/>
</FileConfiguration>
</File>
<File
- RelativePath=".\mplayerc.h"
- >
+ RelativePath=".\mplayerc.h">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCustomBuildTool"
- />
+ Name="VCCustomBuildTool"/>
</FileConfiguration>
</File>
<File
- RelativePath="OpenCapDeviceDlg.h"
- >
+ RelativePath="OpenCapDeviceDlg.h">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCustomBuildTool"
- />
+ Name="VCCustomBuildTool"/>
</FileConfiguration>
</File>
<File
- RelativePath="OpenDlg.h"
- >
+ RelativePath="OpenDlg.h">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCustomBuildTool"
- />
+ Name="VCCustomBuildTool"/>
</FileConfiguration>
</File>
<File
- RelativePath=".\OpenFileDlg.h"
- >
- </File>
- <File
- RelativePath=".\PixelShaderCompiler.h"
- >
- </File>
- <File
- RelativePath="PlayerCaptureBar.h"
- >
+ RelativePath="PlayerCaptureBar.h">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCustomBuildTool"
- />
+ Name="VCCustomBuildTool"/>
</FileConfiguration>
</File>
<File
- RelativePath="PlayerCaptureDialog.h"
- >
+ RelativePath="PlayerCaptureDialog.h">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCustomBuildTool"
- />
+ Name="VCCustomBuildTool"/>
</FileConfiguration>
</File>
<File
- RelativePath="PlayerInfoBar.h"
- >
+ RelativePath="PlayerInfoBar.h">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCustomBuildTool"
- />
+ Name="VCCustomBuildTool"/>
</FileConfiguration>
</File>
<File
- RelativePath="PlayerListCtrl.h"
- >
+ RelativePath="PlayerListCtrl.h">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCustomBuildTool"
- />
+ Name="VCCustomBuildTool"/>
</FileConfiguration>
</File>
<File
- RelativePath="PlayerPlaylistBar.h"
- >
+ RelativePath="PlayerPlaylistBar.h">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCustomBuildTool"
- />
+ Name="VCCustomBuildTool"/>
</FileConfiguration>
</File>
<File
- RelativePath="PlayerSeekBar.h"
- >
+ RelativePath="PlayerSeekBar.h">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCustomBuildTool"
- />
+ Name="VCCustomBuildTool"/>
</FileConfiguration>
</File>
<File
- RelativePath=".\PlayerShaderEditorBar.h"
- >
- </File>
- <File
- RelativePath="PlayerStatusBar.h"
- >
+ RelativePath="PlayerStatusBar.h">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCustomBuildTool"
- />
+ Name="VCCustomBuildTool"/>
</FileConfiguration>
</File>
<File
- RelativePath="PlayerSubresyncBar.h"
- >
+ RelativePath="PlayerSubresyncBar.h">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCustomBuildTool"
- />
+ Name="VCCustomBuildTool"/>
</FileConfiguration>
</File>
<File
- RelativePath="PlayerToolBar.h"
- >
+ RelativePath="PlayerToolBar.h">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCustomBuildTool"
- />
+ Name="VCCustomBuildTool"/>
</FileConfiguration>
</File>
<File
- RelativePath="Playlist.h"
- >
+ RelativePath="Playlist.h">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCustomBuildTool"
- />
+ Name="VCCustomBuildTool"/>
</FileConfiguration>
</File>
<File
- RelativePath="PnSPresetsDlg.h"
- >
+ RelativePath="PnSPresetsDlg.h">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCustomBuildTool"
- />
+ Name="VCCustomBuildTool"/>
</FileConfiguration>
</File>
<File
- RelativePath="PPageAccelTbl.h"
- >
+ RelativePath="PPageAccelTbl.h">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCustomBuildTool"
- />
+ Name="VCCustomBuildTool"/>
</FileConfiguration>
</File>
<File
- RelativePath="PPageAudioSwitcher.h"
- >
+ RelativePath=".\PPageAudioDecoder.h">
+ </File>
+ <File
+ RelativePath="PPageAudioSwitcher.h">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCustomBuildTool"
- />
+ Name="VCCustomBuildTool"/>
</FileConfiguration>
</File>
<File
- RelativePath="PPageBase.h"
- >
+ RelativePath="PPageBase.h">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCustomBuildTool"
- />
+ Name="VCCustomBuildTool"/>
</FileConfiguration>
</File>
<File
- RelativePath=".\PPageCasimir.h"
- >
- </File>
- <File
- RelativePath="PPageDVD.h"
- >
+ RelativePath="PPageDVD.h">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCustomBuildTool"
- />
+ Name="VCCustomBuildTool"/>
</FileConfiguration>
</File>
<File
- RelativePath=".\PPageExternalFilters.h"
- >
- </File>
- <File
- RelativePath="PPageFileInfoClip.h"
- >
+ RelativePath="PPageFileInfoClip.h">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCustomBuildTool"
- />
+ Name="VCCustomBuildTool"/>
</FileConfiguration>
</File>
<File
- RelativePath="PPageFileInfoDetails.h"
- >
+ RelativePath="PPageFileInfoDetails.h">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCustomBuildTool"
- />
+ Name="VCCustomBuildTool"/>
</FileConfiguration>
</File>
<File
- RelativePath=".\PPageFileInfoRes.h"
- >
+ RelativePath=".\PPageFileInfoRes.h">
+ </File>
+ <File
+ RelativePath="PPageFileInfoSheet.h">
+ <FileConfiguration
+ Name="ResourceDLL|Win32"
+ ExcludedFromBuild="TRUE">
+ <Tool
+ Name="VCCustomBuildTool"/>
+ </FileConfiguration>
</File>
<File
- RelativePath="PPageFileInfoSheet.h"
- >
+ RelativePath="PPageFilters.h">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCustomBuildTool"
- />
+ Name="VCCustomBuildTool"/>
</FileConfiguration>
</File>
<File
- RelativePath="PPageFormats.h"
- >
+ RelativePath="PPageFormats.h">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCustomBuildTool"
- />
+ Name="VCCustomBuildTool"/>
</FileConfiguration>
</File>
<File
- RelativePath=".\PPageInternalFilters.h"
- >
+ RelativePath=".\PPageLogo.h">
</File>
<File
- RelativePath=".\PPageLogo.h"
- >
+ RelativePath=".\PPageMpegDecoder.h">
</File>
<File
- RelativePath=".\PPageOutput.h"
- >
+ RelativePath=".\PPageOutput.h">
+ </File>
+ <File
+ RelativePath=".\PPageOverrides.h">
+ </File>
+ <File
+ RelativePath="PPagePlayback.h">
+ <FileConfiguration
+ Name="ResourceDLL|Win32"
+ ExcludedFromBuild="TRUE">
+ <Tool
+ Name="VCCustomBuildTool"/>
+ </FileConfiguration>
</File>
<File
- RelativePath="PPagePlayback.h"
- >
+ RelativePath="PPagePlayer.h">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCustomBuildTool"
- />
+ Name="VCCustomBuildTool"/>
</FileConfiguration>
</File>
<File
- RelativePath="PPagePlayer.h"
- >
+ RelativePath="PPageRealMediaQuickTime.h">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCustomBuildTool"
- />
+ Name="VCCustomBuildTool"/>
</FileConfiguration>
</File>
<File
- RelativePath="PPageSheet.h"
- >
+ RelativePath="PPageSheet.h">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCustomBuildTool"
- />
+ Name="VCCustomBuildTool"/>
</FileConfiguration>
</File>
<File
- RelativePath=".\PPageSubDB.h"
- >
+ RelativePath=".\PPageSubDB.h">
</File>
<File
- RelativePath="PPageSubStyle.h"
- >
+ RelativePath="PPageSubStyle.h">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCustomBuildTool"
- />
+ Name="VCCustomBuildTool"/>
</FileConfiguration>
</File>
<File
- RelativePath="PPageSubtitles.h"
- >
+ RelativePath="PPageSubtitles.h">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCustomBuildTool"
- />
+ Name="VCCustomBuildTool"/>
</FileConfiguration>
</File>
<File
- RelativePath="PPageTweaks.h"
- >
+ RelativePath="PPageTweaks.h">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCustomBuildTool"
- />
+ Name="VCCustomBuildTool"/>
</FileConfiguration>
</File>
<File
- RelativePath=".\PPageWebServer.h"
- >
+ RelativePath=".\PPageWebServer.h">
</File>
<File
- RelativePath="QuicktimeGraph.h"
- >
+ RelativePath="QuicktimeGraph.h">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCustomBuildTool"
- />
+ Name="VCCustomBuildTool"/>
</FileConfiguration>
</File>
<File
- RelativePath="RealMediaGraph.h"
- >
+ RelativePath="RealMediaGraph.h">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCustomBuildTool"
- />
+ Name="VCCustomBuildTool"/>
</FileConfiguration>
</File>
<File
- RelativePath="RealMediaWindowlessSite.h"
- >
+ RelativePath="RealMediaWindowlessSite.h">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCustomBuildTool"
- />
+ Name="VCCustomBuildTool"/>
</FileConfiguration>
</File>
<File
- RelativePath="RegFilterChooserDlg.h"
- >
+ RelativePath="RegFilterChooserDlg.h">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCustomBuildTool"
- />
+ Name="VCCustomBuildTool"/>
</FileConfiguration>
</File>
<File
- RelativePath=".\Resource.h"
- >
+ RelativePath=".\Resource.h">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCustomBuildTool"
- />
+ Name="VCCustomBuildTool"/>
</FileConfiguration>
</File>
<File
- RelativePath="SaveDlg.h"
- >
+ RelativePath="SaveDlg.h">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCustomBuildTool"
- />
+ Name="VCCustomBuildTool"/>
</FileConfiguration>
</File>
<File
- RelativePath="SaveTextFileDialog.h"
- >
+ RelativePath="SaveTextFileDialog.h">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCustomBuildTool"
- />
+ Name="VCCustomBuildTool"/>
</FileConfiguration>
</File>
<File
- RelativePath=".\SaveThumbnailsDialog.h"
- >
- </File>
- <File
- RelativePath="SelectMediaType.h"
- >
+ RelativePath="SelectMediaType.h">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCustomBuildTool"
- />
+ Name="VCCustomBuildTool"/>
</FileConfiguration>
</File>
<File
- RelativePath=".\ShaderAutoCompleteDlg.h"
- >
+ RelativePath=".\ShaderAutoCompleteDlg.h">
</File>
<File
- RelativePath=".\ShaderCombineDlg.h"
- >
+ RelativePath=".\ShaderEditorDlg.h">
</File>
<File
- RelativePath=".\ShaderEditorDlg.h"
- >
- </File>
- <File
- RelativePath="ShockwaveGraph.h"
- >
+ RelativePath="ShockwaveGraph.h">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCustomBuildTool"
- />
+ Name="VCCustomBuildTool"/>
</FileConfiguration>
</File>
<File
- RelativePath="..\ShuttlePN31\Common\ShuttlePN31Client.h"
- >
- </File>
- <File
- RelativePath="StaticLink.h"
- >
+ RelativePath="StaticLink.h">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCustomBuildTool"
- />
+ Name="VCCustomBuildTool"/>
</FileConfiguration>
</File>
<File
- RelativePath="StatusLabel.h"
- >
+ RelativePath="StatusLabel.h">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCustomBuildTool"
- />
+ Name="VCCustomBuildTool"/>
</FileConfiguration>
</File>
<File
- RelativePath=".\StdAfx.h"
- >
+ RelativePath=".\StdAfx.h">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCustomBuildTool"
- />
+ Name="VCCustomBuildTool"/>
</FileConfiguration>
</File>
<File
- RelativePath=".\SubtitleDlDlg.h"
- >
+ RelativePath=".\SubtitleDlDlg.h">
</File>
<File
- RelativePath="TextPassThruFilter.h"
- >
+ RelativePath="TextPassThruFilter.h">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCustomBuildTool"
- />
+ Name="VCCustomBuildTool"/>
</FileConfiguration>
</File>
<File
- RelativePath=".\VMROSD.h"
- >
- </File>
- <File
- RelativePath="VolumeCtrl.h"
- >
+ RelativePath="VolumeCtrl.h">
<FileConfiguration
Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
+ ExcludedFromBuild="TRUE">
<Tool
- Name="VCCustomBuildTool"
- />
+ Name="VCCustomBuildTool"/>
</FileConfiguration>
</File>
<File
- RelativePath=".\WebClientSocket.h"
- >
+ RelativePath=".\WebClientSocket.h">
</File>
<File
- RelativePath=".\WebServer.h"
- >
+ RelativePath=".\WebServer.h">
</File>
<File
- RelativePath=".\WebServerSocket.h"
- >
+ RelativePath=".\WebServerSocket.h">
</File>
</Filter>
<Filter
Name="Resource Files"
- Filter="ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
- >
+ Filter="ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe">
<File
- RelativePath="res\ani.avi"
- >
+ RelativePath="res\ani.avi">
</File>
<File
- RelativePath=".\res\authhdrpic.bmp"
- >
+ RelativePath=".\res\authhdrpic.bmp">
</File>
<File
- RelativePath="res\icon.ico"
- >
+ RelativePath="res\icon.ico">
</File>
<File
- RelativePath="res\Icon_114.ico"
- >
+ RelativePath="res\Icon_114.ico">
</File>
<File
- RelativePath="res\Icon_116.ico"
- >
+ RelativePath="res\Icon_116.ico">
</File>
<File
- RelativePath="res\Icon_41.ico"
- >
+ RelativePath="res\Icon_41.ico">
</File>
<File
- RelativePath=".\res\logo.0.bmp"
- >
+ RelativePath=".\res\id_playe.bmp">
</File>
<File
- RelativePath=".\res\logo.1.bmp"
- >
+ RelativePath=".\res\idr_main.ico">
</File>
<File
- RelativePath=".\res\logo.2.bmp"
- >
+ RelativePath=".\res\logo.0.bmp">
</File>
<File
- RelativePath=".\res\logo.3.bmp"
- >
+ RelativePath=".\res\logo.1.bmp">
</File>
<File
- RelativePath=".\res\logo.4.bmp"
- >
+ RelativePath=".\res\logo.2.bmp">
</File>
<File
- RelativePath=".\res\logo.5.bmp"
- >
+ RelativePath=".\res\logo.3.bmp">
</File>
<File
- RelativePath=".\res\logo.6.bmp"
- >
+ RelativePath=".\res\logo.4.bmp">
</File>
<File
- RelativePath=".\res\logo.7.bmp"
- >
+ RelativePath=".\res\logo.5.bmp">
</File>
<File
- RelativePath="res\mono.bmp"
- >
+ RelativePath=".\res\logo.6.bmp">
</File>
<File
- RelativePath="res\mplayerc.manifest"
- >
- <FileConfiguration
- Name="Release Unicode|Win32"
- ExcludedFromBuild="true"
- >
- <Tool
- Name="VCCustomBuildTool"
- />
- </FileConfiguration>
- <FileConfiguration
- Name="Debug Unicode|Win32"
- ExcludedFromBuild="true"
- >
- <Tool
- Name="VCCustomBuildTool"
- />
- </FileConfiguration>
- <FileConfiguration
- Name="Release|Win32"
- ExcludedFromBuild="true"
- >
- <Tool
- Name="VCCustomBuildTool"
- />
- </FileConfiguration>
- <FileConfiguration
- Name="Debug|Win32"
- ExcludedFromBuild="true"
- >
- <Tool
- Name="VCCustomBuildTool"
- />
- </FileConfiguration>
- <FileConfiguration
- Name="ResourceDLL|Win32"
- ExcludedFromBuild="true"
- >
- <Tool
- Name="VCCustomBuildTool"
- />
- </FileConfiguration>
+ RelativePath=".\res\logo.7.bmp">
+ </File>
+ <File
+ RelativePath="res\mono.bmp">
+ </File>
+ <File
+ RelativePath="res\mplayerc.manifest">
</File>
<File
- RelativePath="res\multi.ico"
- >
+ RelativePath="res\multi.ico">
</File>
<File
- RelativePath="res\noaudio.bmp"
- >
+ RelativePath="res\noaudio.bmp">
</File>
<File
- RelativePath="res\onoff.bmp"
- >
+ RelativePath="res\onoff.bmp">
</File>
<File
- RelativePath="res\single.ico"
- >
+ RelativePath="res\single.ico">
</File>
<File
- RelativePath="res\stereo.bmp"
- >
+ RelativePath="res\stereo.bmp">
</File>
<File
- RelativePath=".\res\streamtypes.bmp"
- >
+ RelativePath=".\res\streamtypes.bmp">
</File>
<File
- RelativePath="res\toolbar1.bmp"
- >
+ RelativePath="res\toolbar1.bmp">
</File>
<Filter
Name="web"
- >
+ Filter="">
<File
- RelativePath=".\res\web\1pix.gif"
- >
+ RelativePath=".\res\web\1pix.gif">
</File>
<File
- RelativePath=".\res\web\404.html"
- >
+ RelativePath=".\res\web\404.html">
</File>
<File
- RelativePath=".\res\web\bottomside.PNG"
- >
+ RelativePath=".\res\web\bottomside.PNG">
</File>
<File
- RelativePath=".\res\web\browser.html"
- >
+ RelativePath=".\res\web\browser.html">
</File>
<File
- RelativePath=".\res\web\controlback.png"
- >
+ RelativePath=".\res\web\controlback.png">
</File>
<File
- RelativePath=".\res\web\controlbuttondecrate.png"
- >
+ RelativePath=".\res\web\controlbuttondecrate.png">
</File>
<File
- RelativePath=".\res\web\controlbuttonincrate.png"
- >
+ RelativePath=".\res\web\controlbuttonincrate.png">
</File>
<File
- RelativePath=".\res\web\controlbuttonpause.png"
- >
+ RelativePath=".\res\web\controlbuttonpause.png">
</File>
<File
- RelativePath=".\res\web\controlbuttonplay.png"
- >
+ RelativePath=".\res\web\controlbuttonplay.png">
</File>
<File
- RelativePath=".\res\web\controlbuttonskipback.png"
- >
+ RelativePath=".\res\web\controlbuttonskipback.png">
</File>
<File
- RelativePath=".\res\web\controlbuttonskipforward.png"
- >
+ RelativePath=".\res\web\controlbuttonskipforward.png">
</File>
<File
- RelativePath=".\res\web\controlbuttonstep.png"
- >
+ RelativePath=".\res\web\controlbuttonstep.png">
</File>
<File
- RelativePath=".\res\web\controlbuttonstop.png"
- >
+ RelativePath=".\res\web\controlbuttonstop.png">
</File>
<File
- RelativePath=".\res\web\controls.html"
- >
+ RelativePath=".\res\web\controls.html">
</File>
<File
- RelativePath=".\res\web\controlvolumebar.png"
- >
+ RelativePath=".\res\web\controlvolumebar.png">
</File>
<File
- RelativePath=".\res\web\controlvolumegrip.png"
- >
+ RelativePath=".\res\web\controlvolumegrip.png">
</File>
<File
- RelativePath=".\res\web\controlvolumeoff.png"
- >
+ RelativePath=".\res\web\controlvolumeoff.png">
</File>
<File
- RelativePath=".\res\web\controlvolumeon.png"
- >
+ RelativePath=".\res\web\controlvolumeon.png">
</File>
<File
- RelativePath=".\res\web\default.css"
- >
+ RelativePath=".\res\web\default.css">
</File>
<File
- RelativePath=".\res\web\headerback.png"
- >
+ RelativePath=".\res\web\headerback.png">
</File>
<File
- RelativePath=".\res\web\headerclose.png"
- >
+ RelativePath=".\res\web\headerclose.png">
</File>
<File
- RelativePath=".\res\web\headericon.png"
- >
+ RelativePath=".\res\web\headericon.png">
</File>
<File
- RelativePath=".\res\web\index.html"
- >
+ RelativePath=".\res\web\index.html">
</File>
<File
- RelativePath=".\res\web\leftbottomside.png"
- >
+ RelativePath=".\res\web\leftbottomside.png">
</File>
<File
- RelativePath=".\res\web\leftside.png"
- >
+ RelativePath=".\res\web\leftside.png">
</File>
<File
- RelativePath=".\res\web\logo.png"
- >
+ RelativePath=".\res\web\logo.png">
</File>
<File
- RelativePath=".\res\web\player.html"
- >
+ RelativePath=".\res\web\player.html">
</File>
<File
- RelativePath=".\res\web\rightbottomside.png"
- >
+ RelativePath=".\res\web\rightbottomside.png">
</File>
<File
- RelativePath=".\res\web\rightside.png"
- >
+ RelativePath=".\res\web\rightside.png">
</File>
<File
- RelativePath=".\res\web\seekbargrip.png"
- >
+ RelativePath=".\res\web\seekbargrip.png">
</File>
<File
- RelativePath=".\res\web\seekbarleft.png"
- >
+ RelativePath=".\res\web\seekbarleft.png">
</File>
<File
- RelativePath=".\res\web\seekbarmid.png"
- >
+ RelativePath=".\res\web\seekbarmid.png">
</File>
<File
- RelativePath=".\res\web\seekbarright.png"
- >
+ RelativePath=".\res\web\seekbarright.png">
</File>
<File
- RelativePath=".\res\web\sliderback.gif"
- >
+ RelativePath=".\res\web\sliderback.gif">
</File>
<File
- RelativePath=".\res\web\sliderbar.gif"
- >
+ RelativePath=".\res\web\sliderbar.gif">
</File>
<File
- RelativePath=".\res\web\slidergrip.gif"
- >
+ RelativePath=".\res\web\slidergrip.gif">
</File>
<File
- RelativePath=".\res\web\vbg.gif"
- >
+ RelativePath=".\res\web\vbg.gif">
</File>
<File
- RelativePath=".\res\web\vbs.GIF"
- >
+ RelativePath=".\res\web\vbs.GIF">
</File>
</Filter>
<Filter
Name="shaders"
- >
- <File
- RelativePath=".\res\shaders\contour.psh"
- >
- </File>
- <File
- RelativePath=".\res\shaders\deinterlace (blend).psh"
- >
- </File>
- <File
- RelativePath=".\res\shaders\EdgeSharpen.psh"
- >
- </File>
- <File
- RelativePath=".\res\shaders\emboss.psh"
- >
- </File>
- <File
- RelativePath=".\res\shaders\empty.psh"
- >
- </File>
- <File
- RelativePath=".\res\shaders\grayscale.psh"
- >
- </File>
- <File
- RelativePath=".\res\shaders\invert.psh"
- >
- </File>
- <File
- RelativePath=".\res\shaders\letterbox.psh"
- >
- </File>
- <File
- RelativePath=".\res\shaders\procamp.psh"
- >
- </File>
- <File
- RelativePath=".\res\shaders\resizer.psh"
- >
- </File>
- <File
- RelativePath=".\res\shaders\sharpen.psh"
- >
- </File>
- <File
- RelativePath=".\res\shaders\SharpenComplex.psh"
- >
- </File>
- <File
- RelativePath=".\res\shaders\sphere.psh"
- >
- </File>
- <File
- RelativePath=".\res\shaders\spotlight.psh"
- >
- </File>
+ Filter="">
<File
- RelativePath=".\res\shaders\wave.psh"
- >
+ RelativePath=".\res\shaders\resizer.psh">
</File>
</Filter>
</Filter>
- <File
- RelativePath=".\History.txt"
- >
- </File>
- <File
- RelativePath=".\res\PN31Snoop.sys"
- >
- </File>
</Files>
<Globals>
<Global
Name="DevPartner_IsInstrumented"
- Value="1"
- />
+ Value="1"/>
<Global
Name="RESOURCE_FILE"
- Value="mplayerc.rc"
- />
+ Value="mplayerc.rc"/>
</Globals>
</VisualStudioProject>
diff --git a/src/apps/mplayerc/mplayerc_vs2005.vcproj b/src/apps/mplayerc/mplayerc_vs2005.vcproj
index f4c85d499..b95bfcb0a 100644
--- a/src/apps/mplayerc/mplayerc_vs2005.vcproj
+++ b/src/apps/mplayerc/mplayerc_vs2005.vcproj
@@ -65,7 +65,7 @@
<Tool
Name="VCLinkerTool"
AdditionalOptions="/MACHINE:I386"
- AdditionalDependencies="comsuppw.lib Delayimp.lib psapi.lib detours.lib qtmlClient.lib wmstub.lib dxguid.lib Dsound.lib strmbaseRU.lib dsutilRU.lib subpicRU.lib subtitlesRU.lib libssfRU.lib asyncreaderRU.lib audioswitcherRU.lib avi2ac3filterRU.lib bufferfilterRU.lib cddareaderRU.lib cdxareaderRU.lib d2vsourceRU.lib decssfilterRU.lib flicsourceRU.lib dtsac3sourceRU.lib basesourceRU.lib wavdestRU.lib shoutcastsourceRU.lib streamdrivethruRU.lib vtsreaderRU.lib basesplitterRU.lib MatroskaSplitterRU.lib MatroskaMuxerRU.lib RealMediaSplitterRU.lib AviSplitterRU.lib Mpeg2DecFilterRU.lib MpaDecFilterRU.lib RoQSplitterRU.lib OggSplitterRU.lib NutSplitterRU.lib MpegSplitterRU.lib DiracSplitterRU.lib MpaSplitterRU.lib DSMSplitterRU.lib BaseMuxerRU.lib DSMMuxerRU.lib UDPReaderRU.lib FLVSplitterRU.lib zlibR.lib subtitlesourceRU.lib filtersRU.lib libvorbisidecR.lib SSFSplitterRU.lib libpngR.lib Setupapi.lib "
+ AdditionalDependencies="comsuppw.lib Delayimp.lib psapi.lib detours.lib qtmlClient.lib wmstub.lib dxguid.lib Dsound.lib strmbaseRU.lib dsutilRU.lib subpicRU.lib subtitlesRU.lib libssfRU.lib asyncreaderRU.lib audioswitcherRU.lib avi2ac3filterRU.lib bufferfilterRU.lib cddareaderRU.lib cdxareaderRU.lib d2vsourceRU.lib decssfilterRU.lib flicsourceRU.lib dtsac3sourceRU.lib basesourceRU.lib wavdestRU.lib shoutcastsourceRU.lib streamdrivethruRU.lib vtsreaderRU.lib basesplitterRU.lib MatroskaSplitterRU.lib MatroskaMuxerRU.lib RealMediaSplitterRU.lib AviSplitterRU.lib Mpeg2DecFilterRU.lib MpaDecFilterRU.lib RoQSplitterRU.lib OggSplitterRU.lib NutSplitterRU.lib MpegSplitterRU.lib DiracSplitterRU.lib MpaSplitterRU.lib DSMSplitterRU.lib BaseMuxerRU.lib DSMMuxerRU.lib UDPReaderRU.lib FLVSplitterRU.lib zlibR.lib subtitlesourceRU.lib filtersRU.lib libvorbisidecR.lib SSFSplitterRU.lib MP4SplitterRU.lib libpngR.lib Setupapi.lib "
OutputFile="$(OutDir)\$(ProjectName).exe"
AdditionalLibraryDirectories="../../../lib;../../../lib/wm7;../../../lib/qt6;../../../lib/detours"
IgnoreDefaultLibraryNames="MSVCRT"
@@ -148,10 +148,10 @@
<Tool
Name="VCLinkerTool"
AdditionalOptions="/MACHINE:I386"
- AdditionalDependencies="comsuppw.lib Delayimp.lib psapi.lib detours.lib qtmlClient.lib wmstub.lib Dsound.lib dxguid.lib strmbaseDU.lib dsutilDU.lib subpicDU.lib subtitlesDU.lib libssfDU.lib asyncreaderDU.lib audioswitcherDU.lib avi2ac3filterDU.lib bufferfilterDU.lib cddareaderDU.lib cdxareaderDU.lib d2vsourceDU.lib decssfilterDU.lib flicsourceDU.lib dtsac3sourceDU.lib basesourceDU.lib subtitlesourceDU.lib wavdestDU.lib shoutcastsourceDU.lib streamdrivethruDU.lib vtsreaderDU.lib basesplitterDU.lib MatroskaSplitterDU.lib MatroskaMuxerDU.lib RealMediaSplitterDU.lib AviSplitterDU.lib Mpeg2DecFilterDU.lib MpaDecFilterDU.lib RoQSplitterDU.lib OggSplitterDU.lib NutSplitterDU.lib MpegSplitterDU.lib DiracSplitterDU.lib MpaSplitterDU.lib DSMSplitterDU.lib BaseMuxerDU.lib DSMMuxerDU.lib UDPReaderDU.lib FLVSplitterDU.lib zlibD.lib filtersDU.lib libvorbisidecD.lib SSFSplitterDU.lib libpngD.lib Setupapi.lib"
+ AdditionalDependencies="comsuppw.lib Delayimp.lib psapi.lib detours.lib qtmlClient.lib wmstub.lib Dsound.lib dxguid.lib strmbaseDU.lib dsutilDU.lib subpicDU.lib subtitlesDU.lib libssfDU.lib asyncreaderDU.lib audioswitcherDU.lib avi2ac3filterDU.lib bufferfilterDU.lib cddareaderDU.lib cdxareaderDU.lib d2vsourceDU.lib decssfilterDU.lib flicsourceDU.lib dtsac3sourceDU.lib basesourceDU.lib subtitlesourceDU.lib wavdestDU.lib shoutcastsourceDU.lib streamdrivethruDU.lib vtsreaderDU.lib basesplitterDU.lib MatroskaSplitterDU.lib MatroskaMuxerDU.lib RealMediaSplitterDU.lib AviSplitterDU.lib Mpeg2DecFilterDU.lib MpaDecFilterDU.lib RoQSplitterDU.lib OggSplitterDU.lib NutSplitterDU.lib MpegSplitterDU.lib DiracSplitterDU.lib MpaSplitterDU.lib DSMSplitterDU.lib BaseMuxerDU.lib DSMMuxerDU.lib UDPReaderDU.lib FLVSplitterDU.lib zlibD.lib filtersDU.lib libvorbisidecD.lib SSFSplitterDU.lib MP4SplitterDU.lib libpngD.lib Setupapi.lib"
OutputFile="$(OutDir)\$(ProjectName).exe"
AdditionalLibraryDirectories="../../../lib;../../../lib/wm7;../../../lib/qt6;../../../lib/detours"
- IgnoreDefaultLibraryNames="MSVCRTD;LIBCMTD"
+ IgnoreDefaultLibraryNames="MSVCRTD;"
DelayLoadDLLs="d3d9.dll;msimg32.dll;gdiplus.dll;psapi.dll"
SubSystem="2"
/>