reactos/sdk/lib/drivers/wdf/shared/support/km/fxresourcecollectionkm.cpp
Victor Perevertkin 1f377076d7
[WDF] Fix KMDF so it can compile with ReactOS SDK
Not all files are included, but these are necessary to compile cdrom driver.
So far it can only be statically linked with drivers, a proper
implementation requires wdfldr helper driver
2020-11-03 00:06:27 +03:00

39 lines
453 B
C++

/*++
Copyright (c) Microsoft Corporation
Module Name:
FxResourceCollection.cpp
Abstract:
This module implements a base object for derived collection classes and
the derived collection classes.
Author:
Environment:
Kernel mode only
Revision History:
--*/
#include "fxsupportpch.hpp"
#if defined(EVENT_TRACING)
// Tracing support
extern "C" {
#include "FxResourceCollectionKm.tmh"
}
#endif
FxCmResList::~FxCmResList()
{
}