The information in this article applies to:
SYMPTOMS
Microsoft Visual C++ 6.0 Standard Edition and Microsoft Visual C++ 5.0 Learning Editions are not supported for building kernel mode drivers with Windows 2000 DDK. The build environment will display the following warning message as soon it's opened.
CAUSE
There versions of the compiler do not support the /Oi option (Generate Intrinsic Functions). As a result, most of the C functions used in the driver will not get resolved. The /Oi option replaces some function calls with fixed or otherwise special forms of the function that help your driver run faster. Code optimization is supported only in Visual C++ Professional and Enterprise Editions.
RESOLUTIONThere is no resolution for this problem. Driver developers must use either Professional or Enterprise Editions of Visual C++ 6.0 to build drivers for Windows 2000. REFERENCESVisual C++ Programmer's Guide in Microsoft Developer's Network (MSDN) Additional query words: /Oi
Keywords : kbDDK kbWinOS2000 kbVC500 kbVC600 kbDSupport kbGrpNTDDK |
Last Reviewed: January 17, 2000 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |