Subversion Repositories filter_foundry

Compare Revisions

No changes between revisions

Regard whitespace Rev 307 → Rev 308

/trunk/3264_mixer/foundry_3264_mixer.Build.CppClean.log
0,0 → 1,14
d:\svn\filterfoundry\trunk\3264_mixer\vc142.pdb
d:\svn\filterfoundry\trunk\3264_mixer\foundry_3264_mixer.obj
d:\svn\filterfoundry\trunk\3264_mixer\foundry_3264_mixer.ipdb
d:\svn\filterfoundry\trunk\3264_mixer\foundry_3264_mixer.iobj
d:\svn\filterfoundry\trunk\3264_mixer\foundry_3264_mixer.exe
d:\svn\filterfoundry\trunk\3264_mixer\foundry_3264_mixer.pdb
d:\svn\filterfoundry\trunk\3264_mixer\.\foundry_3264_mixer.pdb
d:\svn\filterfoundry\trunk\3264_mixer\foundry_.5c8de1cc.tlog\cl.command.1.tlog
d:\svn\filterfoundry\trunk\3264_mixer\foundry_.5c8de1cc.tlog\cl.read.1.tlog
d:\svn\filterfoundry\trunk\3264_mixer\foundry_.5c8de1cc.tlog\cl.write.1.tlog
d:\svn\filterfoundry\trunk\3264_mixer\foundry_.5c8de1cc.tlog\foundry_3264_mixer.write.1u.tlog
d:\svn\filterfoundry\trunk\3264_mixer\foundry_.5c8de1cc.tlog\link.command.1.tlog
d:\svn\filterfoundry\trunk\3264_mixer\foundry_.5c8de1cc.tlog\link.read.1.tlog
d:\svn\filterfoundry\trunk\3264_mixer\foundry_.5c8de1cc.tlog\link.write.1.tlog
/trunk/3264_mixer/foundry_3264_mixer.bat
0,0 → 1,14
@echo off
 
cd /d %~dp0
 
rem copy /y ..\wpj\FilterFoundry.8bf in\
copy /y ..\visual_studio\FilterFoundry.8bf in\
copy /y ..\visual_studio\FilterFoundry64.8bf in\
 
foundry_3264_mixer.exe
 
copy /y out\FilterFoundry.8bf ..\visual_studio\FilterFoundry.8bf
copy /y out\FilterFoundry64.8bf ..\visual_studio\FilterFoundry64.8bf
 
