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

github.com/mpc-hc/mpc-hc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXhmikosR <xhmikosr@users.sourceforge.net>2012-04-26 14:17:39 +0400
committerXhmikosR <xhmikosr@users.sourceforge.net>2012-04-26 14:17:39 +0400
commit72dbd827089731ad19ee98a986ee5695705160df (patch)
treeab35e7ac729b018bbf870c9eda6ea9fc10fe2420 /include
parentae27956e16fda1ac830973db33eda8de41dfa820 (diff)
disable warning #94 (the size of an array must be greater than zero) when using ICL
git-svn-id: https://mpc-hc.svn.sourceforge.net/svnroot/mpc-hc/trunk@4504 10f7b99b-c216-0410-bff0-8a66a9350fd8
Diffstat (limited to 'include')
-rw-r--r--include/winddk/ntddcdrm.h3
-rw-r--r--include/winddk/ntddcdvd.h3
-rw-r--r--include/winddk/ntddstor.h3
3 files changed, 9 insertions, 0 deletions
diff --git a/include/winddk/ntddcdrm.h b/include/winddk/ntddcdrm.h
index df7ab66e1..909a9d831 100644
--- a/include/winddk/ntddcdrm.h
+++ b/include/winddk/ntddcdrm.h
@@ -38,6 +38,9 @@ extern "C" {
#pragma warning(disable:4200) // array[0]
#pragma warning(disable:4201) // nameless struct/unions
#pragma warning(disable:4214) // bit fields other than int
+#if defined(__INTEL_COMPILER)
+#pragma warning(disable:94) // warning #94: the size of an array must be greater than zero
+#endif
#ifdef __cplusplus
extern "C" {
diff --git a/include/winddk/ntddcdvd.h b/include/winddk/ntddcdvd.h
index 9f9862cb8..b4ded0888 100644
--- a/include/winddk/ntddcdvd.h
+++ b/include/winddk/ntddcdvd.h
@@ -25,6 +25,9 @@ Abstract:
#pragma warning(disable:4200) // zero-sized array
#pragma warning(disable:4201) // nonstandard extension used : nameless struct/union
#pragma warning(disable:4214) // bitfield other than int
+#if defined(__INTEL_COMPILER)
+#pragma warning(disable:94) // warning #94: the size of an array must be greater than zero
+#endif
#if _MSC_VER > 1000
#pragma once
diff --git a/include/winddk/ntddstor.h b/include/winddk/ntddstor.h
index 2f18cb71e..ec1535244 100644
--- a/include/winddk/ntddstor.h
+++ b/include/winddk/ntddstor.h
@@ -1315,6 +1315,9 @@ typedef __struct_bcount(Size) struct _STORAGE_WRITE_CACHE_PROPERTY {
#pragma warning(disable:4200) // array[0]
#pragma warning(disable:4201) // nameless struct/unions
#pragma warning(disable:4214) // bit fields other than int
+#if defined(__INTEL_COMPILER)
+#pragma warning(disable:94) // warning #94: the size of an array must be greater than zero
+#endif
#if defined(_MSC_EXTENSIONS)