Handle modules.

svn path=/branches/xmlbuildsystem/; revision=12836
This commit is contained in:
Casper Hornstrup 2005-01-05 19:47:10 +00:00
parent b9bffbca54
commit 222bde955c
10 changed files with 120 additions and 16 deletions

View file

@ -0,0 +1,24 @@
#include "../../pch.h"
#include "../../rbuild.h"
#include "mingw.h"
#include "modulehandler.h"
MingwModuleHandler::MingwModuleHandler ()
{
}
MingwKernelModuleHandler::MingwKernelModuleHandler ()
{
}
bool MingwKernelModuleHandler::CanHandleModule ( Module& module )
{
return true;
}
void MingwKernelModuleHandler::Process ( Module& module )
{
}