From: <sag...@us...> - 2012-03-12 22:41:27
|
Revision: 1216 http://modplug.svn.sourceforge.net/modplug/?rev=1216&view=rev Author: saga-games Date: 2012-03-12 22:41:17 +0000 (Mon, 12 Mar 2012) Log Message: ----------- [Ref] NOTE: ASIO and VST SDK paths have been relocated. Please read include/readme.txt for more details. [Ref] Removed unused files. [Ref] Removed VS2003 project. [New] OpenMPT ships with a MIDI Input / Output plugin now. It is meant as a substitute for VST2MID, which is only freeware, not free software. Modified Paths: -------------- trunk/OpenMPT/include/readme.txt trunk/OpenMPT/installer/install.iss trunk/OpenMPT/installer/packageTemplate/readme.txt trunk/OpenMPT/mptrack/ACMConvert.cpp trunk/OpenMPT/mptrack/Vstplug.h trunk/OpenMPT/mptrack/mptrack_08.vcproj trunk/OpenMPT/mptrack/mptrack_10.vcxproj trunk/OpenMPT/packageTemplate/readme.txt trunk/OpenMPT/soundlib/PlugInterface.h Added Paths: ----------- trunk/OpenMPT/include/ASIOSDK2/ trunk/OpenMPT/include/bladeenc/ trunk/OpenMPT/include/bladeenc/bladedll.h trunk/OpenMPT/include/portmidi/ trunk/OpenMPT/include/vstsdk2.4/ trunk/OpenMPT/installer/plugins.iss trunk/OpenMPT/plugins/ trunk/OpenMPT/plugins/MIDI Tools.sln trunk/OpenMPT/plugins/MidiInOut/ trunk/OpenMPT/plugins/MidiInOut/MidiInOut.cpp trunk/OpenMPT/plugins/MidiInOut/MidiInOut.h trunk/OpenMPT/plugins/MidiInOut/MidiInOut.vcxproj trunk/OpenMPT/plugins/MidiInOut/MidiInOut.vcxproj.filters trunk/OpenMPT/plugins/MidiInOut/MidiInOutEditor.cpp trunk/OpenMPT/plugins/MidiInOut/MidiInOutEditor.h trunk/OpenMPT/plugins/bin/ trunk/OpenMPT/plugins/common/ trunk/OpenMPT/plugins/common/ComboBox.h trunk/OpenMPT/plugins/common/Label.h trunk/OpenMPT/plugins/common/Window.h Removed Paths: ------------- trunk/OpenMPT/include/bladedll.h trunk/OpenMPT/installer/VST2MID.iss trunk/OpenMPT/mptrack/MAKEHELP.BAT trunk/OpenMPT/mptrack/MPTRACK.REG trunk/OpenMPT/mptrack/MPTRACK.sln trunk/OpenMPT/mptrack/mptrack.vcproj Property changes on: trunk/OpenMPT/include/ASIOSDK2 ___________________________________________________________________ Added: tsvn:logminsize + 10 Deleted: trunk/OpenMPT/include/bladedll.h =================================================================== --- trunk/OpenMPT/include/bladedll.h 2012-03-10 18:19:44 UTC (rev 1215) +++ trunk/OpenMPT/include/bladedll.h 2012-03-12 22:41:17 UTC (rev 1216) @@ -1,145 +0,0 @@ -/* - - bladedll.h - - +++++++++++++++++++++++++++ - + Blade's Encoder DLL + - +++++++++++++++++++++++++++ - - ------------------------------------------------------ - - Version 1.00 (7 November 1998) - Jukka Poikolainen - - ------------------------------------------------------ - - Initial version - - ------------------------------------------------------ - - Version x.xx (x xxxxxxxx xxxx) - xxxxx xxxxxxxxxxx - - ------------------------------------------------------ - -*/ - -#ifndef ___BLADEDLL_H_INCLUDED___ - -#define ___BLADEDLL_H_INCLUDED___ - -#pragma pack(push) -#pragma pack(1) - -/* encoding formats */ - -#define BE_CONFIG_MP3 0 - -/* type definitions */ - -typedef unsigned long HBE_STREAM; -typedef HBE_STREAM *PHBE_STREAM; -typedef unsigned long BE_ERR; - -/* error codes */ - -#define BE_ERR_SUCCESSFUL 0x00000000 -#define BE_ERR_INVALID_FORMAT 0x00000001 -#define BE_ERR_INVALID_FORMAT_PARAMETERS 0x00000002 -#define BE_ERR_NO_MORE_HANDLES 0x00000003 -#define BE_ERR_INVALID_HANDLE 0x00000004 - -/* other constants */ - -#define BE_MAX_HOMEPAGE 256 - -/* format specific variables */ - -#define BE_MP3_MODE_STEREO 0 -#define BE_MP3_MODE_DUALCHANNEL 2 -#define BE_MP3_MODE_MONO 3 - -typedef struct { - - DWORD dwConfig; // BE_CONFIG_XXXXX - // Currently only BE_CONFIG_MP3 is supported - union { - - struct { - - DWORD dwSampleRate; // 48000, 44100 and 32000 allowed - BYTE byMode; // BE_MP3_MODE_STEREO, BE_MP3_MODE_DUALCHANNEL, BE_MP3_MODE_MONO - WORD wBitrate; // 32, 40, 48, 56, 64, 80, 96, 112, 128, 160, 192, 224, 256 and 320 allowed - BOOL bPrivate; - BOOL bCRC; - BOOL bCopyright; - BOOL bOriginal; - - } mp3; // BE_CONFIG_MP3 - - struct { - - DWORD dwSampleRate; - BYTE byMode; - WORD wBitrate; - BYTE byEncodingMethod; - - } aac; - - } format; - -} BE_CONFIG, *PBE_CONFIG; - -typedef struct { - - // BladeEnc DLL Version number - - BYTE byDLLMajorVersion; - BYTE byDLLMinorVersion; - - // BladeEnc Engine Version Number - - BYTE byMajorVersion; - BYTE byMinorVersion; - - // DLL Release date - - BYTE byDay; - BYTE byMonth; - WORD wYear; - - // BladeEnc Homepage URL - - CHAR zHomepage[BE_MAX_HOMEPAGE + 1]; - -} BE_VERSION, *PBE_VERSION; - -#ifndef _BLADEDLL - -typedef BE_ERR (*BEINITSTREAM) (PBE_CONFIG, PDWORD, PDWORD, PHBE_STREAM); -typedef BE_ERR (*BEENCODECHUNK) (HBE_STREAM, DWORD, PSHORT, PBYTE, PDWORD); -typedef BE_ERR (*BEDEINITSTREAM) (HBE_STREAM, PBYTE, PDWORD); -typedef BE_ERR (*BECLOSESTREAM) (HBE_STREAM); -typedef VOID (*BEVERSION) (PBE_VERSION); - -#define TEXT_BEINITSTREAM "beInitStream" -#define TEXT_BEENCODECHUNK "beEncodeChunk" -#define TEXT_BEDEINITSTREAM "beDeinitStream" -#define TEXT_BECLOSESTREAM "beCloseStream" -#define TEXT_BEVERSION "beVersion" - -/* - BE_ERR beInitStream(PBE_CONFIG pbeConfig, PDWORD dwSamples, PDWORD dwBufferSize, PHBE_STREAM phbeStream); - BE_ERR beEncodeChunk(HBE_STREAM hbeStream, DWORD nSamples, PSHORT pSamples, PBYTE pOutput, PDWORD pdwOutput); - BE_ERR beDeinitStream(HBE_STREAM hbeStream, PBYTE pOutput, PDWORD pdwOutput); - BE_ERR beCloseStream(HBE_STREAM hbeStream); - VOID beVersion(PBE_VERSION pbeVersion); -*/ - -#else - -__declspec(dllexport) BE_ERR beInitStream(PBE_CONFIG pbeConfig, PDWORD dwSamples, PDWORD dwBufferSize, PHBE_STREAM phbeStream); -__declspec(dllexport) BE_ERR beEncodeChunk(HBE_STREAM hbeStream, DWORD nSamples, PSHORT pSamples, PBYTE pOutput, PDWORD pdwOutput); -__declspec(dllexport) BE_ERR beDeinitStream(HBE_STREAM hbeStream, PBYTE pOutput, PDWORD pdwOutput); -__declspec(dllexport) BE_ERR beCloseStream(HBE_STREAM hbeStream); -__declspec(dllexport) VOID beVersion(PBE_VERSION pbeVersion); - -#endif - -#pragma pack(pop) - -#endif Property changes on: trunk/OpenMPT/include/bladeenc ___________________________________________________________________ Added: tsvn:logminsize + 10 Copied: trunk/OpenMPT/include/bladeenc/bladedll.h (from rev 1204, trunk/OpenMPT/include/bladedll.h) =================================================================== --- trunk/OpenMPT/include/bladeenc/bladedll.h (rev 0) +++ trunk/OpenMPT/include/bladeenc/bladedll.h 2012-03-12 22:41:17 UTC (rev 1216) @@ -0,0 +1,145 @@ +/* + + bladedll.h + + +++++++++++++++++++++++++++ + + Blade's Encoder DLL + + +++++++++++++++++++++++++++ + + ------------------------------------------------------ + - Version 1.00 (7 November 1998) - Jukka Poikolainen - + ------------------------------------------------------ + + Initial version + + ------------------------------------------------------ + - Version x.xx (x xxxxxxxx xxxx) - xxxxx xxxxxxxxxxx - + ------------------------------------------------------ + +*/ + +#ifndef ___BLADEDLL_H_INCLUDED___ + +#define ___BLADEDLL_H_INCLUDED___ + +#pragma pack(push) +#pragma pack(1) + +/* encoding formats */ + +#define BE_CONFIG_MP3 0 + +/* type definitions */ + +typedef unsigned long HBE_STREAM; +typedef HBE_STREAM *PHBE_STREAM; +typedef unsigned long BE_ERR; + +/* error codes */ + +#define BE_ERR_SUCCESSFUL 0x00000000 +#define BE_ERR_INVALID_FORMAT 0x00000001 +#define BE_ERR_INVALID_FORMAT_PARAMETERS 0x00000002 +#define BE_ERR_NO_MORE_HANDLES 0x00000003 +#define BE_ERR_INVALID_HANDLE 0x00000004 + +/* other constants */ + +#define BE_MAX_HOMEPAGE 256 + +/* format specific variables */ + +#define BE_MP3_MODE_STEREO 0 +#define BE_MP3_MODE_DUALCHANNEL 2 +#define BE_MP3_MODE_MONO 3 + +typedef struct { + + DWORD dwConfig; // BE_CONFIG_XXXXX + // Currently only BE_CONFIG_MP3 is supported + union { + + struct { + + DWORD dwSampleRate; // 48000, 44100 and 32000 allowed + BYTE byMode; // BE_MP3_MODE_STEREO, BE_MP3_MODE_DUALCHANNEL, BE_MP3_MODE_MONO + WORD wBitrate; // 32, 40, 48, 56, 64, 80, 96, 112, 128, 160, 192, 224, 256 and 320 allowed + BOOL bPrivate; + BOOL bCRC; + BOOL bCopyright; + BOOL bOriginal; + + } mp3; // BE_CONFIG_MP3 + + struct { + + DWORD dwSampleRate; + BYTE byMode; + WORD wBitrate; + BYTE byEncodingMethod; + + } aac; + + } format; + +} BE_CONFIG, *PBE_CONFIG; + +typedef struct { + + // BladeEnc DLL Version number + + BYTE byDLLMajorVersion; + BYTE byDLLMinorVersion; + + // BladeEnc Engine Version Number + + BYTE byMajorVersion; + BYTE byMinorVersion; + + // DLL Release date + + BYTE byDay; + BYTE byMonth; + WORD wYear; + + // BladeEnc Homepage URL + + CHAR zHomepage[BE_MAX_HOMEPAGE + 1]; + +} BE_VERSION, *PBE_VERSION; + +#ifndef _BLADEDLL + +typedef BE_ERR (*BEINITSTREAM) (PBE_CONFIG, PDWORD, PDWORD, PHBE_STREAM); +typedef BE_ERR (*BEENCODECHUNK) (HBE_STREAM, DWORD, PSHORT, PBYTE, PDWORD); +typedef BE_ERR (*BEDEINITSTREAM) (HBE_STREAM, PBYTE, PDWORD); +typedef BE_ERR (*BECLOSESTREAM) (HBE_STREAM); +typedef VOID (*BEVERSION) (PBE_VERSION); + +#define TEXT_BEINITSTREAM "beInitStream" +#define TEXT_BEENCODECHUNK "beEncodeChunk" +#define TEXT_BEDEINITSTREAM "beDeinitStream" +#define TEXT_BECLOSESTREAM "beCloseStream" +#define TEXT_BEVERSION "beVersion" + +/* + BE_ERR beInitStream(PBE_CONFIG pbeConfig, PDWORD dwSamples, PDWORD dwBufferSize, PHBE_STREAM phbeStream); + BE_ERR beEncodeChunk(HBE_STREAM hbeStream, DWORD nSamples, PSHORT pSamples, PBYTE pOutput, PDWORD pdwOutput); + BE_ERR beDeinitStream(HBE_STREAM hbeStream, PBYTE pOutput, PDWORD pdwOutput); + BE_ERR beCloseStream(HBE_STREAM hbeStream); + VOID beVersion(PBE_VERSION pbeVersion); +*/ + +#else + +__declspec(dllexport) BE_ERR beInitStream(PBE_CONFIG pbeConfig, PDWORD dwSamples, PDWORD dwBufferSize, PHBE_STREAM phbeStream); +__declspec(dllexport) BE_ERR beEncodeChunk(HBE_STREAM hbeStream, DWORD nSamples, PSHORT pSamples, PBYTE pOutput, PDWORD pdwOutput); +__declspec(dllexport) BE_ERR beDeinitStream(HBE_STREAM hbeStream, PBYTE pOutput, PDWORD pdwOutput); +__declspec(dllexport) BE_ERR beCloseStream(HBE_STREAM hbeStream); +__declspec(dllexport) VOID beVersion(PBE_VERSION pbeVersion); + +#endif + +#pragma pack(pop) + +#endif Property changes on: trunk/OpenMPT/include/portmidi ___________________________________________________________________ Added: tsvn:logminsize + 10 Modified: trunk/OpenMPT/include/readme.txt =================================================================== --- trunk/OpenMPT/include/readme.txt 2012-03-10 18:19:44 UTC (rev 1215) +++ trunk/OpenMPT/include/readme.txt 2012-03-12 22:41:17 UTC (rev 1216) @@ -2,21 +2,31 @@ VST 2.4 SDK =========== -If you don't use #define NO_VST, you will need to place the following files -from Steinberg's VST 2.4 SDK in this folder: -aeffect.h -aeffectx.h -vstfxstore.h -You can find them in the "vstsdk2.4/pluginterfaces/vst2.x" folder. +If you don't use #define NO_VST, you will need to put the VST 2.4 SDK in the +"vstsdk2.4" folder. The top level directory of the SDK is already named +"vstsdk2.4", so simply move that directory in the include folder. +Please visit http://www.steinberg.net/en/company/developer.html +to download the SDK. + ASIO SDK ======== -If you don't use #define NO_ASIO, you will need to place the following files -from Steinberg's ASIO SDK in this folder: -asio.h -asiosys.h -iasiodrv.h -You can find them in the "ASIOSDK2/common" directory. +If you don't use #define NO_ASIO, you will need to put the ASIO SDK in the +"ASIOSDK2" folder. The top level directory of the SDK is already named +"ASIOSDK2", so simply move that directory in the include folder. -Please visit http://www.steinberg.net/en/company/developer.html to download -these SDKs. \ No newline at end of file +Please visit http://www.steinberg.net/en/company/developer.html +to download the SDK. + +PortMidi +======== +PortMidi is only required if you wish to compile the MIDI plugins that ship with +OpenMPT. Put the PortMidi source in the the "portmidi" folder. The top level +directory of the PortMidi code archive is already named "portmidi", so simply +move that directory in the include folder. +NOTE: The static PortMidi library has to be built before the MIDI plugins can +be built; PortMidi comes with a VisualStudio solution, though, so building the +library should be easy. + +Please visit https://sourceforge.net/projects/portmedia/files/portmidi/ +to download the SDK. \ No newline at end of file Property changes on: trunk/OpenMPT/include/vstsdk2.4 ___________________________________________________________________ Added: tsvn:logminsize + 10 Deleted: trunk/OpenMPT/installer/VST2MID.iss =================================================================== --- trunk/OpenMPT/installer/VST2MID.iss 2012-03-10 18:19:44 UTC (rev 1215) +++ trunk/OpenMPT/installer/VST2MID.iss 2012-03-12 22:41:17 UTC (rev 1216) @@ -1,40 +0,0 @@ -[Code] - -// Helper code for installing the VST2MID plugin. - -// Register VST2MID in OpenMPT's plugin settings -procedure RegisterVST2MID(); -var - totalNum : Integer; - i : Integer; - INIFile : String; - plugPath: String; -begin - - INIFile := GetINIPath(); - totalNum := GetIniInt('VST Plugins', 'NumPlugins', 0, 0, 0, INIFile); - - // Check if the plugin has already been registered with OpenMPT. - for i := 0 to totalNum - 1 do - begin - plugPath := GetIniString('VST Plugins', Format('Plugin%d', [i]), '', INIFile); - if CompareFilename(plugPath, 'vst2mid.dll') then - begin - // The plugin is already registered, so don't add it again. - Exit; - end; - end; - - // In portable mode, write a relative path into the config file. - if(IsTaskSelected('portable')) then - begin - plugPath := '.'; - end else - begin - plugPath := ExpandConstant('{app}'); - end; - SetIniString('VST Plugins', Format('Plugin%d', [totalNum]), plugPath + '\Plugins\VST2MID.dll', INIFile); - - SetIniInt('VST Plugins', 'NumPlugins', totalNum + 1, INIFile); - -end; Modified: trunk/OpenMPT/installer/install.iss =================================================================== --- trunk/OpenMPT/installer/install.iss 2012-03-10 18:19:44 UTC (rev 1215) +++ trunk/OpenMPT/installer/install.iss 2012-03-12 22:41:17 UTC (rev 1216) @@ -66,8 +66,8 @@ Source: ..\mptrack\bin\unmo3.dll; DestDir: {app}; Flags: ignoreversion #endif -; VST2MID Plugin -Source: ..\packageTemplate\Plugins\VST2MID.dll; DestDir: {app}\Plugins\; Flags: ignoreversion +; Plugins +Source: ..\packageTemplate\Plugins\*.*; DestDir: {app}\Plugins\; Flags: ignoreversion recursesubdirs createallsubdirs Source: ..\packageTemplate\ExampleSongs\*.*; DestDir: {app}\ExampleSongs\; Flags: ignoreversion sortfilesbyextension @@ -139,7 +139,7 @@ #include "utilities.iss" #include "vst_scan.iss" -#include "VST2MID.iss" +#include "plugins.iss" [Code] @@ -200,7 +200,7 @@ VerifyUNMO3Checksum(); #endif - RegisterVST2MID(); + RegisterPlugin('MIDI\MIDI Input Output.dll'); // Copy old config files from app's directory, if possible and necessary. CopyConfigsToAppDataDir(); Modified: trunk/OpenMPT/installer/packageTemplate/readme.txt =================================================================== --- trunk/OpenMPT/installer/packageTemplate/readme.txt 2012-03-10 18:19:44 UTC (rev 1215) +++ trunk/OpenMPT/installer/packageTemplate/readme.txt 2012-03-12 22:41:17 UTC (rev 1216) @@ -1,5 +1,5 @@ ****************** -* OpenMPT 1.19 * +* OpenMPT 1.20 * ****************** @@ -7,7 +7,7 @@ --------------------------- Unless you install OpenMPT in portable mode, all settings are now stored in -%appdata%\OpenMPT. The installer will automatically try to move all settings +%APPDATA%\OpenMPT. The installer will automatically try to move all settings to the new folder - Migration is done automatically. @@ -39,6 +39,8 @@ Impulse Tracker) and country-specific layouts. SoundTouch (folder): SoundTouch readme and license ReleaseNotesImages (folder): Files used in the release notes document. +Plugins (folder): Contains standard audio and MIDI processing plugins that ship + with OpenMPT. ExampleSongs (folder): A set of module files which should give an impression of what can be done in OpenMPT with only a few kilobytes. History.txt: Version history. @@ -54,7 +56,7 @@ OpenMPT is partially under the following license: -> Copyright (c) 2004-2011, OpenMPT contributors +> Copyright (c) 2004-2012, OpenMPT contributors > Copyright (c) 1997-2003, Olivier Lapicque > All rights reserved. > @@ -86,6 +88,10 @@ For more information about SoundTouch, see folder SoundTouch. +OpenMPT's MIDI plugins make use of the PortMidi library, which is released under +the MIT license. +Visit https://sourceforge.net/projects/portmedia/ for more information. + unmo3.dll --------- Copyright (c) 2001-2011 Ian Luck. All rights reserved Copied: trunk/OpenMPT/installer/plugins.iss (from rev 1204, trunk/OpenMPT/installer/VST2MID.iss) =================================================================== --- trunk/OpenMPT/installer/plugins.iss (rev 0) +++ trunk/OpenMPT/installer/plugins.iss 2012-03-12 22:41:17 UTC (rev 1216) @@ -0,0 +1,40 @@ +[Code] + +// Helper code for installing the plugins that are shipped with OpenMPT. + +// Register plugins in OpenMPT's plugin settings +procedure RegisterPlugin(plugName : String); +var + totalNum : Integer; + i : Integer; + INIFile : String; + plugPath: String; +begin + + INIFile := GetINIPath(); + totalNum := GetIniInt('VST Plugins', 'NumPlugins', 0, 0, 0, INIFile); + + // Check if the plugin has already been registered with OpenMPT. + for i := 0 to totalNum - 1 do + begin + plugPath := GetIniString('VST Plugins', Format('Plugin%d', [i]), '', INIFile); + if(CompareFilename(plugPath, plugName)) then + begin + // The plugin is already registered, so don't add it again. + Exit; + end; + end; + + // In portable mode, write a relative path into the config file. + if(IsTaskSelected('portable')) then + begin + plugPath := '.'; + end else + begin + plugPath := ExpandConstant('{app}'); + end; + SetIniString('VST Plugins', Format('Plugin%d', [totalNum]), plugPath + '\Plugins\' + plugName, INIFile); + + SetIniInt('VST Plugins', 'NumPlugins', totalNum + 1, INIFile); + +end; Modified: trunk/OpenMPT/mptrack/ACMConvert.cpp =================================================================== --- trunk/OpenMPT/mptrack/ACMConvert.cpp 2012-03-10 18:19:44 UTC (rev 1215) +++ trunk/OpenMPT/mptrack/ACMConvert.cpp 2012-03-12 22:41:17 UTC (rev 1216) @@ -10,7 +10,7 @@ #include "stdafx.h" -#include "bladedll.h" +#include <bladeenc/bladedll.h> #include "Mptrack.h" #include "ACMConvert.h" Deleted: trunk/OpenMPT/mptrack/MAKEHELP.BAT =================================================================== --- trunk/OpenMPT/mptrack/MAKEHELP.BAT 2012-03-10 18:19:44 UTC (rev 1215) +++ trunk/OpenMPT/mptrack/MAKEHELP.BAT 2012-03-12 22:41:17 UTC (rev 1216) @@ -1,50 +0,0 @@ -@echo off -REM -- First make map file from Microsoft Visual C++ generated resource.h -echo // MAKEHELP.BAT generated Help Map file. Used by MPTRACK.HPJ. >"hlp\mptrack.hm" -echo. >>"hlp\mptrack.hm" -echo // Commands (ID_* and IDM_*) >>"hlp\mptrack.hm" -makehm ID_,HID_,0x10000 IDM_,HIDM_,0x10000 resource.h >>"hlp\mptrack.hm" -makehm IDC_,HIDC_,0x10000 resource.h >>"hlp\mptrack.hm" -echo. >>"hlp\mptrack.hm" -echo // Prompts (IDP_*) >>"hlp\mptrack.hm" -makehm IDP_,HIDP_,0x30000 resource.h >>"hlp\mptrack.hm" -echo. >>"hlp\mptrack.hm" -echo // Resources (IDR_*) >>"hlp\mptrack.hm" -makehm IDR_,HIDR_,0x20000 resource.h >>"hlp\mptrack.hm" -echo. >>"hlp\mptrack.hm" -echo // Dialogs (IDD_*) >>"hlp\mptrack.hm" -makehm IDD_,HIDD_,0x20000 resource.h >>"hlp\mptrack.hm" -echo. >>"hlp\mptrack.hm" -echo // Frame Controls (IDW_*) >>"hlp\mptrack.hm" -makehm IDW_,HIDW_,0x50000 resource.h >>"hlp\mptrack.hm" -REM -- Make help for Project MPTRACK - - -echo Converting HTML to RTF -html2rtf -pc:\temp\tmp.$$$ -dhlp\sizes.def -rhlp\index.rtf html\index.htm -html2rtf -pc:\temp\tmp.$$$ -dhlp\sizes.def -rhlp\file.rtf html\file.htm -html2rtf -pc:\temp\tmp.$$$ -dhlp\sizes.def -rhlp\player.rtf html\player.htm -html2rtf -pc:\temp\tmp.$$$ -dhlp\sizes.def -rhlp\edit.rtf html\edit.htm -html2rtf -pc:\temp\tmp.$$$ -dhlp\sizes.def -rhlp\view.rtf html\view.htm -html2rtf -pc:\temp\tmp.$$$ -dhlp\sizes.def -rhlp\window.rtf html\window.htm -html2rtf -pc:\temp\tmp.$$$ -dhlp\sizes.def -rhlp\help.rtf html\help.htm -html2rtf -pc:\temp\tmp.$$$ -dhlp\sizes.def -rhlp\faq.rtf html\faq.htm -html2rtf -pc:\temp\tmp.$$$ -dhlp\sizes.def -rhlp\formats.rtf html\formats.htm -html2rtf -pc:\temp\tmp.$$$ -dhlp\sizes.def -rhlp\keyboard.rtf html\keyboard.htm -html2rtf -pc:\temp\tmp.$$$ -dhlp\sizes.def -rhlp\mainbar.rtf html\mainbar.htm -html2rtf -pc:\temp\tmp.$$$ -dhlp\sizes.def -rhlp\patterns.rtf html\patterns.htm -html2rtf -pc:\temp\tmp.$$$ -dhlp\sizes.def -rhlp\samples.rtf html\samples.htm -html2rtf -pc:\temp\tmp.$$$ -dhlp\sizes.def -rhlp\instrums.rtf html\instrums.htm -html2rtf -pc:\temp\tmp.$$$ -dhlp\sizes.def -rhlp\intro.rtf html\intro.htm -html2rtf -pc:\temp\tmp.$$$ -dhlp\sizes.def -rhlp\setup.rtf html\setup.htm -html2rtf -pc:\temp\tmp.$$$ -dhlp\sizes.def -rhlp\effects.rtf html\effects.htm -html2rtf -pc:\temp\tmp.$$$ -dhlp\sizes.def -rhlp\starting.rtf html\starting.htm -if exist c:\temp\tmp.$$$ del c:\temp\tmp.$$$ - -echo Building Win32 Help files -start /wait hcrtf -x "hlp\mptrack.hpj" -echo. -if exist bin\nul copy "hlp\mptrack.hlp" bin\mptrack.hlp -if exist bin\nul copy "hlp\mptrack.cnt" bin\mptrack.cnt -echo. - Deleted: trunk/OpenMPT/mptrack/MPTRACK.REG =================================================================== --- trunk/OpenMPT/mptrack/MPTRACK.REG 2012-03-10 18:19:44 UTC (rev 1215) +++ trunk/OpenMPT/mptrack/MPTRACK.REG 2012-03-12 22:41:17 UTC (rev 1216) @@ -1,14 +0,0 @@ -REGEDIT -; This .REG file may be used by your SETUP program. -; If a SETUP program is not available, the entries below will be -; registered in your InitInstance automatically with a call to -; CWinApp::RegisterShellFileTypes and COleObjectFactory::UpdateRegistryAll. - -HKEY_CLASSES_ROOT\.mod = ModplugTracker.Document -HKEY_CLASSES_ROOT\ModplugTracker.Document\shell\open\command = MPTRACK.EXE %1 -HKEY_CLASSES_ROOT\ModplugTracker.Document\shell\open\ddeexec = [open("%1")] -HKEY_CLASSES_ROOT\ModplugTracker.Document\shell\open\ddeexec\application = MPTRACK - ; note: the application is optional - ; (it defaults to the app name in "command") - -HKEY_CLASSES_ROOT\ModplugTracker.Document = Music Module Deleted: trunk/OpenMPT/mptrack/MPTRACK.sln =================================================================== --- trunk/OpenMPT/mptrack/MPTRACK.sln 2012-03-10 18:19:44 UTC (rev 1215) +++ trunk/OpenMPT/mptrack/MPTRACK.sln 2012-03-12 22:41:17 UTC (rev 1216) @@ -1,120 +0,0 @@ -Microsoft Visual Studio Solution File, Format Version 8.00 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "mptrack", "mptrack.vcproj", "{DB18719C-9177-4632-A9E0-7E72E2E6B05E}" - ProjectSection(ProjectDependencies) = postProject - {1FF4AB04-B22F-4CB8-AA2A-0C5095B5FEE4} = {1FF4AB04-B22F-4CB8-AA2A-0C5095B5FEE4} - {3F7D3110-B3DD-4DE1-B608-C3F491009625} = {3F7D3110-B3DD-4DE1-B608-C3F491009625} - {71531076-78C7-488D-8FD6-9D841F20AADE} = {71531076-78C7-488D-8FD6-9D841F20AADE} - {CF3C2CA5-5D45-4635-BBA4-C1F435E10896} = {CF3C2CA5-5D45-4635-BBA4-C1F435E10896} - {3C7281B0-D0E2-48ED-AE4D-A181FC77D8F7} = {3C7281B0-D0E2-48ED-AE4D-A181FC77D8F7} - {20BF96C8-0202-4251-80C9-6C62BE845DAE} = {20BF96C8-0202-4251-80C9-6C62BE845DAE} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "unlha", "..\unlha\unlha.vcproj", "{71531076-78C7-488D-8FD6-9D841F20AADE}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "unrar", "..\UNRAR\UNRAR.vcproj", "{3C7281B0-D0E2-48ED-AE4D-A181FC77D8F7}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "unzip", "..\UNZIP\unzip.vcproj", "{1FF4AB04-B22F-4CB8-AA2A-0C5095B5FEE4}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "xsoundlib", "..\xsoundlib\xsoundlib.vcproj", "{DCC2BB2F-6778-4FD3-9C00-D6CD8DC917B8}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SoundTouch", "..\soundtouch\soundtouch.vcproj", "{CF3C2CA5-5D45-4635-BBA4-C1F435E10896}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "zlibstat", "..\zlib\contrib\vstudio\vc7\zlibstat.vcproj", "{3F7D3110-B3DD-4DE1-B608-C3F491009625}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ungzip", "..\ungzip\ungzip.vcproj", "{20BF96C8-0202-4251-80C9-6C62BE845DAE}" - ProjectSection(ProjectDependencies) = postProject - {3F7D3110-B3DD-4DE1-B608-C3F491009625} = {3F7D3110-B3DD-4DE1-B608-C3F491009625} - EndProjectSection -EndProject -Global - GlobalSection(SolutionConfiguration) = preSolution - Debug = Debug - Release = Release - ReleaseAxp = ReleaseAxp - ReleaseWithoutAsm = ReleaseWithoutAsm - EndGlobalSection - GlobalSection(ProjectDependencies) = postSolution - EndGlobalSection - GlobalSection(ProjectConfiguration) = postSolution - {DB18719C-9177-4632-A9E0-7E72E2E6B05E}.Debug.ActiveCfg = Debug|Win32 - {DB18719C-9177-4632-A9E0-7E72E2E6B05E}.Debug.Build.0 = Debug|Win32 - {DB18719C-9177-4632-A9E0-7E72E2E6B05E}.Release.ActiveCfg = Release|Win32 - {DB18719C-9177-4632-A9E0-7E72E2E6B05E}.Release.Build.0 = Release|Win32 - {DB18719C-9177-4632-A9E0-7E72E2E6B05E}.ReleaseAxp.ActiveCfg = Release|Win32 - {DB18719C-9177-4632-A9E0-7E72E2E6B05E}.ReleaseAxp.Build.0 = Release|Win32 - {DB18719C-9177-4632-A9E0-7E72E2E6B05E}.ReleaseWithoutAsm.ActiveCfg = Release|Win32 - {DB18719C-9177-4632-A9E0-7E72E2E6B05E}.ReleaseWithoutAsm.Build.0 = Release|Win32 - {71531076-78C7-488D-8FD6-9D841F20AADE}.Debug.ActiveCfg = Debug|Win32 - {71531076-78C7-488D-8FD6-9D841F20AADE}.Debug.Build.0 = Debug|Win32 - {71531076-78C7-488D-8FD6-9D841F20AADE}.Release.ActiveCfg = Release|Win32 - {71531076-78C7-488D-8FD6-9D841F20AADE}.Release.Build.0 = Release|Win32 - {71531076-78C7-488D-8FD6-9D841F20AADE}.ReleaseAxp.ActiveCfg = Release|Win32 - {71531076-78C7-488D-8FD6-9D841F20AADE}.ReleaseAxp.Build.0 = Release|Win32 - {71531076-78C7-488D-8FD6-9D841F20AADE}.ReleaseWithoutAsm.ActiveCfg = Release|Win32 - {71531076-78C7-488D-8FD6-9D841F20AADE}.ReleaseWithoutAsm.Build.0 = Release|Win32 - {3C7281B0-D0E2-48ED-AE4D-A181FC77D8F7}.Debug.ActiveCfg = Debug|Win32 - {3C7281B0-D0E2-48ED-AE4D-A181FC77D8F7}.Debug.Build.0 = Debug|Win32 - {3C7281B0-D0E2-48ED-AE4D-A181FC77D8F7}.Release.ActiveCfg = Release|Win32 - {3C7281B0-D0E2-48ED-AE4D-A181FC77D8F7}.Release.Build.0 = Release|Win32 - {3C7281B0-D0E2-48ED-AE4D-A181FC77D8F7}.ReleaseAxp.ActiveCfg = Release|Win32 - {3C7281B0-D0E2-48ED-AE4D-A181FC77D8F7}.ReleaseAxp.Build.0 = Release|Win32 - {3C7281B0-D0E2-48ED-AE4D-A181FC77D8F7}.ReleaseWithoutAsm.ActiveCfg = Release|Win32 - {3C7281B0-D0E2-48ED-AE4D-A181FC77D8F7}.ReleaseWithoutAsm.Build.0 = Release|Win32 - {1FF4AB04-B22F-4CB8-AA2A-0C5095B5FEE4}.Debug.ActiveCfg = Debug|Win32 - {1FF4AB04-B22F-4CB8-AA2A-0C5095B5FEE4}.Debug.Build.0 = Debug|Win32 - {1FF4AB04-B22F-4CB8-AA2A-0C5095B5FEE4}.Release.ActiveCfg = Release|Win32 - {1FF4AB04-B22F-4CB8-AA2A-0C5095B5FEE4}.Release.Build.0 = Release|Win32 - {1FF4AB04-B22F-4CB8-AA2A-0C5095B5FEE4}.ReleaseAxp.ActiveCfg = Release|Win32 - {1FF4AB04-B22F-4CB8-AA2A-0C5095B5FEE4}.ReleaseAxp.Build.0 = Release|Win32 - {1FF4AB04-B22F-4CB8-AA2A-0C5095B5FEE4}.ReleaseWithoutAsm.ActiveCfg = Release|Win32 - {1FF4AB04-B22F-4CB8-AA2A-0C5095B5FEE4}.ReleaseWithoutAsm.Build.0 = Release|Win32 - {DCC2BB2F-6778-4FD3-9C00-D6CD8DC917B8}.Debug.ActiveCfg = Debug|Win32 - {DCC2BB2F-6778-4FD3-9C00-D6CD8DC917B8}.Debug.Build.0 = Debug|Win32 - {DCC2BB2F-6778-4FD3-9C00-D6CD8DC917B8}.Release.ActiveCfg = Release|Win32 - {DCC2BB2F-6778-4FD3-9C00-D6CD8DC917B8}.Release.Build.0 = Release|Win32 - {DCC2BB2F-6778-4FD3-9C00-D6CD8DC917B8}.ReleaseAxp.ActiveCfg = Release|Win32 - {DCC2BB2F-6778-4FD3-9C00-D6CD8DC917B8}.ReleaseAxp.Build.0 = Release|Win32 - {DCC2BB2F-6778-4FD3-9C00-D6CD8DC917B8}.ReleaseWithoutAsm.ActiveCfg = Release|Win32 - {DCC2BB2F-6778-4FD3-9C00-D6CD8DC917B8}.ReleaseWithoutAsm.Build.0 = Release|Win32 - {CF3C2CA5-5D45-4635-BBA4-C1F435E10896}.Debug.ActiveCfg = Debug|Win32 - {CF3C2CA5-5D45-4635-BBA4-C1F435E10896}.Debug.Build.0 = Debug|Win32 - {CF3C2CA5-5D45-4635-BBA4-C1F435E10896}.Release.ActiveCfg = Release|Win32 - {CF3C2CA5-5D45-4635-BBA4-C1F435E10896}.Release.Build.0 = Release|Win32 - {CF3C2CA5-5D45-4635-BBA4-C1F435E10896}.ReleaseAxp.ActiveCfg = Release|Win32 - {CF3C2CA5-5D45-4635-BBA4-C1F435E10896}.ReleaseAxp.Build.0 = Release|Win32 - {CF3C2CA5-5D45-4635-BBA4-C1F435E10896}.ReleaseWithoutAsm.ActiveCfg = Release|Win32 - {CF3C2CA5-5D45-4635-BBA4-C1F435E10896}.ReleaseWithoutAsm.Build.0 = Release|Win32 - {3F7D3110-B3DD-4DE1-B608-C3F491009625}.Debug.ActiveCfg = Debug|Win32 - {3F7D3110-B3DD-4DE1-B608-C3F491009625}.Debug.Build.0 = Debug|Win32 - {3F7D3110-B3DD-4DE1-B608-C3F491009625}.Release.ActiveCfg = ReleaseWithoutAsm|Win32 - {3F7D3110-B3DD-4DE1-B608-C3F491009625}.Release.Build.0 = ReleaseWithoutAsm|Win32 - {3F7D3110-B3DD-4DE1-B608-C3F491009625}.ReleaseAxp.ActiveCfg = ReleaseAxp|Win32 - {3F7D3110-B3DD-4DE1-B608-C3F491009625}.ReleaseAxp.Build.0 = ReleaseAxp|Win32 - {3F7D3110-B3DD-4DE1-B608-C3F491009625}.ReleaseWithoutAsm.ActiveCfg = ReleaseWithoutAsm|Win32 - {3F7D3110-B3DD-4DE1-B608-C3F491009625}.ReleaseWithoutAsm.Build.0 = ReleaseWithoutAsm|Win32 - {20BF96C8-0202-4251-80C9-6C62BE845DAE}.Debug.ActiveCfg = Debug|Win32 - {20BF96C8-0202-4251-80C9-6C62BE845DAE}.Debug.Build.0 = Debug|Win32 - {20BF96C8-0202-4251-80C9-6C62BE845DAE}.Release.ActiveCfg = Release|Win32 - {20BF96C8-0202-4251-80C9-6C62BE845DAE}.Release.Build.0 = Release|Win32 - {20BF96C8-0202-4251-80C9-6C62BE845DAE}.ReleaseAxp.ActiveCfg = Release|Win32 - {20BF96C8-0202-4251-80C9-6C62BE845DAE}.ReleaseAxp.Build.0 = Release|Win32 - {20BF96C8-0202-4251-80C9-6C62BE845DAE}.ReleaseWithoutAsm.ActiveCfg = Release|Win32 - {20BF96C8-0202-4251-80C9-6C62BE845DAE}.ReleaseWithoutAsm.Build.0 = Release|Win32 - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - EndGlobalSection - GlobalSection(ExtensibilityAddIns) = postSolution - EndGlobalSection -EndGlobal Modified: trunk/OpenMPT/mptrack/Vstplug.h =================================================================== --- trunk/OpenMPT/mptrack/Vstplug.h 2012-03-10 18:19:44 UTC (rev 1215) +++ trunk/OpenMPT/mptrack/Vstplug.h 2012-03-12 22:41:17 UTC (rev 1216) @@ -12,8 +12,8 @@ #ifndef NO_VST #define VST_FORCE_DEPRECATED 0 - #include <aeffectx.h> // VST - #include <vstfxstore.h> + #include <pluginterfaces/vst2.x/aeffectx.h> // VST + #include <pluginterfaces/vst2.x/vstfxstore.h> #endif #include "../soundlib/Snd_defs.h" Deleted: trunk/OpenMPT/mptrack/mptrack.vcproj =================================================================== --- trunk/OpenMPT/mptrack/mptrack.vcproj 2012-03-10 18:19:44 UTC (rev 1215) +++ trunk/OpenMPT/mptrack/mptrack.vcproj 2012-03-12 22:41:17 UTC (rev 1216) @@ -1,1098 +0,0 @@ -<?xml version="1.0" encoding="Windows-1252"?> -<VisualStudioProject - ProjectType="Visual C++" - Version="7.10" - Name="mptrack" - RootNamespace="mptrack" - SccProjectName="" - SccLocalPath="" - Keyword="MFCProj"> - <Platforms> - <Platform - Name="Win32"/> - </Platforms> - <Configurations> - <Configuration - Name="Debug|Win32" - OutputDirectory=".\Debug" - IntermediateDirectory=".\Debug" - ConfigurationType="1" - UseOfMFC="2" - ATLMinimizesCRunTimeLibraryUsage="FALSE"> - <Tool - Name="VCCLCompilerTool" - AdditionalOptions="/EHsc" - Optimization="0" - OptimizeForProcessor="1" - AdditionalIncludeDirectories="..\unlha,..\unzip,..\unrar,..\soundlib,..\include,..\xsoundlib,..\" - PreprocessorDefinitions="_DEBUG,WIN32,_WINDOWS,ENABLE_EQ,MODPLUG_TRACKER,NO_PACKING,HAVE_DOT_NET,ENABLE_AMD,ENABLE_SSE,ENABLE_AMDNOW,ENABLE_MMX" - StringPooling="TRUE" - BasicRuntimeChecks="3" - RuntimeLibrary="3" - BufferSecurityCheck="TRUE" - EnableFunctionLevelLinking="TRUE" - ForceConformanceInForLoopScope="TRUE" - UsePrecompiledHeader="3" - PrecompiledHeaderThrough="stdafx.h" - PrecompiledHeaderFile=".\Debug/mptrack.pch" - AssemblerListingLocation=".\Debug/" - ObjectFile=".\Debug/" - ProgramDataBaseFileName=".\Debug/" - BrowseInformation="1" - WarningLevel="4" - SuppressStartupBanner="FALSE" - DebugInformationFormat="4" - CompileAs="0"/> - <Tool - Name="VCCustomBuildTool"/> - <Tool - Name="VCLinkerTool" - AdditionalOptions="/MACHINE:I386" - AdditionalDependencies="winmm.lib strmiids.lib dmoguids.lib version.lib Rpcrt4.lib delayimp.lib wininet.lib" - OutputFile=".\Debug/mptrack.exe" - Version="5.0" - LinkIncremental="2" - SuppressStartupBanner="TRUE" - AdditionalLibraryDirectories="" - DelayLoadDLLs="OpenMPT_SoundTouch_i16.dll" - GenerateDebugInformation="TRUE" - AssemblyDebug="1" - ProgramDatabaseFile=".\Debug/mptrack.pdb" - GenerateMapFile="TRUE" - MapFileName=".\Debug/mptrack.map" - SubSystem="2"/> - <Tool - Name="VCMIDLTool" - PreprocessorDefinitions="_DEBUG" - MkTypLibCompatible="TRUE" - SuppressStartupBanner="TRUE" - TargetEnvironment="1" - TypeLibraryName=".\Debug/mptrack.tlb"/> - <Tool - Name="VCPostBuildEventTool"/> - <Tool - Name="VCPreBuildEventTool"/> - <Tool - Name="VCPreLinkEventTool"/> - <Tool - Name="VCResourceCompilerTool" - PreprocessorDefinitions="_DEBUG" - Culture="1033"/> - <Tool - Name="VCWebServiceProxyGeneratorTool"/> - <Tool - Name="VCXMLDataGeneratorTool"/> - <Tool - Name="VCWebDeploymentTool"/> - <Tool - Name="VCManagedWrapperGeneratorTool"/> - <Tool - Name="VCAuxiliaryManagedWrapperGeneratorTool"/> - </Configuration> - <Configuration - Name="Release|Win32" - OutputDirectory="$(ConfigurationName)" - IntermediateDirectory="$(ConfigurationName)" - ConfigurationType="1" - UseOfMFC="1" - ATLMinimizesCRunTimeLibraryUsage="FALSE" - WholeProgramOptimization="TRUE"> - <Tool - Name="VCCLCompilerTool" - AdditionalOptions="/EHsc /O2" - Optimization="2" - GlobalOptimizations="TRUE" - InlineFunctionExpansion="2" - OptimizeForWindowsApplication="TRUE" - AdditionalIncludeDirectories="..\unlha,..\unzip,..\unrar,..\soundlib,..\include,..\xsoundlib,..\" - PreprocessorDefinitions="NDEBUG,WIN32,_WINDOWS,ENABLE_MMX,ENABLE_EQ,MODPLUG_TRACKER,NO_PACKING,HAVE_DOT_NET,ENABLE_AMD,ENABLE_SSE,ENABLE_AMDNOW" - StringPooling="TRUE" - RuntimeLibrary="0" - BufferSecurityCheck="TRUE" - EnableFunctionLevelLinking="FALSE" - ForceConformanceInForLoopScope="TRUE" - UsePrecompiledHeader="3" - PrecompiledHeaderThrough="stdafx.h" - PrecompiledHeaderFile=".\Release/mptrack.pch" - AssemblerListingLocation=".\Release/" - ObjectFile=".\Release/" - ProgramDataBaseFileName=".\Release/" - WarningLevel="3" - SuppressStartupBanner="FALSE" - DebugInformationFormat="3" - CompileAs="0"/> - <Tool - Name="VCCustomBuildTool"/> - <Tool - Name="VCLinkerTool" - AdditionalOptions="/MACHINE:I386" - AdditionalDependencies="winmm.lib strmiids.lib dmoguids.lib version.lib Rpcrt4.lib delayimp.lib wininet.lib" - OutputFile=".\Bin/mptrack.exe" - Version="5.0" - LinkIncremental="1" - SuppressStartupBanner="TRUE" - AdditionalLibraryDirectories="" - DelayLoadDLLs="OpenMPT_SoundTouch_i16.dll" - GenerateDebugInformation="TRUE" - GenerateMapFile="FALSE" - MapFileName=".\Release/mptrack.map" - SubSystem="2" - OptimizeReferences="2" - EnableCOMDATFolding="2"/> - <Tool - Name="VCMIDLTool" - PreprocessorDefinitions="NDEBUG" - MkTypLibCompatible="TRUE" - SuppressStartupBanner="TRUE" - TargetEnvironment="1" - TypeLibraryName=".\Bin/mptrack.tlb"/> - <Tool - Name="VCPostBuildEventTool"/> - <Tool - Name="VCPreBuildEventTool"/> - <Tool - Name="VCPreLinkEventTool"/> - <Tool - Name="VCResourceCompilerTool" - PreprocessorDefinitions="NDEBUG" - Culture="1033"/> - <Tool - Name="VCWebServiceProxyGeneratorTool"/> - <Tool - Name="VCXMLDataGeneratorTool"/> - <Tool - Name="VCWebDeploymentTool"/> - <Tool - Name="VCManagedWrapperGeneratorTool"/> - <Tool - Name="VCAuxiliaryManagedWrapperGeneratorTool"/> - </Configuration> - </Configurations> - <References> - </References> - <Files> - <Filter - Name="Source Files" - Filter="cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"> - <File - RelativePath=".\AbstractVstEditor.cpp"> - </File> - <File - RelativePath=".\ACMConvert.cpp"> - </File> - <File - RelativePath=".\ArrayUtils.cpp"> - </File> - <File - RelativePath=".\AutoSaver.cpp"> - </File> - <File - RelativePath=".\Autotune.cpp"> - </File> - <File - RelativePath=".\ChannelManagerDlg.cpp"> - </File> - <File - RelativePath=".\ChildFrm.cpp"> - </File> - <File - RelativePath=".\CleanupSong.cpp"> - </File> - <File - RelativePath=".\CloseMainDialog.cpp"> - </File> - <File - RelativePath=".\ColourEdit.cpp"> - </File> - <File - RelativePath=".\CommandSet.cpp"> - </File> - <File - RelativePath=".\CreditStatic.cpp"> - </File> - <File - RelativePath=".\ctrl_com.cpp"> - </File> - <File - RelativePath=".\ctrl_gen.cpp"> - </File> - <File - RelativePath=".\ctrl_ins.cpp"> - </File> - <File - RelativePath=".\ctrl_pat.cpp"> - </File> - <File - RelativePath=".\ctrl_seq.cpp"> - </File> - <File - RelativePath=".\ctrl_smp.cpp"> - </File> - <File - RelativePath=".\DefaultVstEditor.cpp"> - </File> - <File - RelativePath=".\dlg_misc.cpp"> - </File> - <File - RelativePath="..\soundlib\dlsbank.cpp"> - </File> - <File - RelativePath=".\draw_pat.cpp"> - </File> - <File - RelativePath=".\EffectInfo.cpp"> - </File> - <File - RelativePath=".\EffectVis.cpp"> - </File> - <File - RelativePath=".\ExceptionHandler.cpp"> - </File> - <File - RelativePath="..\soundlib\Fastmix.cpp"> - </File> - <File - RelativePath=".\fxp.cpp"> - </File> - <File - RelativePath=".\globals.cpp"> - </File> - <File - RelativePath=".\HyperEdit.cpp"> - </File> - <File - RelativePath=".\HyperEdit2.cpp"> - </File> - <File - RelativePath=".\HyperEdit3.cpp"> - </File> - <File - RelativePath="InputHandler.cpp"> - </File> - <File - RelativePath=".\KeyConfigDlg.cpp"> - </File> - <File - RelativePath=".\mainbar.cpp"> - </File> - <File - RelativePath=".\MainFrm.cpp"> - </File> - <File - RelativePath="..\soundlib\Message.cpp"> - </File> - <File - RelativePath=".\MIDIMacroDialog.cpp"> - </File> - <File - RelativePath=".\soundlib\MIDIMacros.cpp"> - </File> - <File - RelativePath=".\MIDIMappingDialog.cpp"> - </File> - <File - RelativePath="..\common\misc_util.cpp"> - </File> - <File - RelativePath="..\soundlib\mmcmp.cpp"> - </File> - <File - RelativePath="..\soundlib\Mmx_mix.cpp"> - </File> - <File - RelativePath=".\mod2midi.cpp"> - </File> - <File - RelativePath=".\Mod2wave.cpp"> - </File> - <File - RelativePath="..\soundlib\mod_specifications.cpp"> - </File> - <File - RelativePath="..\soundlib\ModChannel.cpp"> - </File> - <File - RelativePath="..\soundlib\modcommand.cpp"> - </File> - <File - RelativePath="..\soundlib\ModInstrument.cpp"> - </File> - <File - RelativePath="..\soundlib\ModSample.cpp"> - </File> - <File - RelativePath=".\ModConvert.cpp"> - </File> - <File - RelativePath=".\Moddoc.cpp"> - </File> - <File - RelativePath=".\Modedit.cpp"> - </File> - <File - RelativePath="..\soundlib\ModSequence.cpp"> - </File> - <File - RelativePath="..\soundlib\modsmp_ctrl.cpp"> - </File> - <File - RelativePath=".\Moptions.cpp"> - </File> - <File - RelativePath=".\MoveFXSlotDialog.cpp"> - </File> - <File - RelativePath=".\Mpdlgs.cpp"> - </File> - <File - RelativePath=".\mpt_midi.cpp"> - </File> - <File - RelativePath=".\MPTHacks.cpp"> - </File> - <File - RelativePath=".\mptrack.cpp"> - </File> - <File - RelativePath=".\mptrack.rc"> - </File> - <File - RelativePath="..\soundlib\pattern.cpp"> - </File> - <File - RelativePath=".\PatternClipboard.cpp"> - </File> - <File - RelativePath="..\soundlib\patternContainer.cpp"> - </File> - <File - RelativePath=".\PatternEditorDialogs.cpp"> - </File> - <File - RelativePath=".\PatternGotoDialog.cpp"> - </File> - <File - RelativePath="..\soundlib\PlaybackEventer.cpp"> - </File> - <File - RelativePath=".\PSRatioCalc.cpp"> - </File> - <File - RelativePath="..\common\Reporting.cpp"> - </File> - <File - RelativePath="..\soundlib\RowVisitor.cpp"> - </File> - <File - RelativePath=".\SampleEditorDialogs.cpp"> - </File> - <File - RelativePath="..\soundlib\Sampleio.cpp"> - </File> - <File - RelativePath=".\ScaleEnvPointsDlg.cpp"> - </File> - <File - RelativePath=".\SelectPluginDialog.cpp"> - </File> - <File - RelativePath=".\serialization_utils.cpp"> - </File> - <File - RelativePath="..\soundlib\snd_dsp.cpp"> - </File> - <File - RelativePath="..\soundlib\snd_eq.cpp"> - </File> - <File - RelativePath="..\soundlib\snd_flt.cpp"> - </File> - <File - RelativePath="..\soundlib\Snd_fx.cpp"> - </File> - <File - RelativePath="..\Soundlib\Snd_rvb.cpp"> - <FileConfiguration - Name="Release|Win32"> - <Tool - Name="VCCLCompilerTool" - AssemblerOutput="4"/> - </FileConfiguration> - </File> - <File - RelativePath="..\Soundlib\snddev.cpp"> - </File> - <File - RelativePath="..\soundlib\Sndfile.cpp"> - </File> - <File - RelativePath="..\soundlib\Sndmix.cpp"> - </File> - <File - RelativePath=".\SoundFilePlayConfig.cpp"> - </File> - <File - RelativePath=".\StdAfx.cpp"> - <FileConfiguration - Name="Debug|Win32"> - <Tool - Name="VCCLCompilerTool" - UsePrecompiledHeader="1"/> - </FileConfiguration> - <FileConfiguration - Name="Release|Win32"> - <Tool - Name="VCCLCompilerTool" - UsePrecompiledHeader="1"/> - </FileConfiguration> - </File> - <File - RelativePath="..\soundlib\Tables.cpp"> - </File> - <File - RelativePath=".\tagging.cpp"> - </File> - <File - RelativePath=".\TrackerSettings.cpp"> - </File> - <File - RelativePath=".\Undo.cpp"> - </File> - <File - RelativePath=".\UpdateCheck.cpp"> - </File> - <File - RelativePath=".\view_com.cpp"> - </File> - <File - RelativePath=".\view_gen.cpp"> - </File> - <File - RelativePath=".\view_ins.cpp"> - </File> - <File - RelativePath=".\view_pat.cpp"> - </File> - <File - RelativePath=".\view_smp.cpp"> - </File> - <File - RelativePath=".\view_tre.cpp"> - </File> - <File - RelativePath=".\VSTEditor.cpp"> - </File> - <File - RelativePath=".\vstplug.cpp"> - </File> - <File - RelativePath="..\soundlib\Waveform.cpp"> - </File> - <File - RelativePath="..\soundlib\WindowedFIR.cpp"> - </File> - <Filter - Name="PatternRandomizer" - Filter=""> - <File - RelativePath=".\PatternRandomizer.cpp"> - </File> - <File - RelativePath=".\PatternRandomizer.h"> - </File> - <File - RelativePath=".\PatternRandomizerGUI.cpp"> - </File> - <File - RelativePath=".\PatternRandomizerGUI.h"> - </File> - <File - RelativePath=".\PatternRandomizerGUIEffect.cpp"> - </File> - <File - RelativePath=".\PatternRandomizerGUIEffect.h"> - </File> - <File - RelativePath=".\PatternRandomizerGUIInstrument.cpp"> - </File> - <File - RelativePath=".\PatternRandomizerGUIInstrument.h"> - </File> - <File - RelativePath=".\PatternRandomizerGUINote.cpp"> - </File> - <File - RelativePath=".\PatternRandomizerGUINote.h"> - </File> - <File - RelativePath=".\PatternRandomizerGUIVolCmd.cpp"> - </File> - <File - RelativePath=".\PatternRandomizerGUIVolCmd.h"> - </File> - </Filter> - <Filter - Name="MixGraph" - Filter=""> - <File - RelativePath=".\ChannelNode.cpp"> - </File> - <File - RelativePath=".\ChannelNode.h"> - </File> - <File - RelativePath=".\ctrl_graph.cpp"> - </File> - <File - RelativePath=".\ctrl_graph.h"> - </File> - <File - RelativePath=".\EffectNode.cpp"> - </File> - <File - RelativePath=".\EffectNode.h"> - </File> - <File - RelativePath=".\FinalNode.cpp"> - </File> - <File - RelativePath=".\FinalNode.h"> - </File> - <File - RelativePath=".\Graph.cpp"> - </File> - <File - RelativePath=".\Graph.h"> - </File> - <File - RelativePath=".\InstrumentNode.cpp"> - </File> - <File - RelativePath=".\InstrumentNode.h"> - </File> - <File - RelativePath=".\Node.cpp"> - </File> - <File - RelativePath=".\Node.h"> - </File> - <File - RelativePath=".\Vertex.cpp"> - </File> - <File - RelativePath=".\Vertex.h"> - </File> - <File - RelativePath=".\view_graph.cpp"> - </File> - <File - RelativePath=".\view_graph.h"> - </File> - </Filter> - <Filter - Name="Tuning" - Filter=""> - <File - RelativePath="..\soundlib\tuning.cpp"> - </File> - <File - RelativePath="..\soundlib\tuningbase.cpp"> - </File> - <File - RelativePath="..\soundlib\tuningCollection.cpp"> - </File> - <File - RelativePath=".\TuningDialog.cpp"> - </File> - <File - RelativePath=".\tuningRatioMapWnd.cpp"> - </File> - </Filter> - </Filter> - <Filter - Name="Resource Files" - Filter="ico;cur;bmp;dlg;rc2;rct;bin;cnt;rtf;gif;jpg;jpeg;jpe"> - <File - RelativePath="res\bitmap1.bmp"> - </File> - <File - RelativePath=".\res\built-inTunings.tc"> - </File> - <File - RelativePath=".\res\colors.bmp"> - </File> - <File - RelativePath=".\res\defaultKeyBindings.mkb"> - </File> - <File - RelativePath=".\res\dragging.cur"> - </File> - <File - RelativePath=".\Res\envbar.bmp"> - </File> - <File - RelativePath=".\res\img_list.bmp"> - </File> - <File - RelativePath=".\res\mainbar.bmp"> - </File> - <File - RelativePath=".\res\moddoc.ico"> - </File> - <File - RelativePath=".\res\MPTRACK.bmp"> - </File> - <File - RelativePath=".\res\mptrack.ico"> - </File> - <File - RelativePath=".\res\mptrack.rc2"> - </File> - <File - RelativePath=".\Res\nodrag.cur"> - </File> - <File - RelativePath=".\res\nodrop.cur"> - </File> - <File - RelativePath=".\res\patterns.bmp"> - </File> - <File - RelativePath=".\res\rt_manif.bin"> - </File> - <File - RelativePath=".\Res\smptoolb.bmp"> - </File> - <File - RelativePath=".\res\splashno.bmp"> - </File> - <File - RelativePath=".\res\view_pat.bmp"> - </File> - <File - RelativePath=".\res\vispcnode.bmp"> - </File> - <File - RelativePath=".\res\vumeters.bmp"> - </File> - </Filter> - <Filter - Name="Header Files" - Filter="h;hpp;hxx;hm;inl"> - <File - RelativePath=".\AbstractVstEditor.h"> - </File> - <File - RelativePath=".\ACMConvert.h"> - </File> - <File - RelativePath=".\ArrayUtils.h"> - </File> - <File - RelativePath=".\AutoSaver.h"> - </File> - <File - RelativePath=".\Autotune.h"> - </File> - <File - RelativePath=".\ChannelManagerDlg.h"> - </File> - <File - RelativePath=".\ChildFrm.h"> - </File> - <File - RelativePath=".\CleanupSong.h"> - </File> - <File - RelativePath=".\CloseMainDialog.h"> - </File> - <File - RelativePath=".\ColourEdit.h"> - </File> - <File - RelativePath=".\CommandSet.h"> - </File> - <File - RelativePath=".\CreditStatic.h"> - </File> - <File - RelativePath=".\ctrl_com.h"> - </File> - <File - RelativePath=".\ctrl_gen.h"> - </File> - <File - RelativePath=".\ctrl_ins.h"> - </File> - <File - RelativePath=".\ctrl_pat.h"> - </File> - <File - RelativePath=".\ctrl_smp.h"> - </File> - <File - RelativePath=".\DefaultVstEditor.h"> - </File> - <File - RelativePath=".\dlg_misc.h"> - </File> - <File - RelativePath="..\Soundlib\Dlsbank.h"> - </File> - <File - RelativePath=".\EffectInfo.h"> - </File> - <File - RelativePath=".\EffectVis.h"> - </File> - <File - RelativePath="..\soundlib\Endianness.h"> - </File> - <File - RelativePath=".\ExceptionHandler.h"> - </File> - <File - RelativePath=".\fxp.h"> - </File> - <File - RelativePath=".\globals.h"> - </File> - <File - RelativePath="InputHandler.h"> - </File> - <File - RelativePath=".\KeyConfigDlg.h"> - </File> - <File - RelativePath=".\mainbar.h"> - </File> - <File - RelativePath=".\MainFrm.h"> - </File> - <File - RelativePath="..\soundlib\midi.h"> - </File> - <File - RelativePath=".\MIDIMacroDialog.h"> - </File> - <File - RelativePath=".\soundlib\MIDIMacros.h"> - </File> - <File - RelativePath=".\MIDIMappingDialog.h"> - </File> - <File - RelativePath="..\common\misc_util.h"> - </File> - <File - RelativePath=".\mod2midi.h"> - </File> - <File - RelativePath=".\mod2wave.h"> - </File> - <File - RelativePath="..\soundlib\mod_specifications.h"> - </File> - <File - RelativePath="..\soundlib\ModChannel.h"> - </File> - <File - RelativePath="..\soundlib\modcommand.h"> - </File> - <File - RelativePath="..\soundlib\ModInstrument.h"> - </File> - <File - RelativePath="..\soundlib\ModSample.h"> - </File> - <File - RelativePath=".\ModConvert.h"> - </File> - <File - RelativePath=".\moddoc.h"> - </File> - <File - RelativePath="..\soundlib\ModSequence.h"> - </File> - <File - RelativePath="..\soundlib\modsmp_ctrl.h"> - </File> - <File - RelativePath=".\Moptions.h"> - </File> - <File - RelativePath=".\MoveFXSlotDialog.h"> - </File> - <File - RelativePath=".\Mpdlgs.h"> - </File> - <File - RelativePath=".\mptrack.h"> - </File> - <File - RelativePath="..\soundlib\pattern.h"> - </File> - <File - RelativePath=".\PatternClipboard.h"> - </File> - <File - RelativePath="..\soundlib\patternContainer.h"> - </File> - <File - RelativePath=".\PatternCursor.h"> - </File> - <File - RelativePath=".\PatternEditorDialogs.h"> - </File> - <File - RelativePath=".\PatternGotoDialog.h"> - </File> - <File - RelativePath="..\soundlib\PlaybackEventer.h"> - </File> - <File - RelativePath=".\PSRatioCalc.h"> - </File> - <File - RelativePath=".\soundlib\PluginEventQueue.h"> - </File> - <File - RelativePath=".\soundlib\PluginMixBuffer.h"> - </File> - <File - RelativePath=".\soundlib\PlugInterface.h"> - </File> - <File - RelativePath=".\soundlib\RowVisitor.h"> - </File> - <File - RelativePath="..\common\Reporting.h"> - </File> - <File - RelativePath=".\Resource.h"> - </File> - <File - RelativePath=".\SampleEditorDialogs.h"> - </File> - <File - RelativePath=".\ScaleEnvPointsDlg.h"> - </File> - <File - RelativePath=".\SelectPluginDialog.h"> - </File> - <File - RelativePath=".\serialization_utils.h"> - </File> - <File - RelativePath="..\soundlib\Snd_defs.h"> - </File> - <File - RelativePath="..\Soundlib\snddev.h"> - </File> - <File - RelativePath="..\Soundlib\snddevx.h"> - </File> - <File - RelativePath="..\Soundlib\Sndfile.h"> - </File> - <File - RelativePath=".\SoundFilePlayConfig.h"> - </File> - <File - RelativePath=".\StdAfx.h"> - </File> - <File - RelativePath="..\common\StringFixer.h"> - </File> - <File - RelativePath=".\tagging.h"> - </File> - <File - RelativePath=".\TrackerSettings.h"> - </File> - <File - RelativePath="..\common\typedefs.h"> - </File> - <File - RelativePath=".\Undo.h"> - </File> - <File - RelativePath=".\UpdateCheck.h"> - </File> - <File - RelativePath=".\version.h"> - </File> - <File - RelativePath=".\view_com.h"> - </File> - <File - RelativePath=".\view_gen.h"> - </File> - <File - RelativePath=".\view_ins.h"> - </File> - <File - RelativePath=".\view_pat.h"> - </File> - <File - RelativePath=".\view_smp.h"> - </File> - <File - RelativePath=".\view_tre.h"> - </File> - <File - RelativePath=".\VSTEditor.h"> - </File> - <File - RelativePath=".\vstplug.h"> - </File> - <File - RelativePath="..\soundlib\Wav.h"> - </File> - <File - RelativePath="..\soundlib\wavConverter.h"> - </File> - <File - RelativePath="..\soundlib\WindowedFIR.h"> - </File> - <Filter - Name="tuning" - Filter=""> - <File - RelativePath="..\soundlib\tuning.h"> - </File> - <File - RelativePath="..\soundlib\tuningbase.h"> - </File> - <File - RelativePath="..\soundlib\tuningcollection.h"> - </File> - <File - RelativePath=".\TuningDialog.h"> - </File> - <File - RelativePath=".\tuningRatioMapWnd.h"> - </File> - </Filter> - </Filter> - <Filter - Name="test" - Filter=""> - <File - RelativePath=".\test\test.cpp"> - </File> - <File - RelativePath=".\test\test.h"> - </File> - </Filter> - <Filter - Name="Module Loaders" - Filter=""> - <File - RelativePath="..\soundlib\ITTools.h"> - </File> - <File - RelativePath="..\soundlib\ITTools.cpp"> - </File> - <File - RelativePath="..\soundlib\Load_669.cpp"> - </File> - <File - RelativePath="..\Soundlib\load_amf.cpp"> - </File> - <File - RelativePath="..\soundlib\Load_ams.cpp"> - </File> - <File - RelativePath="..\soundlib\load_dbm.cpp"> - </File> - <File - RelativePath="..\soundlib\load_dmf.cpp"> - </File> - <File - RelativePath="..\soundlib\Load_dsm.cpp"> - </File> - <File - RelativePath="..\soundlib\Load_far.cpp"> - </File> - <File - RelativePath="..\soundlib\Load_gdm.cpp"> - </File> - <File - RelativePath="..\soundlib\Load_imf.cpp"> - </File> - <File - RelativePath="..\soundlib\Load_it.cpp"> - </File> - <File - RelativePath="..\soundlib\Load_itp.cpp"> - </File> - <File - RelativePath="..\soundlib\load_j2b.cpp"> - </File> - <File - RelativePath="..\soundlib\Load_mdl.cpp"> - </File> - <File - RelativePath="..\soundlib\Load_med.cpp"> - </File> - <File - RelativePath="..\soundlib\load_mid.cpp"> - </File> - <File - RelativePath="..\soundlib\Load_mo3.cpp"> - </File> - <File - RelativePath="..\soundlib\Load_mod.cpp"> - </File> - <File - RelativePath="..\Soundlib\load_mt2.cpp"> - </File> - <File - RelativePath="..\soundlib\Load_mtm.cpp"> - </File> - <File - RelativePath="..\soundlib\Load_okt.cpp"> - </File> - <File - RelativePath="..\Soundlib\load_psm.cpp"> - </File> - <File - RelativePath="..\soundlib\load_ptm.cpp"> - </File> - <File - RelativePath="..\soundlib\Load_s3m.cpp"> - </File> - <File - RelativePath="..\soundlib\Load_stm.cpp"> - </File> - <File - RelativePath="..\soundlib\Load_ult.cpp"> - </File> - <File - RelativePath="..\Soundlib\Load_umx.cpp"> - </File> - <File - RelativePath="..\soundlib\Load_wav.cpp"> - </File> - <File - RelativePath="..\soundlib\Load_xm.cpp"> - </File> - <File - RelativePath="..\soundlib\Loaders.h"> - </File> - </Filter> - <File - RelativePath=".\mptrack.reg"> - </File> - <File - RelativePath=".\VTune\mptrack.vpj"> - </File> - </Files> - <Globals> - <Global - Name="RESOURCE_FILE" - Value="mptrack.rc"/> - </Globals> -</VisualStudioProject> Modified: trunk/OpenMPT/mptrack/mptrack_08.vcproj =================================================================== --- trunk/OpenMPT/mptrack/mptrack_08.vcproj 2012-03-10 18:19:44 UTC (rev 1215) +++ trunk/OpenMPT/mptrack/mptrack_08.vcproj 2012-03-12 22:41:17 UTC (rev 1216) @@ -49,7 +49,7 @@ Name="VCCLCompilerTool" AdditionalOptions="/EHsc" Optimization="0" - AdditionalIncludeDirectories="..\unlha;..\unzip;..\unrar;..\soundlib;..\include;..\xsoundlib;..\" + AdditionalIncludeDirectories="..\unlha;..\unzip;..\unrar;..\soundlib;..\include;..\include\vstsdk2.4\;..\include\ASIOSDK2\common\;..\xsoundlib;..\" PreprocessorDefinitions="_DEBUG,WIN32,_WINDOWS,ENABLE_EQ,MODPLUG_TRACKER,NO_PACKING,HAVE_DOT_NET,ENABLE_AMD,ENABLE_SSE,ENABLE_AMDNOW,ENABLE_MMX" StringPooling="true" BasicRuntimeChecks="3" @@ -157,7 +157,7 @@ AdditionalOptions="/EHsc /O2" Optimization="2" InlineFunctionExpansion="2" - AdditionalIncludeDirectories="..\unlha,..\unzip,..\unrar,..\soundlib,..\include,..\xsoundlib,..\" + AdditionalIncludeDirectories="..\unlha;..\unzip;..\unrar;..\soundlib;..\include;..\include\vstsdk2.4\;..\include\ASIOSDK2\common\;..\xsoundlib;..\" PreprocessorDefinitions="NDEBUG,WIN32,_WINDOWS,ENABLE_MMX,ENABLE_EQ,MODPLUG_TRACKER,NO_PACKING,HAVE_DOT_NET,ENABLE_AMD,ENABLE_SSE,ENABLE_AMDNOW" StringPooling="true" RuntimeLibrary="0" Modified: trunk/OpenMPT/mptrack/mptrack_10.vcxproj =================================================================== --- trunk/OpenMPT/mptrack/mptrack_10.vcxproj 2012-03-10 18:19:44 UTC (rev 1215) +++ trunk/OpenMPT/mptrack/mptrack_10.vcxproj 2012-03-12 22:41:17 UTC (rev 1216) @@ -62,7 +62,7 @@ <ClCompile> <AdditionalOptions>/EHsc %(AdditionalOptions)</AdditionalOptions> <Optimization>Disabled</Optimization> - <AdditionalIncludeDirectories>..\unlha;..\unzip;..\unrar;..\soundlib;..\include;..\xsoundlib;..\;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> + <AdditionalIncludeDirectories>..\unlha;..\unzip;..\unrar;..\soundlib;..\include;..\include\vstsdk2.4\;..\include\ASIOSDK2\common\;..\xsoundlib;..\;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> <PreprocessorDefinitions>_DEBUG;WIN32;_WINDOWS;ENABLE_EQ;MODPLUG_TRACKER;NO_PACKING;HAVE_DOT_NET;ENABLE_AMD;ENABLE_SSE;ENABLE_AMDNOW;ENABLE_MMX;%(PreprocessorDefinitions)</PreprocessorDefinitions> <StringPooling>true</StringPooling> <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks> @@ -119,7 +119,7 @@ <ClCompile> <Optimization>MaxSpeed</Optimization> <InlineFunctionExpansion>AnySuitable</InlineFunctionExpansion> - <AdditionalIncludeDirectories>..\unlha;..\unzip;..\unrar;..\soundlib;..\include;..\xsoundlib;..\;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> + <AdditionalIncludeDirectories>..\unlha;..\unzip;..\unrar;..\soundlib;..\include;..\include\vstsdk2.4\;..\include\ASIOSDK2\common\;..\xsoundlib;..\;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> <PreprocessorDefinitions>NDEBUG;WIN32;_WINDOWS;ENABLE_MMX;ENABLE_EQ;MODPLUG_TRACKER;NO_PACKING;HAVE_DOT_NET;ENABLE_AMD;ENABLE_SSE;ENABLE_AMDNOW;%(PreprocessorDefinitions)</PreprocessorDefinitions> <StringPooling>true</StringPooling> <RuntimeLibrary>MultiThreaded</RuntimeLibrary> Modified: trunk/OpenMPT/packageTemplate/readme.txt =================================================================== --- trunk/OpenMPT/packageTemplate/readme.txt 2012-03-10 18:19:44 UTC (rev 1215) +++ trunk/OpenMPT/packageTemplate/readme.txt 2012-03-12 22:41:17 UTC (rev 1216) @@ -1,15 +1,1... [truncated message content] |