mirror of
https://github.com/claunia/flac.git
synced 2025-12-16 18:54:26 +00:00
stdint.h fixes for MSVS 2005/2008
This adds a new msvc2005_int.h header file which is "force included" as needed by the MSVS project file. Patch-from: lvqcl <lvqcl.mail@gmail.com>
This commit is contained in:
@@ -50,6 +50,7 @@
|
|||||||
DebugInformationFormat="4"
|
DebugInformationFormat="4"
|
||||||
CompileAs="0"
|
CompileAs="0"
|
||||||
DisableSpecificWarnings="4267;4996"
|
DisableSpecificWarnings="4267;4996"
|
||||||
|
ForcedIncludeFiles="share/msvc2005_int.h"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedResourceCompilerTool"
|
Name="VCManagedResourceCompilerTool"
|
||||||
@@ -129,6 +130,7 @@
|
|||||||
DebugInformationFormat="3"
|
DebugInformationFormat="3"
|
||||||
CompileAs="0"
|
CompileAs="0"
|
||||||
DisableSpecificWarnings="4267;4996"
|
DisableSpecificWarnings="4267;4996"
|
||||||
|
ForcedIncludeFiles="share/msvc2005_int.h"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedResourceCompilerTool"
|
Name="VCManagedResourceCompilerTool"
|
||||||
|
|||||||
@@ -50,6 +50,7 @@
|
|||||||
DebugInformationFormat="4"
|
DebugInformationFormat="4"
|
||||||
CompileAs="0"
|
CompileAs="0"
|
||||||
DisableSpecificWarnings="4267;4996"
|
DisableSpecificWarnings="4267;4996"
|
||||||
|
ForcedIncludeFiles="share/msvc2005_int.h"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedResourceCompilerTool"
|
Name="VCManagedResourceCompilerTool"
|
||||||
@@ -129,6 +130,7 @@
|
|||||||
DebugInformationFormat="3"
|
DebugInformationFormat="3"
|
||||||
CompileAs="0"
|
CompileAs="0"
|
||||||
DisableSpecificWarnings="4267;4996"
|
DisableSpecificWarnings="4267;4996"
|
||||||
|
ForcedIncludeFiles="share/msvc2005_int.h"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedResourceCompilerTool"
|
Name="VCManagedResourceCompilerTool"
|
||||||
|
|||||||
@@ -50,6 +50,7 @@
|
|||||||
DebugInformationFormat="4"
|
DebugInformationFormat="4"
|
||||||
CompileAs="0"
|
CompileAs="0"
|
||||||
DisableSpecificWarnings="4267;4996"
|
DisableSpecificWarnings="4267;4996"
|
||||||
|
ForcedIncludeFiles="share/msvc2005_int.h"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedResourceCompilerTool"
|
Name="VCManagedResourceCompilerTool"
|
||||||
@@ -129,6 +130,7 @@
|
|||||||
DebugInformationFormat="3"
|
DebugInformationFormat="3"
|
||||||
CompileAs="0"
|
CompileAs="0"
|
||||||
DisableSpecificWarnings="4267;4996"
|
DisableSpecificWarnings="4267;4996"
|
||||||
|
ForcedIncludeFiles="share/msvc2005_int.h"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedResourceCompilerTool"
|
Name="VCManagedResourceCompilerTool"
|
||||||
|
|||||||
@@ -50,6 +50,7 @@
|
|||||||
DebugInformationFormat="4"
|
DebugInformationFormat="4"
|
||||||
CompileAs="0"
|
CompileAs="0"
|
||||||
DisableSpecificWarnings="4267;4996"
|
DisableSpecificWarnings="4267;4996"
|
||||||
|
ForcedIncludeFiles="share/msvc2005_int.h"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedResourceCompilerTool"
|
Name="VCManagedResourceCompilerTool"
|
||||||
@@ -129,6 +130,7 @@
|
|||||||
DebugInformationFormat="3"
|
DebugInformationFormat="3"
|
||||||
CompileAs="0"
|
CompileAs="0"
|
||||||
DisableSpecificWarnings="4267;4996"
|
DisableSpecificWarnings="4267;4996"
|
||||||
|
ForcedIncludeFiles="share/msvc2005_int.h"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedResourceCompilerTool"
|
Name="VCManagedResourceCompilerTool"
|
||||||
|
|||||||
@@ -39,15 +39,14 @@
|
|||||||
* the 1999 ISO C Standard header file <stdint.h>.
|
* the 1999 ISO C Standard header file <stdint.h>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
typedef __int8 FLAC__int8;
|
typedef signed __int8 FLAC__int8;
|
||||||
typedef uint32_t __int8 FLAC__uint8;
|
typedef signed __int16 FLAC__int16;
|
||||||
|
typedef signed __int32 FLAC__int32;
|
||||||
typedef __int16 FLAC__int16;
|
typedef signed __int64 FLAC__int64;
|
||||||
typedef __int32 FLAC__int32;
|
typedef unsigned __int8 FLAC__uint8;
|
||||||
typedef __int64 FLAC__int64;
|
typedef unsigned __int16 FLAC__uint16;
|
||||||
typedef uint32_t __int16 FLAC__uint16;
|
typedef unsigned __int32 FLAC__uint32;
|
||||||
typedef uint32_t __int32 FLAC__uint32;
|
typedef unsigned __int64 FLAC__uint64;
|
||||||
typedef uint32_t __int64 FLAC__uint64;
|
|
||||||
|
|
||||||
#else
|
#else
|
||||||
|
|
||||||
|
|||||||
@@ -9,6 +9,7 @@ EXTRA_DIST = \
|
|||||||
getopt.h \
|
getopt.h \
|
||||||
grabbag.h \
|
grabbag.h \
|
||||||
macros.h \
|
macros.h \
|
||||||
|
msvc2005_int.h \
|
||||||
private.h \
|
private.h \
|
||||||
replaygain_analysis.h \
|
replaygain_analysis.h \
|
||||||
replaygain_synthesis.h \
|
replaygain_synthesis.h \
|
||||||
|
|||||||
@@ -130,14 +130,6 @@
|
|||||||
# ifndef UINT32_MAX
|
# ifndef UINT32_MAX
|
||||||
# define UINT32_MAX _UI32_MAX
|
# define UINT32_MAX _UI32_MAX
|
||||||
# endif
|
# endif
|
||||||
typedef unsigned __int64 uint64_t;
|
|
||||||
typedef unsigned __int32 uint32_t;
|
|
||||||
typedef unsigned __int16 uint16_t;
|
|
||||||
typedef unsigned __int8 uint8_t;
|
|
||||||
typedef __int64 int64_t;
|
|
||||||
typedef __int32 int32_t;
|
|
||||||
typedef __int16 int16_t;
|
|
||||||
typedef __int8 int8_t;
|
|
||||||
# define PRIu64 "I64u"
|
# define PRIu64 "I64u"
|
||||||
# define PRId64 "I64d"
|
# define PRId64 "I64d"
|
||||||
# define PRIx64 "I64x"
|
# define PRIx64 "I64x"
|
||||||
|
|||||||
@@ -50,6 +50,7 @@
|
|||||||
DebugInformationFormat="4"
|
DebugInformationFormat="4"
|
||||||
CompileAs="0"
|
CompileAs="0"
|
||||||
DisableSpecificWarnings="4267;4996"
|
DisableSpecificWarnings="4267;4996"
|
||||||
|
ForcedIncludeFiles="share/msvc2005_int.h"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedResourceCompilerTool"
|
Name="VCManagedResourceCompilerTool"
|
||||||
@@ -129,6 +130,7 @@
|
|||||||
DebugInformationFormat="3"
|
DebugInformationFormat="3"
|
||||||
CompileAs="0"
|
CompileAs="0"
|
||||||
DisableSpecificWarnings="4267;4996"
|
DisableSpecificWarnings="4267;4996"
|
||||||
|
ForcedIncludeFiles="share/msvc2005_int.h"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedResourceCompilerTool"
|
Name="VCManagedResourceCompilerTool"
|
||||||
|
|||||||
@@ -50,6 +50,7 @@
|
|||||||
DebugInformationFormat="4"
|
DebugInformationFormat="4"
|
||||||
CompileAs="0"
|
CompileAs="0"
|
||||||
DisableSpecificWarnings="4267;4996"
|
DisableSpecificWarnings="4267;4996"
|
||||||
|
ForcedIncludeFiles="share/msvc2005_int.h"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedResourceCompilerTool"
|
Name="VCManagedResourceCompilerTool"
|
||||||
@@ -129,6 +130,7 @@
|
|||||||
DebugInformationFormat="3"
|
DebugInformationFormat="3"
|
||||||
CompileAs="0"
|
CompileAs="0"
|
||||||
DisableSpecificWarnings="4267;4996"
|
DisableSpecificWarnings="4267;4996"
|
||||||
|
ForcedIncludeFiles="share/msvc2005_int.h"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedResourceCompilerTool"
|
Name="VCManagedResourceCompilerTool"
|
||||||
|
|||||||
@@ -49,6 +49,7 @@
|
|||||||
Detect64BitPortabilityProblems="true"
|
Detect64BitPortabilityProblems="true"
|
||||||
DebugInformationFormat="4"
|
DebugInformationFormat="4"
|
||||||
DisableSpecificWarnings="4267;4996"
|
DisableSpecificWarnings="4267;4996"
|
||||||
|
ForcedIncludeFiles="share/msvc2005_int.h"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedResourceCompilerTool"
|
Name="VCManagedResourceCompilerTool"
|
||||||
@@ -125,6 +126,7 @@
|
|||||||
Detect64BitPortabilityProblems="true"
|
Detect64BitPortabilityProblems="true"
|
||||||
DebugInformationFormat="3"
|
DebugInformationFormat="3"
|
||||||
DisableSpecificWarnings="4267;4996"
|
DisableSpecificWarnings="4267;4996"
|
||||||
|
ForcedIncludeFiles="share/msvc2005_int.h"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedResourceCompilerTool"
|
Name="VCManagedResourceCompilerTool"
|
||||||
|
|||||||
@@ -49,6 +49,7 @@
|
|||||||
Detect64BitPortabilityProblems="true"
|
Detect64BitPortabilityProblems="true"
|
||||||
DebugInformationFormat="4"
|
DebugInformationFormat="4"
|
||||||
DisableSpecificWarnings="4267;4996"
|
DisableSpecificWarnings="4267;4996"
|
||||||
|
ForcedIncludeFiles="share/msvc2005_int.h"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedResourceCompilerTool"
|
Name="VCManagedResourceCompilerTool"
|
||||||
@@ -115,6 +116,7 @@
|
|||||||
Detect64BitPortabilityProblems="true"
|
Detect64BitPortabilityProblems="true"
|
||||||
DebugInformationFormat="3"
|
DebugInformationFormat="3"
|
||||||
DisableSpecificWarnings="4267;4996"
|
DisableSpecificWarnings="4267;4996"
|
||||||
|
ForcedIncludeFiles="share/msvc2005_int.h"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedResourceCompilerTool"
|
Name="VCManagedResourceCompilerTool"
|
||||||
|
|||||||
@@ -52,6 +52,7 @@
|
|||||||
DebugInformationFormat="4"
|
DebugInformationFormat="4"
|
||||||
CompileAs="0"
|
CompileAs="0"
|
||||||
DisableSpecificWarnings="4267;4996"
|
DisableSpecificWarnings="4267;4996"
|
||||||
|
ForcedIncludeFiles="share/msvc2005_int.h"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedResourceCompilerTool"
|
Name="VCManagedResourceCompilerTool"
|
||||||
@@ -132,6 +133,7 @@
|
|||||||
DebugInformationFormat="3"
|
DebugInformationFormat="3"
|
||||||
CompileAs="0"
|
CompileAs="0"
|
||||||
DisableSpecificWarnings="4267;4996"
|
DisableSpecificWarnings="4267;4996"
|
||||||
|
ForcedIncludeFiles="share/msvc2005_int.h"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedResourceCompilerTool"
|
Name="VCManagedResourceCompilerTool"
|
||||||
|
|||||||
@@ -52,6 +52,7 @@
|
|||||||
DebugInformationFormat="4"
|
DebugInformationFormat="4"
|
||||||
CompileAs="0"
|
CompileAs="0"
|
||||||
DisableSpecificWarnings="4267;4996"
|
DisableSpecificWarnings="4267;4996"
|
||||||
|
ForcedIncludeFiles="share/msvc2005_int.h"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedResourceCompilerTool"
|
Name="VCManagedResourceCompilerTool"
|
||||||
@@ -120,6 +121,7 @@
|
|||||||
DebugInformationFormat="3"
|
DebugInformationFormat="3"
|
||||||
CompileAs="0"
|
CompileAs="0"
|
||||||
DisableSpecificWarnings="4267;4996"
|
DisableSpecificWarnings="4267;4996"
|
||||||
|
ForcedIncludeFiles="share/msvc2005_int.h"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedResourceCompilerTool"
|
Name="VCManagedResourceCompilerTool"
|
||||||
|
|||||||
@@ -50,6 +50,7 @@
|
|||||||
DebugInformationFormat="4"
|
DebugInformationFormat="4"
|
||||||
CompileAs="0"
|
CompileAs="0"
|
||||||
DisableSpecificWarnings="4267;4996"
|
DisableSpecificWarnings="4267;4996"
|
||||||
|
ForcedIncludeFiles="share/msvc2005_int.h"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedResourceCompilerTool"
|
Name="VCManagedResourceCompilerTool"
|
||||||
@@ -129,6 +130,7 @@
|
|||||||
DebugInformationFormat="3"
|
DebugInformationFormat="3"
|
||||||
CompileAs="0"
|
CompileAs="0"
|
||||||
DisableSpecificWarnings="4267;4996"
|
DisableSpecificWarnings="4267;4996"
|
||||||
|
ForcedIncludeFiles="share/msvc2005_int.h"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedResourceCompilerTool"
|
Name="VCManagedResourceCompilerTool"
|
||||||
|
|||||||
@@ -50,6 +50,7 @@
|
|||||||
DebugInformationFormat="4"
|
DebugInformationFormat="4"
|
||||||
CompileAs="0"
|
CompileAs="0"
|
||||||
DisableSpecificWarnings="4267;4996"
|
DisableSpecificWarnings="4267;4996"
|
||||||
|
ForcedIncludeFiles="share/msvc2005_int.h"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedResourceCompilerTool"
|
Name="VCManagedResourceCompilerTool"
|
||||||
@@ -117,6 +118,7 @@
|
|||||||
DebugInformationFormat="3"
|
DebugInformationFormat="3"
|
||||||
CompileAs="0"
|
CompileAs="0"
|
||||||
DisableSpecificWarnings="4267;4996"
|
DisableSpecificWarnings="4267;4996"
|
||||||
|
ForcedIncludeFiles="share/msvc2005_int.h"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedResourceCompilerTool"
|
Name="VCManagedResourceCompilerTool"
|
||||||
|
|||||||
@@ -50,6 +50,7 @@
|
|||||||
DebugInformationFormat="4"
|
DebugInformationFormat="4"
|
||||||
CompileAs="0"
|
CompileAs="0"
|
||||||
DisableSpecificWarnings="4267;4996"
|
DisableSpecificWarnings="4267;4996"
|
||||||
|
ForcedIncludeFiles="share/msvc2005_int.h"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedResourceCompilerTool"
|
Name="VCManagedResourceCompilerTool"
|
||||||
@@ -117,6 +118,7 @@
|
|||||||
DebugInformationFormat="3"
|
DebugInformationFormat="3"
|
||||||
CompileAs="0"
|
CompileAs="0"
|
||||||
DisableSpecificWarnings="4267;4996"
|
DisableSpecificWarnings="4267;4996"
|
||||||
|
ForcedIncludeFiles="share/msvc2005_int.h"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedResourceCompilerTool"
|
Name="VCManagedResourceCompilerTool"
|
||||||
|
|||||||
@@ -50,6 +50,7 @@
|
|||||||
DebugInformationFormat="4"
|
DebugInformationFormat="4"
|
||||||
CompileAs="0"
|
CompileAs="0"
|
||||||
DisableSpecificWarnings="4267;4996"
|
DisableSpecificWarnings="4267;4996"
|
||||||
|
ForcedIncludeFiles="share/msvc2005_int.h"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedResourceCompilerTool"
|
Name="VCManagedResourceCompilerTool"
|
||||||
@@ -117,6 +118,7 @@
|
|||||||
DebugInformationFormat="3"
|
DebugInformationFormat="3"
|
||||||
CompileAs="0"
|
CompileAs="0"
|
||||||
DisableSpecificWarnings="4267;4996"
|
DisableSpecificWarnings="4267;4996"
|
||||||
|
ForcedIncludeFiles="share/msvc2005_int.h"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedResourceCompilerTool"
|
Name="VCManagedResourceCompilerTool"
|
||||||
|
|||||||
@@ -50,6 +50,7 @@
|
|||||||
DebugInformationFormat="4"
|
DebugInformationFormat="4"
|
||||||
CompileAs="0"
|
CompileAs="0"
|
||||||
DisableSpecificWarnings="4267;4996"
|
DisableSpecificWarnings="4267;4996"
|
||||||
|
ForcedIncludeFiles="share/msvc2005_int.h"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedResourceCompilerTool"
|
Name="VCManagedResourceCompilerTool"
|
||||||
@@ -117,6 +118,7 @@
|
|||||||
DebugInformationFormat="3"
|
DebugInformationFormat="3"
|
||||||
CompileAs="0"
|
CompileAs="0"
|
||||||
DisableSpecificWarnings="4267;4996"
|
DisableSpecificWarnings="4267;4996"
|
||||||
|
ForcedIncludeFiles="share/msvc2005_int.h"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedResourceCompilerTool"
|
Name="VCManagedResourceCompilerTool"
|
||||||
|
|||||||
@@ -50,6 +50,7 @@
|
|||||||
DebugInformationFormat="4"
|
DebugInformationFormat="4"
|
||||||
CompileAs="0"
|
CompileAs="0"
|
||||||
DisableSpecificWarnings="4267;4996"
|
DisableSpecificWarnings="4267;4996"
|
||||||
|
ForcedIncludeFiles="share/msvc2005_int.h"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedResourceCompilerTool"
|
Name="VCManagedResourceCompilerTool"
|
||||||
@@ -117,6 +118,7 @@
|
|||||||
DebugInformationFormat="3"
|
DebugInformationFormat="3"
|
||||||
CompileAs="0"
|
CompileAs="0"
|
||||||
DisableSpecificWarnings="4267;4996"
|
DisableSpecificWarnings="4267;4996"
|
||||||
|
ForcedIncludeFiles="share/msvc2005_int.h"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedResourceCompilerTool"
|
Name="VCManagedResourceCompilerTool"
|
||||||
|
|||||||
@@ -50,6 +50,7 @@
|
|||||||
DebugInformationFormat="4"
|
DebugInformationFormat="4"
|
||||||
CompileAs="0"
|
CompileAs="0"
|
||||||
DisableSpecificWarnings="4267;4996"
|
DisableSpecificWarnings="4267;4996"
|
||||||
|
ForcedIncludeFiles="share/msvc2005_int.h"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedResourceCompilerTool"
|
Name="VCManagedResourceCompilerTool"
|
||||||
@@ -117,6 +118,7 @@
|
|||||||
DebugInformationFormat="3"
|
DebugInformationFormat="3"
|
||||||
CompileAs="0"
|
CompileAs="0"
|
||||||
DisableSpecificWarnings="4267;4996"
|
DisableSpecificWarnings="4267;4996"
|
||||||
|
ForcedIncludeFiles="share/msvc2005_int.h"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedResourceCompilerTool"
|
Name="VCManagedResourceCompilerTool"
|
||||||
|
|||||||
@@ -50,6 +50,7 @@
|
|||||||
DebugInformationFormat="4"
|
DebugInformationFormat="4"
|
||||||
CompileAs="0"
|
CompileAs="0"
|
||||||
DisableSpecificWarnings="4267;4996"
|
DisableSpecificWarnings="4267;4996"
|
||||||
|
ForcedIncludeFiles="share/msvc2005_int.h"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedResourceCompilerTool"
|
Name="VCManagedResourceCompilerTool"
|
||||||
@@ -128,6 +129,7 @@
|
|||||||
DebugInformationFormat="3"
|
DebugInformationFormat="3"
|
||||||
CompileAs="0"
|
CompileAs="0"
|
||||||
DisableSpecificWarnings="4267;4996"
|
DisableSpecificWarnings="4267;4996"
|
||||||
|
ForcedIncludeFiles="share/msvc2005_int.h"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedResourceCompilerTool"
|
Name="VCManagedResourceCompilerTool"
|
||||||
|
|||||||
@@ -50,6 +50,7 @@
|
|||||||
DebugInformationFormat="4"
|
DebugInformationFormat="4"
|
||||||
CompileAs="0"
|
CompileAs="0"
|
||||||
DisableSpecificWarnings="4267;4996"
|
DisableSpecificWarnings="4267;4996"
|
||||||
|
ForcedIncludeFiles="share/msvc2005_int.h"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedResourceCompilerTool"
|
Name="VCManagedResourceCompilerTool"
|
||||||
@@ -128,6 +129,7 @@
|
|||||||
DebugInformationFormat="3"
|
DebugInformationFormat="3"
|
||||||
CompileAs="0"
|
CompileAs="0"
|
||||||
DisableSpecificWarnings="4267;4996"
|
DisableSpecificWarnings="4267;4996"
|
||||||
|
ForcedIncludeFiles="share/msvc2005_int.h"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedResourceCompilerTool"
|
Name="VCManagedResourceCompilerTool"
|
||||||
|
|||||||
@@ -49,6 +49,7 @@
|
|||||||
Detect64BitPortabilityProblems="true"
|
Detect64BitPortabilityProblems="true"
|
||||||
DebugInformationFormat="4"
|
DebugInformationFormat="4"
|
||||||
DisableSpecificWarnings="4267;4996"
|
DisableSpecificWarnings="4267;4996"
|
||||||
|
ForcedIncludeFiles="share/msvc2005_int.h"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedResourceCompilerTool"
|
Name="VCManagedResourceCompilerTool"
|
||||||
@@ -127,6 +128,7 @@
|
|||||||
Detect64BitPortabilityProblems="true"
|
Detect64BitPortabilityProblems="true"
|
||||||
DebugInformationFormat="3"
|
DebugInformationFormat="3"
|
||||||
DisableSpecificWarnings="4267;4996"
|
DisableSpecificWarnings="4267;4996"
|
||||||
|
ForcedIncludeFiles="share/msvc2005_int.h"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedResourceCompilerTool"
|
Name="VCManagedResourceCompilerTool"
|
||||||
|
|||||||
@@ -50,6 +50,7 @@
|
|||||||
DebugInformationFormat="4"
|
DebugInformationFormat="4"
|
||||||
CompileAs="0"
|
CompileAs="0"
|
||||||
DisableSpecificWarnings="4267;4996"
|
DisableSpecificWarnings="4267;4996"
|
||||||
|
ForcedIncludeFiles="share/msvc2005_int.h"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedResourceCompilerTool"
|
Name="VCManagedResourceCompilerTool"
|
||||||
@@ -129,6 +130,7 @@
|
|||||||
DebugInformationFormat="3"
|
DebugInformationFormat="3"
|
||||||
CompileAs="0"
|
CompileAs="0"
|
||||||
DisableSpecificWarnings="4267;4996"
|
DisableSpecificWarnings="4267;4996"
|
||||||
|
ForcedIncludeFiles="share/msvc2005_int.h"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedResourceCompilerTool"
|
Name="VCManagedResourceCompilerTool"
|
||||||
|
|||||||
@@ -50,6 +50,7 @@
|
|||||||
DebugInformationFormat="4"
|
DebugInformationFormat="4"
|
||||||
CompileAs="0"
|
CompileAs="0"
|
||||||
DisableSpecificWarnings="4267;4996"
|
DisableSpecificWarnings="4267;4996"
|
||||||
|
ForcedIncludeFiles="share/msvc2005_int.h"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedResourceCompilerTool"
|
Name="VCManagedResourceCompilerTool"
|
||||||
@@ -117,6 +118,7 @@
|
|||||||
DebugInformationFormat="3"
|
DebugInformationFormat="3"
|
||||||
CompileAs="0"
|
CompileAs="0"
|
||||||
DisableSpecificWarnings="4267;4996"
|
DisableSpecificWarnings="4267;4996"
|
||||||
|
ForcedIncludeFiles="share/msvc2005_int.h"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedResourceCompilerTool"
|
Name="VCManagedResourceCompilerTool"
|
||||||
|
|||||||
@@ -50,6 +50,7 @@
|
|||||||
DebugInformationFormat="4"
|
DebugInformationFormat="4"
|
||||||
CompileAs="0"
|
CompileAs="0"
|
||||||
DisableSpecificWarnings="4267;4996"
|
DisableSpecificWarnings="4267;4996"
|
||||||
|
ForcedIncludeFiles="share/msvc2005_int.h"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedResourceCompilerTool"
|
Name="VCManagedResourceCompilerTool"
|
||||||
@@ -129,6 +130,7 @@
|
|||||||
DebugInformationFormat="3"
|
DebugInformationFormat="3"
|
||||||
CompileAs="0"
|
CompileAs="0"
|
||||||
DisableSpecificWarnings="4267;4996"
|
DisableSpecificWarnings="4267;4996"
|
||||||
|
ForcedIncludeFiles="share/msvc2005_int.h"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedResourceCompilerTool"
|
Name="VCManagedResourceCompilerTool"
|
||||||
|
|||||||
@@ -50,6 +50,7 @@
|
|||||||
DebugInformationFormat="4"
|
DebugInformationFormat="4"
|
||||||
CompileAs="0"
|
CompileAs="0"
|
||||||
DisableSpecificWarnings="4267;4996"
|
DisableSpecificWarnings="4267;4996"
|
||||||
|
ForcedIncludeFiles="share/msvc2005_int.h"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedResourceCompilerTool"
|
Name="VCManagedResourceCompilerTool"
|
||||||
@@ -128,6 +129,7 @@
|
|||||||
DebugInformationFormat="3"
|
DebugInformationFormat="3"
|
||||||
CompileAs="0"
|
CompileAs="0"
|
||||||
DisableSpecificWarnings="4267;4996"
|
DisableSpecificWarnings="4267;4996"
|
||||||
|
ForcedIncludeFiles="share/msvc2005_int.h"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedResourceCompilerTool"
|
Name="VCManagedResourceCompilerTool"
|
||||||
|
|||||||
@@ -49,6 +49,7 @@
|
|||||||
Detect64BitPortabilityProblems="true"
|
Detect64BitPortabilityProblems="true"
|
||||||
DebugInformationFormat="4"
|
DebugInformationFormat="4"
|
||||||
DisableSpecificWarnings="4267;4996"
|
DisableSpecificWarnings="4267;4996"
|
||||||
|
ForcedIncludeFiles="share/msvc2005_int.h"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedResourceCompilerTool"
|
Name="VCManagedResourceCompilerTool"
|
||||||
@@ -127,6 +128,7 @@
|
|||||||
Detect64BitPortabilityProblems="true"
|
Detect64BitPortabilityProblems="true"
|
||||||
DebugInformationFormat="3"
|
DebugInformationFormat="3"
|
||||||
DisableSpecificWarnings="4267;4996"
|
DisableSpecificWarnings="4267;4996"
|
||||||
|
ForcedIncludeFiles="share/msvc2005_int.h"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedResourceCompilerTool"
|
Name="VCManagedResourceCompilerTool"
|
||||||
|
|||||||
@@ -49,6 +49,7 @@
|
|||||||
Detect64BitPortabilityProblems="true"
|
Detect64BitPortabilityProblems="true"
|
||||||
DebugInformationFormat="4"
|
DebugInformationFormat="4"
|
||||||
DisableSpecificWarnings="4267;4996"
|
DisableSpecificWarnings="4267;4996"
|
||||||
|
ForcedIncludeFiles="share/msvc2005_int.h"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedResourceCompilerTool"
|
Name="VCManagedResourceCompilerTool"
|
||||||
@@ -126,6 +127,7 @@
|
|||||||
Detect64BitPortabilityProblems="true"
|
Detect64BitPortabilityProblems="true"
|
||||||
DebugInformationFormat="3"
|
DebugInformationFormat="3"
|
||||||
DisableSpecificWarnings="4267;4996"
|
DisableSpecificWarnings="4267;4996"
|
||||||
|
ForcedIncludeFiles="share/msvc2005_int.h"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedResourceCompilerTool"
|
Name="VCManagedResourceCompilerTool"
|
||||||
|
|||||||
Reference in New Issue
Block a user