pause.
/trunk/3264_mixer/foundry_3264_mixer.cpp
0,0 → 1,381
/*
This file is part of "Filter Foundry", a filter plugin for Adobe Photoshop
Copyright (C) 2003-2009 Toby Thain, toby@telegraphics.com.au
Copyright (C) 2018-2021 Daniel Marschall, ViaThinkSoft
 
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
 
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
 
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
 
#ifndef _CRT_SECURE_NO_WARNINGS
#define _CRT_SECURE_NO_WARNINGS
#endif
 
#include <iostream>
#include <windows.h>
 
bool update_pe_timestamp(LPCTSTR filename, time_t timestamp) {
size_t peoffset;
FILE* fptr;
 
fptr = _wfopen(filename, L"rb+");
if (fptr == NULL) return false;
 
fseek(fptr, 0x3C, SEEK_SET);
fread(&peoffset, sizeof(peoffset), 1, fptr);
 
fseek(fptr, (long)peoffset + 8, SEEK_SET);
fwrite(&timestamp, sizeof(time_t), 1, fptr);
 
fclose(fptr);
 
return true;
}
 
//DOS .EXE header
struct image_dos_header
{
uint16_t e_magic; // Magic number
uint16_t e_cblp; // Bytes on last page of file
uint16_t e_cp; // Pages in file
uint16_t e_crlc; // Relocations
uint16_t e_cparhdr; // Size of header in paragraphs
uint16_t e_minalloc; // Minimum extra paragraphs needed
uint16_t e_maxalloc; // Maximum extra paragraphs needed
uint16_t e_ss; // Initial (relative) SS value
uint16_t e_sp; // Initial SP value
uint16_t e_csum; // Checksum
uint16_t e_ip; // Initial IP value
uint16_t e_cs; // Initial (relative) CS value
uint16_t e_lfarlc; // File address of relocation table
uint16_t e_ovno; // Overlay number
uint16_t e_res[4]; // Reserved words
uint16_t e_oemid; // OEM identifier (for e_oeminfo)
uint16_t e_oeminfo; // OEM information; e_oemid specific
uint16_t e_res2[10]; // Reserved words
int32_t e_lfanew; // File address of new exe header
};
 
struct image_file_header
{
uint16_t Machine;
uint16_t NumberOfSections;
uint32_t TimeDateStamp;
uint32_t PointerToSymbolTable;
uint32_t NumberOfSymbols;
uint16_t SizeOfOptionalHeader;
uint16_t Characteristics;
};
 
uint32_t calculate_checksum(LPCTSTR filename) {
//Calculate checksum of image
// Taken from "PE Bliss" Cross-Platform Portable Executable C++ Library
// https://github.com/mrexodia/portable-executable-library/blob/master/pe_lib/pe_checksum.cpp
// Converted from C++ to C by Daniel Marschall
 
FILE* fptr;
unsigned long long checksum = 0;
struct image_dos_header header;
size_t filesize;
unsigned long long top;
unsigned long pe_checksum_pos;
static const unsigned long checksum_pos_in_optional_headers = 64;
size_t i;
 
fptr = _wfopen(filename, L"rb");
if (fptr == NULL) return 0x00000000;
 
//Read DOS header
fseek(fptr, 0, SEEK_SET);
fread(&header, sizeof(struct image_dos_header), 1, fptr);
 
//Calculate PE checksum
fseek(fptr, 0, SEEK_SET);
top = 0xFFFFFFFF;
top++;
 
//"CheckSum" field position in optional PE headers - it's always 64 for PE and PE+
//Calculate real PE headers "CheckSum" field position
//Sum is safe here
pe_checksum_pos = header.e_lfanew + sizeof(struct image_file_header) + sizeof(uint32_t) + checksum_pos_in_optional_headers;
 
//Calculate checksum for each byte of file
fseek(fptr, 0L, SEEK_END);
filesize = ftell(fptr);
fseek(fptr, 0L, SEEK_SET);
for (i = 0; i < filesize; i += 4)
{
unsigned long dw = 0;
 
//Read DWORD from file
fread(&dw, sizeof(dw), 1, fptr);
//Skip "CheckSum" DWORD
if (i == pe_checksum_pos)
continue;
 
//Calculate checksum
checksum = (checksum & 0xffffffff) + dw + (checksum >> 32);
if (checksum > top)
checksum = (checksum & 0xffffffff) + (checksum >> 32);
}
 
//Finish checksum
checksum = (checksum & 0xffff) + (checksum >> 16);
checksum = (checksum)+(checksum >> 16);
checksum = checksum & 0xffff;
 
checksum += (unsigned long)(filesize);
 
fclose(fptr);
 
//Return checksum
return (uint32_t)checksum;
}
 
bool repair_pe_checksum(LPCTSTR filename) {
size_t peoffset;
FILE* fptr;
 
uint32_t checksum = calculate_checksum(filename);
//if (checksum == 0x00000000) return false;
 
fptr = _wfopen(filename, L"rb+");
if (fptr == NULL) return false;
 
fseek(fptr, 0x3C, SEEK_SET);
fread(&peoffset, sizeof(peoffset), 1, fptr);
 
fseek(fptr, (long)peoffset + 88, SEEK_SET);
fwrite(&checksum, sizeof(uint32_t), 1, fptr);
 
fclose(fptr);
 
return true;
}
 
bool removeFromFile(LPCTSTR pluginfile, LPCTSTR lpType, LPCTSTR lpName, WORD wLanguage) {
bool bSuccessful = false;
 
HANDLE hRes = BeginUpdateResource(pluginfile, false);
if (hRes != NULL) {
if (UpdateResource(hRes, lpType, lpName, wLanguage, NULL, 0)) {
if (EndUpdateResource(hRes, false)) {
bSuccessful = true;
}
}
else {
EndUpdateResource(hRes, true);
}
}
 
return bSuccessful;
}
 
bool addToFile(LPCTSTR pluginfile, LPCTSTR otherfile, LPCTSTR lpType, LPCTSTR lpName, WORD wLanguage) {
HANDLE hFile;
DWORD dwFileSize, dwBytesRead;
LPBYTE lpBuffer;
bool bSuccessful = false;
 
hFile = CreateFile(otherfile, GENERIC_READ,
0,
NULL,
OPEN_EXISTING,
FILE_ATTRIBUTE_NORMAL,
NULL);
 
if (INVALID_HANDLE_VALUE != hFile)
{
dwFileSize = GetFileSize(hFile, NULL);
 
//lpBuffer = new BYTE[dwFileSize];
lpBuffer = (LPBYTE)malloc(dwFileSize);
 
if (ReadFile(hFile, lpBuffer, dwFileSize, &dwBytesRead, NULL) != FALSE)
{
HANDLE hRes = BeginUpdateResource(pluginfile, false);
if (hRes != NULL) {
if (UpdateResource(hRes, lpType, lpName, wLanguage, lpBuffer, dwFileSize)) {
if (EndUpdateResource(hRes, false)) {
bSuccessful = true;
}
}
else {
EndUpdateResource(hRes, true);
}
}
}
 
//delete[] lpBuffer;
free(lpBuffer);
 
CloseHandle(hFile);
}
 
return bSuccessful;
}
 
int main()
{
LPCTSTR lpType = L"TPLT";
LPCTSTR lpName32 = (LPCTSTR)1032;
LPCTSTR lpName64 = (LPCTSTR)1064;
WORD wLanguage = 1033; // en-US
 
LPCTSTR file32in = L"d:\\SVN\\FilterFoundry\\trunk\\3264_mixer\\in\\FilterFoundry.8bf";
LPCTSTR file64in = L"d:\\SVN\\FilterFoundry\\trunk\\3264_mixer\\in\\FilterFoundry64.8bf";
LPCTSTR file32out = L"d:\\SVN\\FilterFoundry\\trunk\\3264_mixer\\out\\FilterFoundry.8bf";
LPCTSTR file64out = L"d:\\SVN\\FilterFoundry\\trunk\\3264_mixer\\out\\FilterFoundry64.8bf";
LPCTSTR file32tmp = L"d:\\SVN\\FilterFoundry\\trunk\\3264_mixer\\FilterFoundry.tmp";
LPCTSTR file64tmp = L"d:\\SVN\\FilterFoundry\\trunk\\3264_mixer\\FilterFoundry64.tmp";
 
// 1. Copy "IN" to "TMP"
 
if (!CopyFile(file32in, file32tmp, false)) {
DeleteFile(file32out);
DeleteFile(file64out);
printf("Error: Copyfile 32in > 32tmp\n");
return 1;
}
 
if (!CopyFile(file64in, file64tmp, false)) {
DeleteFile(file32out);
DeleteFile(file64out);
printf("Error: Copyfile 64in > 64tmp\n");
return 1;
}
 
// 2. Remove any 32/64 residue in "TMP"
 
removeFromFile(file32tmp, lpType, lpName32, wLanguage);
removeFromFile(file32tmp, lpType, lpName64, wLanguage);
removeFromFile(file64tmp, lpType, lpName32, wLanguage);
removeFromFile(file64tmp, lpType, lpName64, wLanguage);
 
// 3. Update timestamp
 
if (!update_pe_timestamp(file32tmp, time(0))) {
DeleteFile(file32out);
DeleteFile(file64out);
printf("Error: Update TMP timestamp 32\n");
return 1;
}
 
if (!update_pe_timestamp(file64tmp, time(0))) {
DeleteFile(file32out);
DeleteFile(file64out);
printf("Error: Update TMP timestamp 64\n");
return 1;
}
 
// 4. Repair checksums
 
if (!repair_pe_checksum(file32tmp)) {
DeleteFile(file32out);
DeleteFile(file64out);
printf("Error: Repair TMP checksum 32\n");
return 1;
}
if (!repair_pe_checksum(file64tmp)) {
DeleteFile(file32out);
DeleteFile(file64out);
printf("Error: Repair TMP checksum 64\n");
return 1;
}
 
// 5. Copy "TMP" to "OUT" (will be edited later)
 
if (!CopyFile(file32tmp, file32out, false)) {
DeleteFile(file32out);
DeleteFile(file64out);
printf("Error: Copyfile 32tmp > 32out\n");
return 1;
}
if (!CopyFile(file64tmp, file64out, false)) {
DeleteFile(file32out);
DeleteFile(file64out);
printf("Error: Copyfile 64tmp > 64out\n");
return 1;
}
 
// 6. Add 32/64 "TMP" to 64/32 "OUT"
 
if (!addToFile(file32out, file32tmp, lpType, lpName32, wLanguage)) {
DeleteFile(file32out);
DeleteFile(file64out);
printf("Error: Add 32 to 32\n");
return 1;
}
if (!addToFile(file32out, file64tmp, lpType, lpName64, wLanguage)) {
DeleteFile(file32out);
DeleteFile(file64out);
printf("Error: Add 64 to 32\n");
return 1;
}
 
if (!addToFile(file64out, file32tmp, lpType, lpName32, wLanguage)) {
DeleteFile(file32out);
DeleteFile(file64out);
printf("Error: Add 32 to 64\n");
return 1;
}
 
if (!addToFile(file64out, file64tmp, lpType, lpName64, wLanguage)) {
DeleteFile(file32out);
DeleteFile(file64out);
printf("Error: Add 64 to 64\n");
return 1;
}
 
// 7. Delete "TMP"
 
DeleteFile(file32tmp);
DeleteFile(file64tmp);
 
// 8. Update timestamp
 
if (!update_pe_timestamp(file32out, time(0))) {
DeleteFile(file32out);
DeleteFile(file64out);
printf("Error: Update OUT timestamp 32\n");
return 1;
}
 
if (!update_pe_timestamp(file64out, time(0))) {
DeleteFile(file32out);
DeleteFile(file64out);
printf("Error: Update OUT timestamp 64\n");
return 1;
}
 
// 9. Repair checksums
 
if (!repair_pe_checksum(file32out)) {
DeleteFile(file32out);
DeleteFile(file64out);
printf("Error: Repair OUT checksum 32\n");
return 1;
}
if (!repair_pe_checksum(file64out)) {
DeleteFile(file32out);
DeleteFile(file64out);
printf("Error: Repair OUT checksum 64\n");
return 1;
}
 
// 10. All done!
 
printf("All OK!\n");
return 0;
}
/trunk/3264_mixer/foundry_3264_mixer.exe.recipe
0,0 → 1,11
<?xml version="1.0" encoding="utf-8"?>
<Project>
<ProjectOutputs>
<ProjectOutput>
<FullPath>D:\SVN\FilterFoundry\trunk\3264_mixer\foundry_3264_mixer.exe</FullPath>
</ProjectOutput>
</ProjectOutputs>
<ContentFiles />
<SatelliteDlls />
<NonRecipeFileRefs />
</Project>
/trunk/3264_mixer/foundry_3264_mixer.log
0,0 → 1,0

/trunk/3264_mixer/foundry_3264_mixer.sln
0,0 → 1,31

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.31410.357
MinimumVisualStudioVersion = 10.0.40219.1
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "foundry_3264_mixer", "foundry_3264_mixer.vcxproj", "{5C8DE1CC-009B-4567-9CF0-D81874538A93}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|x64 = Debug|x64
Debug|x86 = Debug|x86
Release|x64 = Release|x64
Release|x86 = Release|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{5C8DE1CC-009B-4567-9CF0-D81874538A93}.Debug|x64.ActiveCfg = Debug|x64
{5C8DE1CC-009B-4567-9CF0-D81874538A93}.Debug|x64.Build.0 = Debug|x64
{5C8DE1CC-009B-4567-9CF0-D81874538A93}.Debug|x86.ActiveCfg = Debug|Win32
{5C8DE1CC-009B-4567-9CF0-D81874538A93}.Debug|x86.Build.0 = Debug|Win32
{5C8DE1CC-009B-4567-9CF0-D81874538A93}.Release|x64.ActiveCfg = Release|x64
{5C8DE1CC-009B-4567-9CF0-D81874538A93}.Release|x64.Build.0 = Release|x64
{5C8DE1CC-009B-4567-9CF0-D81874538A93}.Release|x86.ActiveCfg = Release|Win32
{5C8DE1CC-009B-4567-9CF0-D81874538A93}.Release|x86.Build.0 = Release|Win32
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {56FFA45E-B5E7-48A9-8E97-AFB2CC275817}
EndGlobalSection
EndGlobal
/trunk/3264_mixer/foundry_3264_mixer.vcxproj
0,0 → 1,155
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup Label="ProjectConfigurations">
<ProjectConfiguration Include="Debug|Win32">
<Configuration>Debug</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|Win32">
<Configuration>Release</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Debug|x64">
<Configuration>Debug</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|x64">
<Configuration>Release</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
</ItemGroup>
<PropertyGroup Label="Globals">
<VCProjectVersion>16.0</VCProjectVersion>
<Keyword>Win32Proj</Keyword>
<ProjectGuid>{5c8de1cc-009b-4567-9cf0-d81874538a93}</ProjectGuid>
<RootNamespace>foundry3264mixer</RootNamespace>
<WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>true</UseDebugLibraries>
<PlatformToolset>v142</PlatformToolset>
<CharacterSet>Unicode</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
<PlatformToolset>v142</PlatformToolset>
<WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>Unicode</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>true</UseDebugLibraries>
<PlatformToolset>v142</PlatformToolset>
<CharacterSet>Unicode</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
<PlatformToolset>v142</PlatformToolset>
<WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>Unicode</CharacterSet>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
<ImportGroup Label="ExtensionSettings">
</ImportGroup>
<ImportGroup Label="Shared">
</ImportGroup>
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<PropertyGroup Label="UserMacros" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<LinkIncremental>true</LinkIncremental>
<OutDir>.\</OutDir>
<IntDir>.\</IntDir>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<LinkIncremental>false</LinkIncremental>
<OutDir>.\</OutDir>
<IntDir>.\</IntDir>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<LinkIncremental>true</LinkIncremental>
<OutDir>.\</OutDir>
<IntDir>.\</IntDir>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<LinkIncremental>false</LinkIncremental>
<OutDir>.\</OutDir>
<IntDir>.\</IntDir>
</PropertyGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<ClCompile>
<WarningLevel>Level3</WarningLevel>
<SDLCheck>true</SDLCheck>
<PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<ConformanceMode>true</ConformanceMode>
</ClCompile>
<Link>
<SubSystem>Console</SubSystem>
<GenerateDebugInformation>true</GenerateDebugInformation>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<ClCompile>
<WarningLevel>Level3</WarningLevel>
<FunctionLevelLinking>true</FunctionLevelLinking>
<IntrinsicFunctions>true</IntrinsicFunctions>
<SDLCheck>true</SDLCheck>
<PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<ConformanceMode>true</ConformanceMode>
</ClCompile>
<Link>
<SubSystem>Console</SubSystem>
<EnableCOMDATFolding>true</EnableCOMDATFolding>
<OptimizeReferences>true</OptimizeReferences>
<GenerateDebugInformation>true</GenerateDebugInformation>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<ClCompile>
<WarningLevel>Level3</WarningLevel>
<SDLCheck>true</SDLCheck>
<PreprocessorDefinitions>_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<ConformanceMode>true</ConformanceMode>
</ClCompile>
<Link>
<SubSystem>Console</SubSystem>
<GenerateDebugInformation>true</GenerateDebugInformation>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<ClCompile>
<WarningLevel>Level3</WarningLevel>
<FunctionLevelLinking>true</FunctionLevelLinking>
<IntrinsicFunctions>true</IntrinsicFunctions>
<SDLCheck>true</SDLCheck>
<PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<ConformanceMode>true</ConformanceMode>
</ClCompile>
<Link>
<SubSystem>Console</SubSystem>
<EnableCOMDATFolding>true</EnableCOMDATFolding>
<OptimizeReferences>true</OptimizeReferences>
<GenerateDebugInformation>true</GenerateDebugInformation>
</Link>
</ItemDefinitionGroup>
<ItemGroup>
<ClCompile Include="foundry_3264_mixer.cpp" />
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
</Project>
/trunk/3264_mixer/foundry_3264_mixer.vcxproj.FileListAbsolute.txt
--- foundry_3264_mixer.vcxproj.filters (nonexistent)
+++ foundry_3264_mixer.vcxproj.filters (revision 308)
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="utf-8"?>
+<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+ <ItemGroup>
+ <Filter Include="Quelldateien">
+ <UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
+ <Extensions>cpp;c;cc;cxx;c++;cppm;ixx;def;odl;idl;hpj;bat;asm;asmx</Extensions>
+ </Filter>
+ <Filter Include="Headerdateien">
+ <UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>
+ <Extensions>h;hh;hpp;hxx;h++;hm;inl;inc;ipp;xsd</Extensions>
+ </Filter>
+ <Filter Include="Ressourcendateien">
+ <UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier>
+ <Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms</Extensions>
+ </Filter>
+ </ItemGroup>
+ <ItemGroup>
+ <ClCompile Include="foundry_3264_mixer.cpp">
+ <Filter>Quelldateien</Filter>
+ </ClCompile>
+ </ItemGroup>
+</Project>
\ No newline at end of file
/trunk/3264_mixer/foundry_3264_mixer.vcxproj.user
0,0 → 1,4
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup />
</Project>
/trunk/3264_mixer/in/.gitkeep