* KernelModeDriver module support

* Build afd.sys


svn path=/branches/xmlbuildsystem/; revision=13078
This commit is contained in:
Casper Hornstrup
2005-01-16 13:51:33 +00:00
parent 41c7d92f46
commit 40a6da67c4
11 changed files with 198 additions and 59 deletions

View File

@@ -214,6 +214,8 @@ Module::GetModuleType ( const string& location, const XMLAttribute& attribute )
return Kernel;
if ( attribute.value == "kernelmodedll" )
return KernelModeDLL;
if ( attribute.value == "kernelmodedriver" )
return KernelModeDriver;
if ( attribute.value == "nativedll" )
return NativeDLL;
if ( attribute.value == "win32dll" )
@@ -241,6 +243,8 @@ Module::GetDefaultModuleExtension () const
case NativeDLL:
case Win32DLL:
return ".dll";
case KernelModeDriver:
return ".sys";
}
throw InvalidOperationException ( __FILE__,
__LINE__ );