MIDL2393

The documentation lists this name without a value.

Documented in Win32

Compiler Errors

multi dimensional vector, switching to /Oicf The /Os optimization mode does not support multidimensional nonfixed size arrays. The compiler has automatically switched the optimization mode to / Oicf for this function. This warning can be suppressed globally by changing the compiler mode by specifying / Oicf on the MIDL command line or by using midl_pragma warning (disable: 2393) in the IDL file. The optimization mode can be changed for an individual function by adding the [ optimize("icf") ] attribute to the function in the ACF file. The following example demonstrates this warning: void roo(long s1, [size_is(s1)] long a[][30]; //MIDL2393 void bar(long s1, long s2, [size_is(s1,s2) long **a);//MIDL2393