Patch level :
Files correlati : Ricompilazione Demo : [ ] Commento : git-svn-id: svn://10.65.10.50/trunk@16991 c028cbd2-c16b-5b4b-a496-9718f37d4682
This commit is contained in:
parent
59026aacfd
commit
974be34ba9
@ -1,3 +1,3 @@
|
|||||||
166
|
166
|
||||||
0
|
0
|
||||||
$lvconsplan|||88|0|Planning consegne|||
|
$lvconsplan|||56|0|Planning consegne|||
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
166
|
166
|
||||||
12
|
10
|
||||||
IDPLAN|1|10|0|Codice identificativo di un planning
|
IDPLAN|1|10|0|Codice identificativo di un planning
|
||||||
DTCONS|5|8|0|Data di consegna
|
DTCONS|5|8|0|Data di consegna
|
||||||
GIOCONS|2|1|0|Giorno di consegna
|
GIOCONS|2|1|0|Giorno di consegna
|
||||||
@ -8,9 +8,7 @@ CODMEZ|1|2|0|Codice identificativo del mezzo di trasporto
|
|||||||
CODITI|2|3|0|Codice identificativo dell'itinerario
|
CODITI|2|3|0|Codice identificativo dell'itinerario
|
||||||
DTCREAZ|5|8|0|Data di creazione del planning
|
DTCREAZ|5|8|0|Data di creazione del planning
|
||||||
ORCREAZ|10|6|0|Ora di creazione del planning
|
ORCREAZ|10|6|0|Ora di creazione del planning
|
||||||
UTCREAZ|1|16|0|Utente di Campo che ha generato il planning
|
|
||||||
DTULAGG|5|8|0|Data dell'ultimo aggiornamento del planning
|
DTULAGG|5|8|0|Data dell'ultimo aggiornamento del planning
|
||||||
ORULAGG|10|6|0|Ora dell'ultimo aggionamento del planning
|
ORULAGG|10|6|0|Ora dell'ultimo aggionamento del planning
|
||||||
UCREAZ|1|16|0|Utente di Campo che ha aggiornato per ultimo il planning
|
|
||||||
1
|
1
|
||||||
IDPLAN|
|
IDPLAN|
|
||||||
|
@ -10,7 +10,6 @@ int main(int argc, char** argv)
|
|||||||
case 3: break; //gestione contratti lv0400
|
case 3: break; //gestione contratti lv0400
|
||||||
case 4: lv0500(argc, argv); break; // passaggi planning per contratto lv0500
|
case 4: lv0500(argc, argv); break; // passaggi planning per contratto lv0500
|
||||||
//case 5: lv0600(argc, argv); break; // periodi di sospensione lv0600
|
//case 5: lv0600(argc, argv); break; // periodi di sospensione lv0600
|
||||||
case 6: lv0700(argc, argv); break; // planning consegne lv0700
|
|
||||||
default: lv0100(argc, argv); break; // gestione tabelle lv0100
|
default: lv0100(argc, argv); break; // gestione tabelle lv0100
|
||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
|
1
lv/lv0.h
1
lv/lv0.h
@ -5,6 +5,5 @@ int lv0100(int argc, char* argv[]);
|
|||||||
int lv0400(int argc, char* argv[]);
|
int lv0400(int argc, char* argv[]);
|
||||||
int lv0500(int argc, char* argv[]);
|
int lv0500(int argc, char* argv[]);
|
||||||
int lv0600(int argc, char* argv[]);
|
int lv0600(int argc, char* argv[]);
|
||||||
int lv0700(int argc, char* argv[]);
|
|
||||||
|
|
||||||
#endif // __LV0_H
|
#endif // __LV0_H
|
||||||
|
13
lv/lv2.cpp
Executable file
13
lv/lv2.cpp
Executable file
@ -0,0 +1,13 @@
|
|||||||
|
#include <xvt.h>
|
||||||
|
|
||||||
|
#include "lv2.h"
|
||||||
|
|
||||||
|
int main(int argc, char** argv)
|
||||||
|
{
|
||||||
|
const int r = (argc > 1) ? argv[1][1] - '0' : 0;
|
||||||
|
switch (r)
|
||||||
|
{
|
||||||
|
default: lv2100(argc, argv); break; //generazione automatica del planning
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
6
lv/lv2.h
Executable file
6
lv/lv2.h
Executable file
@ -0,0 +1,6 @@
|
|||||||
|
#ifndef __LV2_H
|
||||||
|
#define __LV2_H
|
||||||
|
|
||||||
|
int lv2100(int argc, char* argv[]);
|
||||||
|
|
||||||
|
#endif // __LV2_H
|
@ -3,6 +3,8 @@ Microsoft Visual Studio Solution File, Format Version 10.00
|
|||||||
# Visual Studio 2008
|
# Visual Studio 2008
|
||||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "lv0", "lv0.vcproj", "{2DB7F8EF-BABB-4A27-BC7D-8821B0D285C6}"
|
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "lv0", "lv0.vcproj", "{2DB7F8EF-BABB-4A27-BC7D-8821B0D285C6}"
|
||||||
EndProject
|
EndProject
|
||||||
|
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "lv2", "lv2.vcproj", "{8F2CFD2E-BDE5-44CC-B27D-BCEC31F5E55D}"
|
||||||
|
EndProject
|
||||||
Global
|
Global
|
||||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
Debug|Win32 = Debug|Win32
|
Debug|Win32 = Debug|Win32
|
||||||
@ -13,6 +15,10 @@ Global
|
|||||||
{2DB7F8EF-BABB-4A27-BC7D-8821B0D285C6}.Debug|Win32.Build.0 = Debug|Win32
|
{2DB7F8EF-BABB-4A27-BC7D-8821B0D285C6}.Debug|Win32.Build.0 = Debug|Win32
|
||||||
{2DB7F8EF-BABB-4A27-BC7D-8821B0D285C6}.Release|Win32.ActiveCfg = Release|Win32
|
{2DB7F8EF-BABB-4A27-BC7D-8821B0D285C6}.Release|Win32.ActiveCfg = Release|Win32
|
||||||
{2DB7F8EF-BABB-4A27-BC7D-8821B0D285C6}.Release|Win32.Build.0 = Release|Win32
|
{2DB7F8EF-BABB-4A27-BC7D-8821B0D285C6}.Release|Win32.Build.0 = Release|Win32
|
||||||
|
{8F2CFD2E-BDE5-44CC-B27D-BCEC31F5E55D}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||||
|
{8F2CFD2E-BDE5-44CC-B27D-BCEC31F5E55D}.Debug|Win32.Build.0 = Debug|Win32
|
||||||
|
{8F2CFD2E-BDE5-44CC-B27D-BCEC31F5E55D}.Release|Win32.ActiveCfg = Release|Win32
|
||||||
|
{8F2CFD2E-BDE5-44CC-B27D-BCEC31F5E55D}.Release|Win32.Build.0 = Release|Win32
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
GlobalSection(SolutionProperties) = preSolution
|
GlobalSection(SolutionProperties) = preSolution
|
||||||
HideSolutionNode = FALSE
|
HideSolutionNode = FALSE
|
||||||
|
@ -225,10 +225,6 @@
|
|||||||
RelativePath="..\lv\lv0500.cpp"
|
RelativePath="..\lv\lv0500.cpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
|
||||||
RelativePath="..\lv\lv0700.cpp"
|
|
||||||
>
|
|
||||||
</File>
|
|
||||||
</Filter>
|
</Filter>
|
||||||
<Filter
|
<Filter
|
||||||
Name="Masks"
|
Name="Masks"
|
||||||
@ -439,10 +435,6 @@
|
|||||||
RelativePath="..\lv\lv0500a.h"
|
RelativePath="..\lv\lv0500a.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
|
||||||
RelativePath="..\lv\lv0700a.h"
|
|
||||||
>
|
|
||||||
</File>
|
|
||||||
<File
|
<File
|
||||||
RelativePath="..\lv\lvstiti.h"
|
RelativePath="..\lv\lvstiti.h"
|
||||||
>
|
>
|
||||||
@ -553,7 +545,7 @@
|
|||||||
<Tool
|
<Tool
|
||||||
Name="VCCustomBuildTool"
|
Name="VCCustomBuildTool"
|
||||||
Description="Copying trr $(InputName)..."
|
Description="Copying trr $(InputName)..."
|
||||||
CommandLine="copy $(InputPath) $(TargetDir)\recdesc\$(InputName).trr"
|
CommandLine="copy $(InputPath) $(TargetDir)\recdesc\$(InputName).trr
"
|
||||||
Outputs="$(TargetDir)\recdesc\$(InputName).trr"
|
Outputs="$(TargetDir)\recdesc\$(InputName).trr"
|
||||||
/>
|
/>
|
||||||
</FileConfiguration>
|
</FileConfiguration>
|
||||||
@ -563,7 +555,7 @@
|
|||||||
<Tool
|
<Tool
|
||||||
Name="VCCustomBuildTool"
|
Name="VCCustomBuildTool"
|
||||||
Description="Copying trr $(InputName)..."
|
Description="Copying trr $(InputName)..."
|
||||||
CommandLine="copy $(InputPath) $(TargetDir)\recdesc\$(InputName).trr"
|
CommandLine="copy $(InputPath) $(TargetDir)\recdesc\$(InputName).trr
"
|
||||||
Outputs="$(TargetDir)\recdesc\$(InputName).trr"
|
Outputs="$(TargetDir)\recdesc\$(InputName).trr"
|
||||||
/>
|
/>
|
||||||
</FileConfiguration>
|
</FileConfiguration>
|
||||||
@ -654,7 +646,7 @@
|
|||||||
<Tool
|
<Tool
|
||||||
Name="VCCustomBuildTool"
|
Name="VCCustomBuildTool"
|
||||||
Description="Copying dir $(InputName)..."
|
Description="Copying dir $(InputName)..."
|
||||||
CommandLine="copy $(InputPath) $(TargetDir)\recdesc\$(InputName).dir"
|
CommandLine="copy $(InputPath) $(TargetDir)\recdesc\$(InputName).dir
"
|
||||||
Outputs="$(TargetDir)\recdesc\$(InputName).dir"
|
Outputs="$(TargetDir)\recdesc\$(InputName).dir"
|
||||||
/>
|
/>
|
||||||
</FileConfiguration>
|
</FileConfiguration>
|
||||||
@ -664,7 +656,7 @@
|
|||||||
<Tool
|
<Tool
|
||||||
Name="VCCustomBuildTool"
|
Name="VCCustomBuildTool"
|
||||||
Description="Copying dir $(InputName)..."
|
Description="Copying dir $(InputName)..."
|
||||||
CommandLine="copy $(InputPath) $(TargetDir)\recdesc\$(InputName).dir"
|
CommandLine="copy $(InputPath) $(TargetDir)\recdesc\$(InputName).dir
"
|
||||||
Outputs="$(TargetDir)\recdesc\$(InputName).dir"
|
Outputs="$(TargetDir)\recdesc\$(InputName).dir"
|
||||||
/>
|
/>
|
||||||
</FileConfiguration>
|
</FileConfiguration>
|
||||||
|
4
projects/lv2.rc
Executable file
4
projects/lv2.rc
Executable file
@ -0,0 +1,4 @@
|
|||||||
|
"9012" ICON DISCARDABLE "../res/exe.ico"
|
||||||
|
|
||||||
|
rcinclude ../../wx287/include/wx/msw/wx.rc
|
||||||
|
|
323
projects/lv2.vcproj
Executable file
323
projects/lv2.vcproj
Executable file
@ -0,0 +1,323 @@
|
|||||||
|
<?xml version="1.0" encoding="Windows-1252"?>
|
||||||
|
<VisualStudioProject
|
||||||
|
ProjectType="Visual C++"
|
||||||
|
Version="9,00"
|
||||||
|
Name="lv2"
|
||||||
|
ProjectGUID="{8F2CFD2E-BDE5-44CC-B27D-BCEC31F5E55D}"
|
||||||
|
TargetFrameworkVersion="0"
|
||||||
|
>
|
||||||
|
<Platforms>
|
||||||
|
<Platform
|
||||||
|
Name="Win32"
|
||||||
|
/>
|
||||||
|
</Platforms>
|
||||||
|
<ToolFiles>
|
||||||
|
</ToolFiles>
|
||||||
|
<Configurations>
|
||||||
|
<Configuration
|
||||||
|
Name="Release|Win32"
|
||||||
|
OutputDirectory=".\..\release"
|
||||||
|
IntermediateDirectory=".\..\release"
|
||||||
|
ConfigurationType="1"
|
||||||
|
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops"
|
||||||
|
UseOfMFC="0"
|
||||||
|
ATLMinimizesCRunTimeLibraryUsage="false"
|
||||||
|
>
|
||||||
|
<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/lv2.tlb"
|
||||||
|
HeaderFileName=""
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCCLCompilerTool"
|
||||||
|
Optimization="2"
|
||||||
|
InlineFunctionExpansion="1"
|
||||||
|
AdditionalIncludeDirectories="..\include,..\xvaga,..\xi"
|
||||||
|
PreprocessorDefinitions="NDEBUG;WIN32;_WINDOWS;XVT"
|
||||||
|
StringPooling="true"
|
||||||
|
RuntimeLibrary="0"
|
||||||
|
EnableFunctionLevelLinking="true"
|
||||||
|
PrecompiledHeaderFile=".\..\release/lv2.pch"
|
||||||
|
AssemblerListingLocation=".\..\release/"
|
||||||
|
ObjectFile=".\..\release/"
|
||||||
|
ProgramDataBaseFileName=".\..\release/"
|
||||||
|
WarningLevel="3"
|
||||||
|
SuppressStartupBanner="true"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCManagedResourceCompilerTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCResourceCompilerTool"
|
||||||
|
PreprocessorDefinitions="NDEBUG"
|
||||||
|
Culture="1040"
|
||||||
|
AdditionalIncludeDirectories="..\..\wx287\include"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCPreLinkEventTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCLinkerTool"
|
||||||
|
AdditionalDependencies="version.lib wsock32.lib comctl32.lib rpcrt4.lib"
|
||||||
|
OutputFile="D:\release\Campo100/lv2.exe"
|
||||||
|
LinkIncremental="1"
|
||||||
|
SuppressStartupBanner="true"
|
||||||
|
IgnoreDefaultLibraryNames="libc.lib"
|
||||||
|
ProgramDatabaseFile=".\..\release/lv2.pdb"
|
||||||
|
SubSystem="2"
|
||||||
|
RandomizedBaseAddress="1"
|
||||||
|
DataExecutionPrevention="0"
|
||||||
|
TargetMachine="1"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCALinkTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCManifestTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCXDCMakeTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCBscMakeTool"
|
||||||
|
SuppressStartupBanner="true"
|
||||||
|
OutputFile=".\..\release/lv2.bsc"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCFxCopTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCAppVerifierTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCPostBuildEventTool"
|
||||||
|
/>
|
||||||
|
</Configuration>
|
||||||
|
<Configuration
|
||||||
|
Name="Debug|Win32"
|
||||||
|
OutputDirectory=".\..\debug"
|
||||||
|
IntermediateDirectory=".\..\debug"
|
||||||
|
ConfigurationType="1"
|
||||||
|
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops"
|
||||||
|
UseOfMFC="0"
|
||||||
|
ATLMinimizesCRunTimeLibraryUsage="false"
|
||||||
|
>
|
||||||
|
<Tool
|
||||||
|
Name="VCPreBuildEventTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCCustomBuildTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCXMLDataGeneratorTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCWebServiceProxyGeneratorTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCMIDLTool"
|
||||||
|
PreprocessorDefinitions="_DEBUG"
|
||||||
|
MkTypLibCompatible="true"
|
||||||
|
SuppressStartupBanner="true"
|
||||||
|
TargetEnvironment="1"
|
||||||
|
TypeLibraryName=".\..\debug/lv2.tlb"
|
||||||
|
HeaderFileName=""
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCCLCompilerTool"
|
||||||
|
Optimization="0"
|
||||||
|
AdditionalIncludeDirectories="..\include,..\xvaga,..\xi"
|
||||||
|
PreprocessorDefinitions="_DEBUG;WIN32;DBG;_WINDOWS"
|
||||||
|
MinimalRebuild="true"
|
||||||
|
RuntimeLibrary="1"
|
||||||
|
PrecompiledHeaderFile=".\..\debug/lv2.pch"
|
||||||
|
AssemblerListingLocation=".\..\debug/"
|
||||||
|
ObjectFile=".\..\debug/"
|
||||||
|
ProgramDataBaseFileName=".\..\debug/"
|
||||||
|
BrowseInformation="1"
|
||||||
|
WarningLevel="3"
|
||||||
|
SuppressStartupBanner="true"
|
||||||
|
DebugInformationFormat="3"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCManagedResourceCompilerTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCResourceCompilerTool"
|
||||||
|
PreprocessorDefinitions="_DEBUG"
|
||||||
|
Culture="1040"
|
||||||
|
AdditionalIncludeDirectories="..\..\wx287\include"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCPreLinkEventTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCLinkerTool"
|
||||||
|
AdditionalDependencies="version.lib wsock32.lib comctl32.lib rpcrt4.lib"
|
||||||
|
OutputFile="..\exed\lv2.exe"
|
||||||
|
LinkIncremental="2"
|
||||||
|
SuppressStartupBanner="true"
|
||||||
|
IgnoreDefaultLibraryNames="libc.lib"
|
||||||
|
GenerateDebugInformation="true"
|
||||||
|
ProgramDatabaseFile=".\..\debug/lv2.pdb"
|
||||||
|
SubSystem="2"
|
||||||
|
RandomizedBaseAddress="1"
|
||||||
|
DataExecutionPrevention="0"
|
||||||
|
TargetMachine="1"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCALinkTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCManifestTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCXDCMakeTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCBscMakeTool"
|
||||||
|
SuppressStartupBanner="true"
|
||||||
|
OutputFile=".\..\debug/lv2.bsc"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCFxCopTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCAppVerifierTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCPostBuildEventTool"
|
||||||
|
/>
|
||||||
|
</Configuration>
|
||||||
|
</Configurations>
|
||||||
|
<References>
|
||||||
|
</References>
|
||||||
|
<Files>
|
||||||
|
<Filter
|
||||||
|
Name="Sources"
|
||||||
|
Filter="cpp"
|
||||||
|
>
|
||||||
|
<File
|
||||||
|
RelativePath="..\lv\lv2.cpp"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\lv\lv2100.cpp"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
</Filter>
|
||||||
|
<Filter
|
||||||
|
Name="Masks"
|
||||||
|
Filter="uml"
|
||||||
|
>
|
||||||
|
<File
|
||||||
|
RelativePath="..\lv\lv2100a.uml"
|
||||||
|
>
|
||||||
|
<FileConfiguration
|
||||||
|
Name="Release|Win32"
|
||||||
|
>
|
||||||
|
<Tool
|
||||||
|
Name="VCCustomBuildTool"
|
||||||
|
Description="Compiling mask $(InputPath)..."
|
||||||
|
CommandLine="msk32 $(InputPath) $(TargetDir)$(InputName).msk"
|
||||||
|
Outputs="$(TargetDir)$(InputName).msk"
|
||||||
|
/>
|
||||||
|
</FileConfiguration>
|
||||||
|
<FileConfiguration
|
||||||
|
Name="Debug|Win32"
|
||||||
|
>
|
||||||
|
<Tool
|
||||||
|
Name="VCCustomBuildTool"
|
||||||
|
Description="Compiling mask $(InputPath)..."
|
||||||
|
CommandLine="msk32 $(InputPath) $(TargetDir)$(InputName).msk"
|
||||||
|
Outputs="$(TargetDir)$(InputName).msk"
|
||||||
|
/>
|
||||||
|
</FileConfiguration>
|
||||||
|
</File>
|
||||||
|
</Filter>
|
||||||
|
<Filter
|
||||||
|
Name="Headers"
|
||||||
|
Filter="h"
|
||||||
|
>
|
||||||
|
<File
|
||||||
|
RelativePath="..\lv\lv2.h"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
</Filter>
|
||||||
|
<Filter
|
||||||
|
Name="Ini"
|
||||||
|
Filter="ini"
|
||||||
|
>
|
||||||
|
</Filter>
|
||||||
|
<Filter
|
||||||
|
Name="Rep"
|
||||||
|
Filter="rep"
|
||||||
|
>
|
||||||
|
</Filter>
|
||||||
|
<File
|
||||||
|
RelativePath="..\lib\AgaLibD.lib"
|
||||||
|
>
|
||||||
|
<FileConfiguration
|
||||||
|
Name="Release|Win32"
|
||||||
|
ExcludedFromBuild="true"
|
||||||
|
>
|
||||||
|
<Tool
|
||||||
|
Name="VCCustomBuildTool"
|
||||||
|
/>
|
||||||
|
</FileConfiguration>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="lv2.rc"
|
||||||
|
>
|
||||||
|
<FileConfiguration
|
||||||
|
Name="Release|Win32"
|
||||||
|
>
|
||||||
|
<Tool
|
||||||
|
Name="VCResourceCompilerTool"
|
||||||
|
PreprocessorDefinitions=""
|
||||||
|
AdditionalIncludeDirectories=""
|
||||||
|
/>
|
||||||
|
</FileConfiguration>
|
||||||
|
<FileConfiguration
|
||||||
|
Name="Debug|Win32"
|
||||||
|
>
|
||||||
|
<Tool
|
||||||
|
Name="VCResourceCompilerTool"
|
||||||
|
PreprocessorDefinitions=""
|
||||||
|
AdditionalIncludeDirectories=""
|
||||||
|
ResourceOutputFileName="..\Debug/lv2.res"
|
||||||
|
/>
|
||||||
|
</FileConfiguration>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\lib\vedocd.lib"
|
||||||
|
>
|
||||||
|
<FileConfiguration
|
||||||
|
Name="Release|Win32"
|
||||||
|
ExcludedFromBuild="true"
|
||||||
|
>
|
||||||
|
<Tool
|
||||||
|
Name="VCCustomBuildTool"
|
||||||
|
/>
|
||||||
|
</FileConfiguration>
|
||||||
|
</File>
|
||||||
|
</Files>
|
||||||
|
<Globals>
|
||||||
|
</Globals>
|
||||||
|
</VisualStudioProject>
|
Loading…
x
Reference in New Issue
Block a user