Modifying DDKENV.BAT to Build 16-Bit Multimedia DriversLast reviewed: July 1, 1996Article ID: Q152538 |
The information in this article applies to:
SUMMARYThe Windows 95 Device Driver Kit (DDK) contains a number of sample multimedia device drivers. Many of these drivers contain both a 16-bit DRV component and a 32-bit VXD component. In order to build the 16-bit multimedia driver components, you can run the following three batch files in the order listed. Note the two parameters passed to ddkenv.bat:
:ENVIRON16 REM *** add the location of your 16-bit environment here *** set WIN16=TRUE set include=%ddkroot%\%2\inc;%ddkroot%\inc16;%sdkroot%\inc16; %_include%;%ddkroot%\inc32;%sdkroot%\include set lib=%ddkroot%\lib;%sdkroot%\lib16;%_lib% path=%ddkroot%\%2\bin;%ddkroot%\bin;%sdkroot%\binw16;%sdkroot%\bin; %_path% prompt Windows 95 16-bit %2 build$_%_prompt% goto EGRESSIn order to build the 16-bit sample multimedia drivers, you can modify the "set include=" line above and move %sdkroot%\include ahead of %_include%. Following is the modified "set include=" line:
set include=%ddkroot%\%2\inc;%ddkroot%\inc16;%sdkroot%\inc16; %sdkroot%\include;%_include%;%ddkroot%\inc32; REFERENCESSee the Windows 95 DDK for more information on Windows 95 multimedia drivers.
|
Additional reference words: 4.00
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |